@knighted/css 1.0.10 → 1.1.0-rc.1

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.
@@ -16,6 +16,10 @@ interface TsconfigResolutionContext {
16
16
  absoluteBaseUrl?: string;
17
17
  matchPath?: MatchPath;
18
18
  }
19
+ interface SelectorModuleProxyInfo {
20
+ moduleSpecifier: string;
21
+ includeDefault: boolean;
22
+ }
19
23
  type CssWithMetaFn = typeof cssWithMeta;
20
24
  export interface GenerateTypesResult {
21
25
  selectorModulesWritten: number;
@@ -28,6 +32,7 @@ export interface GenerateTypesOptions {
28
32
  include?: string[];
29
33
  outDir?: string;
30
34
  stableNamespace?: string;
35
+ autoStable?: boolean;
31
36
  }
32
37
  type ModuleTypeDetector = () => ReturnType<typeof moduleType>;
33
38
  declare function resolvePackageRoot(): string;
@@ -44,16 +49,18 @@ declare function extractSelectorSourceSpecifier(specifier: string): string | und
44
49
  declare function resolveImportPath(resourceSpecifier: string, importerPath: string, rootDir: string, tsconfig?: TsconfigResolutionContext): Promise<string | undefined>;
45
50
  declare function buildSelectorModuleManifestKey(resolvedPath: string): string;
46
51
  declare function buildSelectorModulePath(resolvedPath: string): string;
47
- declare function formatSelectorModuleSource(selectors: Map<string, string>): string;
52
+ declare function formatSelectorModuleSource(selectors: Map<string, string>, proxyInfo?: SelectorModuleProxyInfo): string;
48
53
  declare function readManifest(manifestPath: string): Promise<SelectorModuleManifest>;
49
54
  declare function writeManifest(manifestPath: string, manifest: SelectorModuleManifest): Promise<void>;
50
55
  declare function removeStaleSelectorModules(previous: SelectorModuleManifest, next: SelectorModuleManifest): Promise<number>;
51
56
  declare function relativeToRoot(filePath: string, rootDir: string): string;
52
- declare function ensureSelectorModule(resolvedPath: string, selectors: Map<string, string>, previousManifest: SelectorModuleManifest, nextManifest: SelectorModuleManifest): Promise<boolean>;
57
+ declare function ensureSelectorModule(resolvedPath: string, selectors: Map<string, string>, previousManifest: SelectorModuleManifest, nextManifest: SelectorModuleManifest, proxyInfo?: SelectorModuleProxyInfo): Promise<boolean>;
53
58
  declare function resolveWithTsconfigPaths(specifier: string, tsconfig?: TsconfigResolutionContext): Promise<string | undefined>;
59
+ declare function resolveWithExtensionFallback(candidatePath: string): Promise<string | undefined>;
54
60
  declare function loadTsconfigResolutionContext(rootDir: string, loader?: typeof getTsconfig): TsconfigResolutionContext | undefined;
55
61
  declare function normalizeTsconfigPaths(paths: Record<string, string[] | string> | undefined): Record<string, string[]> | undefined;
56
62
  declare function isNonRelativeSpecifier(specifier: string): boolean;
63
+ declare function isStyleResource(filePath: string): boolean;
57
64
  declare function createProjectPeerResolver(rootDir: string): (name: string) => Promise<any>;
58
65
  declare function getProjectRequire(rootDir: string): ReturnType<typeof createRequire>;
59
66
  export declare function runGenerateTypesCli(argv?: string[]): Promise<void>;
@@ -62,6 +69,7 @@ export interface ParsedCliArgs {
62
69
  include?: string[];
63
70
  outDir?: string;
64
71
  stableNamespace?: string;
72
+ autoStable?: boolean;
65
73
  help?: boolean;
66
74
  }
67
75
  declare function parseCliArgs(argv: string[]): ParsedCliArgs;
@@ -85,6 +93,8 @@ export declare const __generateTypesInternals: {
85
93
  setModuleTypeDetector: typeof setModuleTypeDetector;
86
94
  setImportMetaUrlProvider: typeof setImportMetaUrlProvider;
87
95
  isNonRelativeSpecifier: typeof isNonRelativeSpecifier;
96
+ isStyleResource: typeof isStyleResource;
97
+ resolveWithExtensionFallback: typeof resolveWithExtensionFallback;
88
98
  createProjectPeerResolver: typeof createProjectPeerResolver;
89
99
  getProjectRequire: typeof getProjectRequire;
90
100
  loadTsconfigResolutionContext: typeof loadTsconfigResolutionContext;
@@ -19,9 +19,13 @@ function buildSpecificityVisitor(boost) {
19
19
  const visitor = {
20
20
  Rule: {
21
21
  style(rule) {
22
- if (!rule || !Array.isArray(rule.selectors))
22
+ const candidate = rule;
23
+ if (!candidate || !Array.isArray(candidate.selectors)) {
23
24
  return rule;
24
- const newSelectors = rule.selectors.map((sel) => {
25
+ }
26
+ const newSelectors = candidate.selectors.map((sel) => {
27
+ if (!Array.isArray(sel))
28
+ return sel;
25
29
  const selectorStr = serializeSelector(sel);
26
30
  if (!shouldApply(selectorStr))
27
31
  return sel;
@@ -34,7 +38,10 @@ function buildSpecificityVisitor(boost) {
34
38
  }));
35
39
  return [...sel, ...repeats];
36
40
  });
37
- return { ...rule, selectors: newSelectors };
41
+ return {
42
+ ...candidate,
43
+ selectors: newSelectors,
44
+ };
38
45
  },
39
46
  },
40
47
  };
@@ -45,9 +52,13 @@ function buildSpecificityVisitor(boost) {
45
52
  const visitor = {
46
53
  Rule: {
47
54
  style(rule) {
48
- if (!rule || !Array.isArray(rule.selectors))
55
+ const candidate = rule;
56
+ if (!candidate || !Array.isArray(candidate.selectors)) {
49
57
  return rule;
50
- const newSelectors = rule.selectors.map((sel) => {
58
+ }
59
+ const newSelectors = candidate.selectors.map((sel) => {
60
+ if (!Array.isArray(sel))
61
+ return sel;
51
62
  const selectorStr = serializeSelector(sel);
52
63
  if (!shouldApply(selectorStr))
53
64
  return sel;
@@ -60,7 +71,10 @@ function buildSpecificityVisitor(boost) {
60
71
  },
61
72
  ];
62
73
  });
63
- return { ...rule, selectors: newSelectors };
74
+ return {
75
+ ...candidate,
76
+ selectors: newSelectors,
77
+ };
64
78
  },
65
79
  },
66
80
  };
@@ -1 +1 @@
1
- {"version":3,"file":"helpers.cjs","names":[],"sources":["../../src/helpers.ts"],"sourcesContent":[null],"mappings":[[],[],[[0,0,10,0],[1,0,10,0],[2,0,10,0],[3,0,10,0],[4,0,10,0],[5,0,10,0],[6,0,10,0],[7,0,10,0],[8,0,10,0],[9,0,10,0],[10,0,10,0],[11,0,10,0],[12,0,10,0],[13,0,10,0],[14,0,10,0],[15,0,10,0],[16,0,10,0],[17,0,10,0],[18,0,10,0],[19,0,10,0],[20,0,10,0],[21,0,10,0],[22,0,10,0],[23,0,10,0],[24,0,10,0],[25,0,10,0],[26,0,10,0],[27,0,10,0],[28,0,10,0],[29,0,10,0],[30,0,10,0],[31,0,10,0],[32,0,10,0],[33,0,10,0],[34,0,10,0],[35,0,10,0],[36,0,10,0],[37,0,10,0],[38,0,10,0],[39,0,10,0],[40,0,10,0],[41,0,10,0],[42,0,10,0],[43,0,10,0],[44,0,10,0],[45,0,10,0],[46,0,10,0],[47,0,10,0],[48,0,10,0],[49,0,10,0],[50,0,10,0],[51,0,10,0],[52,0,10,0],[53,0,10,0],[54,0,10,0],[55,0,10,0],[56,0,10,0],[57,0,10,0]],[[0,0,77,0],[1,0,77,0],[2,0,77,0],[3,0,77,0],[4,0,77,0],[5,0,77,0],[6,0,77,0],[7,0,77,0],[8,0,77,0],[9,0,77,0],[10,0,77,0],[11,0,77,0],[12,0,77,0],[13,0,77,0],[14,0,77,0],[15,0,77,0],[16,0,77,0],[17,0,77,0],[18,0,77,0],[19,0,77,0],[20,0,77,0],[21,0,77,0],[22,0,77,0],[23,0,77,0],[24,0,77,0],[25,0,77,0],[26,0,77,0],[27,0,77,0],[28,0,77,0],[29,0,77,0],[30,0,77,0],[31,0,77,0],[32,0,77,0],[33,0,77,0],[34,0,77,0],[35,0,77,0],[36,0,77,0],[37,0,77,0],[38,0,77,0],[39,0,77,0],[40,0,77,0],[41,0,77,0],[42,0,77,0],[43,0,77,0],[44,0,77,0],[45,0,77,0]],[[0,0,93,0],[1,0,93,0],[2,0,93,0],[3,0,93,0],[4,0,93,0],[5,0,93,0],[6,0,93,0],[7,0,93,0],[8,0,93,0],[9,0,93,0],[10,0,93,0],[11,0,93,0],[12,0,93,0],[13,0,93,0],[14,0,93,0],[15,0,93,0],[16,0,93,0],[17,0,93,0],[18,0,93,0],[19,0,93,0],[20,0,93,0],[21,0,93,0],[22,0,93,0],[23,0,93,0],[24,0,93,0],[25,0,93,0],[26,0,93,0],[27,0,93,0],[28,0,93,0],[29,0,93,0],[30,0,93,0],[31,0,93,0],[32,0,93,0],[33,0,93,0]],[[0,0,97,0],[1,0,97,0],[2,0,97,0],[3,0,97,0],[4,0,97,0],[5,0,97,0],[6,0,97,0],[7,0,97,0],[8,0,97,0],[9,0,97,0],[10,0,97,0],[11,0,97,0],[12,0,97,0],[13,0,97,0],[14,0,97,0],[15,0,97,0],[16,0,97,0],[17,0,97,0],[18,0,97,0],[19,0,97,0],[20,0,97,0],[21,0,97,0],[22,0,97,0],[23,0,97,0],[24,0,97,0],[25,0,97,0],[26,0,97,0],[27,0,97,0],[28,0,97,0],[29,0,97,0],[30,0,97,0],[31,0,97,0],[32,0,97,0],[33,0,97,0],[34,0,97,0],[35,0,97,0],[36,0,97,0],[37,0,97,0],[38,0,97,0],[39,0,97,0],[40,0,97,0],[41,0,97,0],[42,0,97,0],[43,0,97,0],[44,0,97,0],[45,0,97,0]],[[0,0,107,0],[1,0,107,0],[2,0,107,0],[3,0,107,0],[4,0,107,0],[5,0,107,0],[6,0,107,0],[7,0,107,0],[8,0,107,0],[9,0,107,0],[10,0,107,0],[11,0,107,0],[12,0,107,0],[13,0,107,0],[14,0,107,0],[15,0,107,0],[16,0,107,0],[17,0,107,0],[18,0,107,0],[19,0,107,0],[20,0,107,0],[21,0,107,0],[22,0,107,0],[23,0,107,0],[24,0,107,0],[25,0,107,0],[26,0,107,0],[27,0,107,0],[28,0,107,0],[29,0,107,0],[30,0,107,0],[31,0,107,0],[32,0,107,0],[33,0,107,0],[34,0,107,0],[35,0,107,0],[36,0,107,0],[37,0,107,0],[38,0,107,0],[39,0,107,0],[40,0,107,0],[41,0,107,0],[42,0,107,0],[43,0,107,0],[44,0,107,0],[45,0,107,0],[46,0,107,0],[47,0,107,0],[48,0,107,0],[49,0,107,0],[50,0,107,0],[51,0,107,0],[52,0,107,0],[53,0,107,0],[54,0,107,0],[55,0,107,0],[56,0,107,0],[57,0,107,0],[58,0,107,0],[59,0,107,0],[60,0,107,0],[61,0,107,0],[62,0,107,0],[63,0,107,0],[64,0,107,0],[65,0,107,0]],[[0,0,10,0],[1,0,10,0],[2,0,10,0],[3,0,10,0],[4,0,10,0],[5,0,10,0],[6,0,10,0],[7,0,10,0],[8,0,10,0],[9,0,10,16],[10,0,10,16],[11,0,10,16],[12,0,10,16],[13,0,10,16],[14,0,10,16],[15,0,10,16],[16,0,10,16],[17,0,10,16],[18,0,10,16],[19,0,10,16],[20,0,10,16],[21,0,10,16],[22,0,10,16],[23,0,10,16],[24,0,10,16],[25,0,10,16],[26,0,10,16],[27,0,10,16],[28,0,10,16],[29,0,10,16],[30,0,10,16],[31,0,10,16],[32,0,10,39],[33,0,10,40],[34,0,10,40],[35,0,10,40],[36,0,10,40],[37,0,10,40],[38,0,14,1],[39,0,14,1],[40,0,14,1]],[[4,0,15,2],[5,0,15,2],[6,0,15,2],[7,0,15,2],[8,0,15,6],[9,0,15,7],[10,0,15,7],[11,0,15,7],[12,0,15,7],[13,0,15,7],[14,0,15,12]],[[8,0,15,14],[9,0,15,14],[10,0,15,14],[11,0,15,14],[12,0,15,14],[13,0,15,14],[14,0,15,14],[15,0,15,21],[16,0,15,21],[17,0,15,21],[18,0,15,21],[19,0,15,21],[20,0,15,21],[21,0,15,21],[22,0,15,21],[23,0,15,21],[24,0,15,30]],[[4,0,16,2],[5,0,16,2],[6,0,16,2],[7,0,16,2],[8,0,16,6],[9,0,16,6],[10,0,16,6],[11,0,16,6],[12,0,16,6],[13,0,16,11],[14,0,16,12],[15,0,16,12],[16,0,16,12],[17,0,16,12],[18,0,16,12],[19,0,16,12],[20,0,16,12],[21,0,16,19]],[[8,0,16,21],[9,0,16,21],[10,0,16,21],[11,0,16,21],[12,0,16,21],[13,0,16,21],[14,0,16,21],[15,0,16,28],[16,0,16,28],[17,0,16,28],[18,0,16,28],[19,0,16,28],[20,0,16,33],[21,0,16,34],[22,0,16,34],[23,0,16,34],[24,0,16,34],[25,0,16,34],[26,0,16,34],[27,0,16,34],[28,0,16,41]],[[4,0,17,2],[5,0,17,2],[6,0,17,2],[7,0,17,2],[8,0,17,6],[9,0,17,7],[10,0,17,7],[11,0,17,7],[12,0,17,7],[13,0,17,7],[14,0,17,12],[15,0,17,13],[16,0,17,13],[17,0,17,13],[18,0,17,13],[19,0,17,13],[20,0,17,13],[21,0,17,13],[22,0,17,13],[23,0,17,21]],[[8,0,17,23],[9,0,17,23],[10,0,17,23],[11,0,17,23],[12,0,17,23],[13,0,17,23],[14,0,17,23],[15,0,17,30],[16,0,17,30],[17,0,17,30],[18,0,17,30],[19,0,17,30],[20,0,17,30],[21,0,17,30],[22,0,17,30],[23,0,17,30],[24,0,17,39]],[[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],[11,0,19,8],[12,0,19,8],[13,0,19,8],[14,0,19,8],[15,0,19,8],[16,0,19,8],[17,0,19,8],[18,0,19,16],[19,0,19,16],[20,0,19,16],[21,0,19,19],[22,0,19,20],[23,0,19,20],[24,0,19,20],[25,0,19,20],[26,0,19,20],[27,0,19,25],[28,0,19,26],[29,0,19,26],[30,0,19,26],[31,0,19,26],[32,0,19,26],[33,0,19,31],[34,0,19,31],[35,0,19,31],[36,0,19,31],[37,0,19,35],[38,0,19,35],[39,0,19,37],[40,0,19,38],[41,0,19,39],[42,0,19,39],[43,0,19,39],[44,0,19,42],[45,0,19,43],[46,0,19,44],[47,0,19,45],[48,0,19,45],[49,0,19,47],[50,0,20,4],[51,0,20,4],[52,0,20,4],[53,0,20,4],[54,0,20,4],[55,0,20,4],[56,0,20,4],[57,0,20,11],[58,0,20,12],[59,0,20,12],[60,0,20,12],[61,0,20,12],[62,0,20,12],[63,0,20,17],[64,0,20,17],[65,0,20,17],[66,0,20,17],[67,0,20,17],[68,0,20,17],[69,0,20,17],[70,0,20,17],[71,0,20,25],[72,0,20,26],[73,0,20,27],[74,0,20,28],[75,0,20,28],[76,0,20,28],[77,0,20,28],[78,0,20,32],[79,0,20,32],[80,0,20,32],[81,0,20,32],[82,0,20,32],[83,0,20,32],[84,0,20,38],[85,0,20,39],[86,0,20,39],[87,0,20,39],[88,0,20,39],[89,0,20,43],[90,0,20,43],[91,0,20,43],[92,0,20,43],[93,0,20,43],[94,0,20,43],[95,0,20,43],[96,0,20,43],[97,0,20,43],[98,0,20,43],[99,0,20,43],[100,0,20,54],[101,0,20,55],[102,0,20,56],[103,0,20,57],[104,0,20,57],[105,0,20,57],[106,0,20,60],[107,0,20,61],[108,0,20,62],[109,0,20,63],[110,0,20,64],[111,0,20,65],[112,0,21,3]],[[4,0,22,2],[5,0,22,2],[6,0,22,2],[7,0,22,2],[8,0,22,2],[9,0,22,2],[10,0,22,8],[11,0,22,8],[12,0,22,8],[13,0,22,8],[14,0,22,8],[15,0,22,8],[16,0,22,8],[17,0,22,8],[18,0,22,8],[19,0,22,8],[20,0,22,8],[21,0,22,19],[22,0,22,19],[23,0,22,19],[24,0,22,22],[25,0,22,23],[26,0,22,23],[27,0,22,23],[28,0,22,23],[29,0,22,23],[30,0,22,23],[31,0,22,23],[32,0,22,23],[33,0,22,23],[34,0,22,23],[35,0,22,23],[36,0,22,42],[37,0,22,42],[38,0,22,53],[39,0,22,53],[40,0,22,55],[41,0,23,4],[42,0,23,4],[43,0,23,4],[44,0,23,4],[45,0,23,4],[46,0,23,4],[47,0,23,4],[48,0,23,4],[49,0,23,12],[50,0,23,13],[51,0,23,13],[52,0,23,13],[53,0,23,13],[54,0,23,13],[55,0,23,13],[56,0,23,19],[57,0,23,19],[58,0,23,19],[59,0,23,19],[60,0,23,19],[61,0,23,24],[62,0,23,25],[63,0,23,26],[64,0,23,27],[65,0,23,28],[66,0,23,28],[67,0,23,28],[68,0,23,28],[69,0,23,32],[70,0,23,33],[71,0,23,34],[72,0,23,35],[73,0,23,35],[74,0,23,35],[75,0,23,35],[76,0,23,35],[77,0,23,35],[78,0,23,35],[79,0,23,35],[80,0,23,43],[81,0,23,44],[82,0,23,44],[83,0,23,44],[84,0,23,44],[85,0,23,48],[86,0,23,49],[87,0,23,49],[88,0,23,51],[89,0,23,52],[90,0,23,52],[91,0,23,54],[92,0,23,55],[93,0,23,55],[94,0,23,57],[95,0,23,58],[96,0,23,58],[97,0,23,58],[98,0,23,58],[99,0,23,62],[100,0,23,63],[101,0,23,63],[102,0,23,63],[103,0,23,63],[104,0,23,63],[105,0,23,63],[106,0,23,63],[107,0,23,63],[108,0,23,63],[109,0,23,63],[110,0,23,63],[111,0,23,74],[112,0,23,75],[113,0,23,76]],[[4,0,25,2],[5,0,25,2],[6,0,25,2],[7,0,25,2],[8,0,25,6],[9,0,25,6],[10,0,25,6],[11,0,25,6],[12,0,25,6],[13,0,25,11],[14,0,25,12],[15,0,25,12],[16,0,25,12],[17,0,25,12],[18,0,25,12],[19,0,25,12],[20,0,25,12],[21,0,25,12],[22,0,25,20],[23,0,25,21],[24,0,25,21],[25,0,25,21],[26,0,25,21],[27,0,25,25],[28,0,25,25],[29,0,25,25],[30,0,25,25],[31,0,25,25],[32,0,25,30],[33,0,25,30],[34,0,25,30],[35,0,25,30],[36,0,25,30],[37,0,25,30],[38,0,25,30],[39,0,25,30],[40,0,25,30],[41,0,25,30],[42,0,25,30],[43,0,25,30],[44,0,25,30],[45,0,25,30],[46,0,25,44],[47,0,25,44],[48,0,25,46]],[[8,0,26,4],[9,0,26,4],[10,0,26,4],[11,0,26,4],[12,0,26,4],[13,0,26,4],[14,0,26,10],[15,0,26,10],[16,0,26,10],[17,0,26,10],[18,0,26,10],[19,0,26,15],[20,0,26,15],[21,0,26,15],[22,0,26,18],[23,0,26,18],[24,0,26,18],[25,0,26,18],[26,0,26,22],[27,0,26,23],[28,0,26,23],[29,0,26,23],[30,0,26,26],[31,0,26,27],[32,0,26,28],[33,0,26,28],[34,0,26,30],[35,0,26,30],[36,0,26,30],[37,0,26,30],[38,0,26,30],[39,0,26,35],[40,0,26,36],[41,0,26,36],[42,0,26,36],[43,0,26,36],[44,0,26,36],[45,0,26,36],[46,0,26,36],[47,0,26,36],[48,0,26,44],[49,0,26,45],[50,0,26,45],[51,0,26,45],[52,0,26,45],[53,0,26,45],[54,0,26,50],[55,0,26,50],[56,0,26,50],[57,0,26,50],[58,0,26,54],[59,0,26,55],[60,0,26,56]],[[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,10],[15,0,27,10],[16,0,27,10],[17,0,27,10],[18,0,27,10],[19,0,27,10],[20,0,27,10],[21,0,27,17],[22,0,27,17],[23,0,27,17],[24,0,27,38]],[[12,0,28,6],[13,0,28,6],[14,0,28,6],[15,0,28,6],[16,0,28,10],[17,0,28,10],[18,0,28,12]],[[16,0,29,8],[17,0,29,8],[18,0,29,8],[19,0,29,8],[20,0,29,8],[21,0,29,13],[22,0,29,14],[23,0,29,14],[24,0,29,14],[25,0,29,14],[26,0,29,23],[27,0,29,23],[28,0,29,23]],[[20,0,30,10],[21,0,30,10],[22,0,30,10],[23,0,30,10],[24,0,30,14],[25,0,30,15],[26,0,30,15],[27,0,30,15],[28,0,30,15],[29,0,30,19],[30,0,30,19],[31,0,30,19],[32,0,30,19],[33,0,30,23],[34,0,30,24],[35,0,30,24],[36,0,30,24],[37,0,30,24],[38,0,30,24],[39,0,30,29],[40,0,30,30],[41,0,30,30],[42,0,30,30],[43,0,30,30],[44,0,30,30],[45,0,30,30],[46,0,30,30],[47,0,30,37],[48,0,30,38],[49,0,30,38],[50,0,30,38],[51,0,30,38],[52,0,30,42],[53,0,30,43],[54,0,30,43],[55,0,30,43],[56,0,30,43],[57,0,30,43],[58,0,30,43],[59,0,30,43],[60,0,30,43],[61,0,30,43],[62,0,30,52],[63,0,30,53]],[[24,0,30,55],[25,0,30,55],[26,0,30,55],[27,0,30,55],[28,0,30,55],[29,0,30,55],[30,0,30,55],[31,0,30,62],[32,0,30,62],[33,0,30,62],[34,0,30,62],[35,0,30,66]],[[20,0,31,10],[21,0,31,10],[22,0,31,10],[23,0,31,10],[24,0,31,10],[25,0,31,10],[26,0,31,16],[27,0,31,16],[28,0,31,16],[29,0,31,16],[30,0,31,16],[31,0,31,16],[32,0,31,16],[33,0,31,16],[34,0,31,16],[35,0,31,16],[36,0,31,16],[37,0,31,16],[38,0,31,28],[39,0,31,28],[40,0,31,28],[41,0,31,31],[42,0,31,31],[43,0,31,31],[44,0,31,31],[45,0,31,35],[46,0,31,36],[47,0,31,36],[48,0,31,36],[49,0,31,36],[50,0,31,36],[51,0,31,36],[52,0,31,36],[53,0,31,36],[54,0,31,36],[55,0,31,45],[56,0,31,46],[57,0,31,46],[58,0,31,46],[59,0,31,49],[60,0,31,50],[61,0,31,51],[62,0,31,51],[63,0,31,51],[64,0,31,59],[65,0,31,59],[66,0,31,61],[67,0,31,61],[68,0,31,63],[69,0,31,63]],[[24,0,32,12],[25,0,32,12],[26,0,32,12],[27,0,32,12],[28,0,32,12],[29,0,32,12],[30,0,32,18],[31,0,32,18],[32,0,32,18],[33,0,32,18],[34,0,32,18],[35,0,32,18],[36,0,32,18],[37,0,32,18],[38,0,32,18],[39,0,32,18],[40,0,32,18],[41,0,32,29],[42,0,32,29],[43,0,32,29],[44,0,32,32],[45,0,32,32],[46,0,32,32],[47,0,32,32],[48,0,32,32],[49,0,32,32],[50,0,32,32],[51,0,32,32],[52,0,32,32],[53,0,32,32],[54,0,32,32],[55,0,32,32],[56,0,32,32],[57,0,32,32],[58,0,32,32],[59,0,32,32],[60,0,32,32],[61,0,32,49],[62,0,32,50],[63,0,32,50],[64,0,32,50],[65,0,32,53],[66,0,32,54]],[[24,0,33,12],[25,0,33,12],[26,0,33,12],[27,0,33,12],[28,0,33,16],[29,0,33,17],[30,0,33,17],[31,0,33,17],[32,0,33,17],[33,0,33,17],[34,0,33,17],[35,0,33,17],[36,0,33,17],[37,0,33,17],[38,0,33,17],[39,0,33,17],[40,0,33,28],[41,0,33,29],[42,0,33,29],[43,0,33,29],[44,0,33,29],[45,0,33,29],[46,0,33,29],[47,0,33,29],[48,0,33,29],[49,0,33,29],[50,0,33,29],[51,0,33,29],[52,0,33,40],[53,0,33,41]],[[28,0,33,43],[29,0,33,43],[30,0,33,43],[31,0,33,43],[32,0,33,43],[33,0,33,43],[34,0,33,43],[35,0,33,50],[36,0,33,50],[37,0,33,50],[38,0,33,53]],[[24,0,34,12],[25,0,34,12],[26,0,34,12],[27,0,34,12],[28,0,34,12],[29,0,34,12],[30,0,34,18],[31,0,34,18],[32,0,34,18],[33,0,34,18],[34,0,34,18],[35,0,34,18],[36,0,34,18],[37,0,34,18],[38,0,34,18],[39,0,34,18],[40,0,34,18],[41,0,34,18],[42,0,34,18],[43,0,34,31],[44,0,34,31],[45,0,34,31],[46,0,34,34],[47,0,34,34],[48,0,34,34],[49,0,34,34],[50,0,34,34],[51,0,34,34],[52,0,34,34],[53,0,34,34],[54,0,34,34],[55,0,34,34],[56,0,34,34],[57,0,34,34],[58,0,34,34],[59,0,34,34],[60,0,34,34],[61,0,34,34],[62,0,34,34],[63,0,34,51],[64,0,34,52],[65,0,34,52],[66,0,34,52],[67,0,34,52],[68,0,34,52],[69,0,34,52],[70,0,34,52],[71,0,34,52],[72,0,34,52],[73,0,34,52],[74,0,34,52],[75,0,34,63],[76,0,34,64]],[[24,0,35,12],[25,0,35,12],[26,0,35,12],[27,0,35,12],[28,0,35,16],[29,0,35,17],[30,0,35,17],[31,0,35,17],[32,0,35,17],[33,0,35,17],[34,0,35,17],[35,0,35,17],[36,0,35,17],[37,0,35,17],[38,0,35,17],[39,0,35,17],[40,0,35,17],[41,0,35,17],[42,0,35,30]],[[28,0,35,32],[29,0,35,32],[30,0,35,32],[31,0,35,32],[32,0,35,32],[33,0,35,32],[34,0,35,32],[35,0,35,39],[36,0,35,39],[37,0,35,39],[38,0,35,42]],[[24,0,36,12],[25,0,36,12],[26,0,36,12],[27,0,36,12],[28,0,36,12],[29,0,36,12],[30,0,36,18],[31,0,36,18],[32,0,36,18],[33,0,36,18],[34,0,36,18],[35,0,36,18],[36,0,36,18],[37,0,36,25],[38,0,36,25],[39,0,36,25],[40,0,36,28],[41,0,36,28],[42,0,36,28],[43,0,36,28],[44,0,36,28],[45,0,36,33],[46,0,36,34],[47,0,36,34],[48,0,36,34],[49,0,36,34],[50,0,36,38],[51,0,36,39],[52,0,36,39],[53,0,36,41],[54,0,36,41],[55,0,36,41],[56,0,36,41],[57,0,36,41],[58,0,36,41],[59,0,36,47],[60,0,36,47],[61,0,36,49],[62,0,36,49],[63,0,36,49],[64,0,36,49],[65,0,36,49],[66,0,36,54],[67,0,36,54],[68,0,36,56],[69,0,36,56],[70,0,36,58],[71,0,36,58],[72,0,36,58],[73,0,36,61],[74,0,36,61],[75,0,36,63],[76,0,36,64],[77,0,36,65]],[[28,0,37,14],[29,0,37,14],[30,0,37,14],[31,0,37,14],[32,0,37,18],[33,0,37,18],[34,0,37,20],[35,0,37,20],[36,0,37,20],[37,0,37,20],[38,0,37,20],[39,0,37,20],[40,0,37,20],[41,0,37,27]],[[28,0,38,14],[29,0,38,14],[30,0,38,14],[31,0,38,14],[32,0,38,14],[33,0,38,19],[34,0,38,19],[35,0,38,21],[36,0,38,21],[37,0,38,21],[38,0,38,21],[39,0,38,21],[40,0,38,21],[41,0,38,21],[42,0,38,21],[43,0,38,21],[44,0,38,21],[45,0,38,21],[46,0,38,21],[47,0,38,21],[48,0,38,34]],[[25,0,39,13],[26,0,39,14],[27,0,39,15]],[[24,0,40,12],[25,0,40,12],[26,0,40,12],[27,0,40,12],[28,0,40,12],[29,0,40,12],[30,0,40,12],[31,0,40,19],[32,0,40,20],[33,0,40,20],[34,0,40,20],[35,0,40,23],[36,0,40,23],[37,0,40,23],[38,0,40,26],[39,0,40,26],[40,0,40,28],[41,0,40,28],[42,0,40,28],[43,0,40,31],[44,0,40,31],[45,0,40,31],[46,0,40,31],[47,0,40,31],[48,0,40,31],[49,0,40,31],[50,0,40,38],[51,0,40,39]],[[20,0,41,10],[21,0,41,11],[22,0,41,12]],[[20,0,42,10],[21,0,42,10],[22,0,42,10],[23,0,42,10],[24,0,42,10],[25,0,42,10],[26,0,42,10],[27,0,42,17],[28,0,42,17],[29,0,42,19],[30,0,42,19],[31,0,42,19],[32,0,42,22],[33,0,42,22],[34,0,42,22],[35,0,42,22],[36,0,42,26],[37,0,42,26],[38,0,42,28],[39,0,42,28],[40,0,42,28],[41,0,42,28],[42,0,42,28],[43,0,42,28],[44,0,42,28],[45,0,42,28],[46,0,42,28],[47,0,42,37],[48,0,42,37],[49,0,42,39],[50,0,42,39],[51,0,42,39],[52,0,42,39],[53,0,42,39],[54,0,42,39],[55,0,42,39],[56,0,42,39],[57,0,42,39],[58,0,42,39],[59,0,42,39],[60,0,42,39],[61,0,42,51],[62,0,42,51],[63,0,42,53]],[[16,0,43,8],[17,0,43,9]],[[13,0,44,7]],[[9,0,45,5]],[[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,18]],[[4,0,47,2]],[[4,0,49,2],[5,0,49,2],[6,0,49,2],[7,0,49,2],[8,0,49,6],[9,0,49,6],[10,0,49,6],[11,0,49,6],[12,0,49,6],[13,0,49,11],[14,0,49,12],[15,0,49,12],[16,0,49,12],[17,0,49,12],[18,0,49,12],[19,0,49,12],[20,0,49,12],[21,0,49,12],[22,0,49,20],[23,0,49,21],[24,0,49,21],[25,0,49,21],[26,0,49,21],[27,0,49,25],[28,0,49,25],[29,0,49,25],[30,0,49,25],[31,0,49,25],[32,0,49,30],[33,0,49,30],[34,0,49,30],[35,0,49,30],[36,0,49,30],[37,0,49,30],[38,0,49,30],[39,0,49,30],[40,0,49,30],[41,0,49,30],[42,0,49,30],[43,0,49,30],[44,0,49,30],[45,0,49,30],[46,0,49,44],[47,0,49,44],[48,0,49,46]],[[8,0,50,4],[9,0,50,4],[10,0,50,4],[11,0,50,4],[12,0,50,4],[13,0,50,4],[14,0,50,10],[15,0,50,10],[16,0,50,10],[17,0,50,10],[18,0,50,10],[19,0,50,15],[20,0,50,15],[21,0,50,15],[22,0,50,18],[23,0,50,18],[24,0,50,18],[25,0,50,18],[26,0,50,18],[27,0,50,23],[28,0,50,24],[29,0,50,24],[30,0,50,24],[31,0,50,24],[32,0,50,24],[33,0,50,24],[34,0,50,24],[35,0,50,24],[36,0,50,32],[37,0,50,33],[38,0,50,33],[39,0,50,33],[40,0,50,33],[41,0,50,33],[42,0,50,38]],[[8,0,51,4],[9,0,51,4],[10,0,51,4],[11,0,51,4],[12,0,51,4],[13,0,51,4],[14,0,51,10],[15,0,51,10],[16,0,51,10],[17,0,51,10],[18,0,51,10],[19,0,51,10],[20,0,51,10],[21,0,51,17],[22,0,51,17],[23,0,51,17],[24,0,51,65]],[[12,0,52,6],[13,0,52,6],[14,0,52,6],[15,0,52,6],[16,0,52,10],[17,0,52,10],[18,0,52,12]],[[16,0,53,8],[17,0,53,8],[18,0,53,8],[19,0,53,8],[20,0,53,8],[21,0,53,13],[22,0,53,14],[23,0,53,14],[24,0,53,14],[25,0,53,14],[26,0,53,23],[27,0,53,23],[28,0,53,23]],[[20,0,54,10],[21,0,54,10],[22,0,54,10],[23,0,54,10],[24,0,54,14],[25,0,54,15],[26,0,54,15],[27,0,54,15],[28,0,54,15],[29,0,54,19],[30,0,54,19],[31,0,54,19],[32,0,54,19],[33,0,54,23],[34,0,54,24],[35,0,54,24],[36,0,54,24],[37,0,54,24],[38,0,54,24],[39,0,54,29],[40,0,54,30],[41,0,54,30],[42,0,54,30],[43,0,54,30],[44,0,54,30],[45,0,54,30],[46,0,54,30],[47,0,54,37],[48,0,54,38],[49,0,54,38],[50,0,54,38],[51,0,54,38],[52,0,54,42],[53,0,54,43],[54,0,54,43],[55,0,54,43],[56,0,54,43],[57,0,54,43],[58,0,54,43],[59,0,54,43],[60,0,54,43],[61,0,54,43],[62,0,54,52],[63,0,54,53]],[[24,0,54,55],[25,0,54,55],[26,0,54,55],[27,0,54,55],[28,0,54,55],[29,0,54,55],[30,0,54,55],[31,0,54,62],[32,0,54,62],[33,0,54,62],[34,0,54,62],[35,0,54,66]],[[20,0,55,10],[21,0,55,10],[22,0,55,10],[23,0,55,10],[24,0,55,10],[25,0,55,10],[26,0,55,16],[27,0,55,16],[28,0,55,16],[29,0,55,16],[30,0,55,16],[31,0,55,16],[32,0,55,16],[33,0,55,16],[34,0,55,16],[35,0,55,16],[36,0,55,16],[37,0,55,16],[38,0,55,28],[39,0,55,28],[40,0,55,28],[41,0,55,31],[42,0,55,31],[43,0,55,31],[44,0,55,31],[45,0,55,35],[46,0,55,36],[47,0,55,36],[48,0,55,36],[49,0,55,36],[50,0,55,36],[51,0,55,36],[52,0,55,36],[53,0,55,36],[54,0,55,36],[55,0,55,45],[56,0,55,46],[57,0,55,46],[58,0,55,46],[59,0,55,49],[60,0,55,50],[61,0,55,51],[62,0,55,51],[63,0,55,51],[64,0,55,59],[65,0,55,59],[66,0,55,61],[67,0,55,61],[68,0,55,63],[69,0,55,63]],[[24,0,56,12],[25,0,56,12],[26,0,56,12],[27,0,56,12],[28,0,56,12],[29,0,56,12],[30,0,56,18],[31,0,56,18],[32,0,56,18],[33,0,56,18],[34,0,56,18],[35,0,56,18],[36,0,56,18],[37,0,56,18],[38,0,56,18],[39,0,56,18],[40,0,56,18],[41,0,56,29],[42,0,56,29],[43,0,56,29],[44,0,56,32],[45,0,56,32],[46,0,56,32],[47,0,56,32],[48,0,56,32],[49,0,56,32],[50,0,56,32],[51,0,56,32],[52,0,56,32],[53,0,56,32],[54,0,56,32],[55,0,56,32],[56,0,56,32],[57,0,56,32],[58,0,56,32],[59,0,56,32],[60,0,56,32],[61,0,56,49],[62,0,56,50],[63,0,56,50],[64,0,56,50],[65,0,56,53],[66,0,56,54]],[[24,0,57,12],[25,0,57,12],[26,0,57,12],[27,0,57,12],[28,0,57,16],[29,0,57,17],[30,0,57,17],[31,0,57,17],[32,0,57,17],[33,0,57,17],[34,0,57,17],[35,0,57,17],[36,0,57,17],[37,0,57,17],[38,0,57,17],[39,0,57,17],[40,0,57,28],[41,0,57,29],[42,0,57,29],[43,0,57,29],[44,0,57,29],[45,0,57,29],[46,0,57,29],[47,0,57,29],[48,0,57,29],[49,0,57,29],[50,0,57,29],[51,0,57,29],[52,0,57,40],[53,0,57,41]],[[28,0,57,43],[29,0,57,43],[30,0,57,43],[31,0,57,43],[32,0,57,43],[33,0,57,43],[34,0,57,43],[35,0,57,50],[36,0,57,50],[37,0,57,50],[38,0,57,53]],[[24,0,58,12],[25,0,58,12],[26,0,58,12],[27,0,58,12],[28,0,58,12],[29,0,58,12],[30,0,58,12],[31,0,58,19]],[[28,0,59,14],[29,0,59,14],[30,0,59,14],[31,0,59,17],[32,0,59,17],[33,0,59,17],[34,0,59,20]],[[28,0,60,14]],[[32,0,61,16],[33,0,61,16],[34,0,61,16],[35,0,61,16],[36,0,61,20],[37,0,61,20],[38,0,61,22],[39,0,61,22],[40,0,61,22],[41,0,61,22],[42,0,61,22],[43,0,61,22],[44,0,61,22],[45,0,61,22],[46,0,61,22],[47,0,61,22],[48,0,61,22],[49,0,61,22],[50,0,61,22],[51,0,61,22],[52,0,61,36]],[[32,0,62,16],[33,0,62,16],[34,0,62,16],[35,0,62,16],[36,0,62,20],[37,0,62,20],[38,0,62,22],[39,0,62,22],[40,0,62,22],[41,0,62,22],[42,0,62,22],[43,0,62,22],[44,0,62,22],[45,0,62,29]],[[32,0,63,16],[33,0,63,16],[34,0,63,16],[35,0,63,16],[36,0,63,16],[37,0,63,16],[38,0,63,16],[39,0,63,16],[40,0,63,16],[41,0,63,25],[42,0,63,25],[43,0,63,27],[44,0,63,28],[45,0,63,29],[46,0,63,29],[47,0,63,31],[48,0,63,31],[49,0,63,31],[50,0,63,31],[51,0,63,35],[52,0,63,35],[53,0,63,37],[54,0,63,37],[55,0,63,37],[56,0,63,37],[57,0,63,37],[58,0,63,37],[59,0,63,37],[60,0,63,44],[61,0,63,44],[62,0,63,46],[63,0,63,46],[64,0,63,46],[65,0,63,46],[66,0,63,46],[67,0,63,51],[68,0,63,51],[69,0,63,53],[70,0,63,53],[71,0,63,53],[72,0,63,53],[73,0,63,53],[74,0,63,58],[75,0,63,59],[76,0,63,59],[77,0,63,59],[78,0,63,59],[79,0,63,59],[80,0,63,59],[81,0,63,59],[82,0,63,66],[83,0,63,67],[84,0,63,67],[85,0,63,67],[86,0,63,67],[87,0,63,67],[88,0,63,72],[89,0,63,72],[90,0,63,74],[91,0,63,74],[92,0,63,76],[93,0,63,77],[94,0,63,77],[95,0,63,79],[96,0,63,80],[97,0,63,81]],[[29,0,64,15]],[[25,0,65,13]],[[20,0,66,10],[21,0,66,11],[22,0,66,12]],[[20,0,67,10],[21,0,67,10],[22,0,67,10],[23,0,67,10],[24,0,67,10],[25,0,67,10],[26,0,67,10],[27,0,67,17],[28,0,67,17],[29,0,67,19],[30,0,67,19],[31,0,67,19],[32,0,67,22],[33,0,67,22],[34,0,67,22],[35,0,67,22],[36,0,67,26],[37,0,67,26],[38,0,67,28],[39,0,67,28],[40,0,67,28],[41,0,67,28],[42,0,67,28],[43,0,67,28],[44,0,67,28],[45,0,67,28],[46,0,67,28],[47,0,67,37],[48,0,67,37],[49,0,67,39],[50,0,67,39],[51,0,67,39],[52,0,67,39],[53,0,67,39],[54,0,67,39],[55,0,67,39],[56,0,67,39],[57,0,67,39],[58,0,67,39],[59,0,67,39],[60,0,67,39],[61,0,67,51],[62,0,67,51],[63,0,67,53]],[[16,0,68,8],[17,0,68,9]],[[13,0,69,7]],[[9,0,70,5]],[[8,0,71,4],[9,0,71,4],[10,0,71,4],[11,0,71,4],[12,0,71,4],[13,0,71,4],[14,0,71,4],[15,0,71,11],[16,0,71,11],[17,0,71,11],[18,0,71,11],[19,0,71,11],[20,0,71,11],[21,0,71,11],[22,0,71,18]],[[4,0,72,2]],[[4,0,74,2],[5,0,74,2],[6,0,74,2],[7,0,74,2],[8,0,74,2],[9,0,74,2],[10,0,74,2],[11,0,74,9],[12,0,74,9],[13,0,74,9],[14,0,74,9],[15,0,74,9],[16,0,74,9],[17,0,74,9],[18,0,74,9],[19,0,74,9],[20,0,74,18]],[[0,0,75,0]],[[0,0,77,0],[1,0,77,0],[2,0,77,0],[3,0,77,0],[4,0,77,0],[5,0,77,0],[6,0,77,0],[7,0,77,0],[8,0,77,0],[9,0,77,16],[10,0,77,16],[11,0,77,16],[12,0,77,16],[13,0,77,16],[14,0,77,16],[15,0,77,16],[16,0,77,16],[17,0,77,16],[18,0,77,16],[19,0,77,16],[20,0,77,16],[21,0,77,16],[22,0,77,16],[23,0,77,16],[24,0,77,16],[25,0,77,16],[26,0,77,33],[27,0,78,2],[28,0,78,2],[29,0,78,2],[30,0,78,76],[31,0,78,76],[32,0,78,76]],[[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]],[[9,0,81,5],[10,0,81,5],[11,0,81,5],[12,0,81,8],[13,0,81,9],[14,0,81,9],[15,0,81,9],[16,0,81,9],[17,0,81,13],[18,0,81,14],[19,0,81,14],[20,0,81,16],[21,0,81,16]],[[8,0,82,6],[9,0,82,6],[10,0,82,6],[11,0,82,6],[12,0,82,10],[13,0,82,10],[14,0,82,10],[15,0,82,10],[16,0,82,14],[17,0,82,15],[18,0,82,15],[19,0,82,15],[20,0,82,15],[21,0,82,19],[22,0,82,19],[23,0,82,19],[24,0,82,19],[25,0,82,19],[26,0,82,24],[27,0,82,24],[28,0,82,24],[29,0,82,24],[30,0,82,24],[31,0,82,24],[32,0,82,24],[33,0,82,31]],[[12,0,82,33],[13,0,82,33],[14,0,82,33],[15,0,82,33],[16,0,82,33],[17,0,82,33],[18,0,82,33],[19,0,82,40],[20,0,82,40],[21,0,82,40],[22,0,82,40],[23,0,82,44],[24,0,82,44],[25,0,82,44],[26,0,82,44],[27,0,82,48],[28,0,82,49],[29,0,82,49],[30,0,82,49],[31,0,82,49],[32,0,82,49],[33,0,82,54],[34,0,82,54],[35,0,82,54],[36,0,82,54],[37,0,82,58],[38,0,82,58],[39,0,82,58],[40,0,82,58],[41,0,82,62],[42,0,82,63],[43,0,82,63],[44,0,82,63],[45,0,82,63],[46,0,82,67],[47,0,82,67],[48,0,82,67],[49,0,82,67],[50,0,82,71],[51,0,82,71],[52,0,82,73],[53,0,82,73],[54,0,82,75]],[[8,0,83,6],[9,0,83,6],[10,0,83,6],[11,0,83,6],[12,0,83,10],[13,0,83,10],[14,0,83,10],[15,0,83,10],[16,0,83,14],[17,0,83,15],[18,0,83,15],[19,0,83,15],[20,0,83,15],[21,0,83,19],[22,0,83,19],[23,0,83,19],[24,0,83,19],[25,0,83,19],[26,0,83,24],[27,0,83,24],[28,0,83,24],[29,0,83,24],[30,0,83,28]],[[12,0,83,30],[13,0,83,30],[14,0,83,30],[15,0,83,30],[16,0,83,30],[17,0,83,30],[18,0,83,30],[19,0,83,37],[20,0,83,37],[21,0,83,37],[22,0,83,37],[23,0,83,41],[24,0,83,41],[25,0,83,41],[26,0,83,41],[27,0,83,45],[28,0,83,46],[29,0,83,46],[30,0,83,46],[31,0,83,46],[32,0,83,46],[33,0,83,51],[34,0,83,51],[35,0,83,51],[36,0,83,51],[37,0,83,55],[38,0,83,55],[39,0,83,55],[40,0,83,55],[41,0,83,59],[42,0,83,60],[43,0,83,60],[44,0,83,60],[45,0,83,60],[46,0,83,64],[47,0,83,64],[48,0,83,64],[49,0,83,64],[50,0,83,68],[51,0,83,68],[52,0,83,70],[53,0,83,70],[54,0,83,72]],[[8,0,84,6],[9,0,84,6],[10,0,84,6],[11,0,84,6],[12,0,84,10],[13,0,84,10],[14,0,84,10],[15,0,84,10],[16,0,84,14],[17,0,84,15],[18,0,84,15],[19,0,84,15],[20,0,84,15],[21,0,84,19],[22,0,84,19],[23,0,84,19],[24,0,84,19],[25,0,84,19],[26,0,84,24],[27,0,84,24],[28,0,84,24],[29,0,84,24],[30,0,84,24],[31,0,84,24],[32,0,84,30]],[[12,0,84,32],[13,0,84,32],[14,0,84,32],[15,0,84,32],[16,0,84,32],[17,0,84,32],[18,0,84,32],[19,0,84,39],[20,0,84,39],[21,0,84,39],[22,0,84,39],[23,0,84,43],[24,0,84,44],[25,0,84,44],[26,0,84,44],[27,0,84,44],[28,0,84,48],[29,0,84,48],[30,0,84,48],[31,0,84,48],[32,0,84,52],[33,0,84,52],[34,0,84,54]],[[8,0,85,6],[9,0,85,6],[10,0,85,6],[11,0,85,6],[12,0,85,10],[13,0,85,10],[14,0,85,10],[15,0,85,10],[16,0,85,14],[17,0,85,15],[18,0,85,15],[19,0,85,15],[20,0,85,15],[21,0,85,19],[22,0,85,19],[23,0,85,19],[24,0,85,19],[25,0,85,19],[26,0,85,24],[27,0,85,24],[28,0,85,24],[29,0,85,24],[30,0,85,24],[31,0,85,24],[32,0,85,24],[33,0,85,24],[34,0,85,24],[35,0,85,24],[36,0,85,24],[37,0,85,24],[38,0,85,24],[39,0,85,24],[40,0,85,38]],[[12,0,85,40],[13,0,85,40],[14,0,85,40],[15,0,85,40],[16,0,85,40],[17,0,85,40],[18,0,85,40],[19,0,85,47],[20,0,85,47],[21,0,85,47],[22,0,85,47],[23,0,85,51],[24,0,85,51],[25,0,85,51],[26,0,85,51],[27,0,85,55],[28,0,85,56],[29,0,85,56],[30,0,85,56],[31,0,85,56],[32,0,85,60],[33,0,85,60],[34,0,85,60],[35,0,85,60],[36,0,85,64],[37,0,85,64],[38,0,85,66],[39,0,85,66],[40,0,85,68]],[[8,0,86,6],[9,0,86,6],[10,0,86,6],[11,0,86,6],[12,0,86,10],[13,0,86,10],[14,0,86,10],[15,0,86,10],[16,0,86,14],[17,0,86,15],[18,0,86,15],[19,0,86,15],[20,0,86,15],[21,0,86,19],[22,0,86,19],[23,0,86,19],[24,0,86,19],[25,0,86,19],[26,0,86,24],[27,0,86,24],[28,0,86,24],[29,0,86,24],[30,0,86,24],[31,0,86,24],[32,0,86,24],[33,0,86,24],[34,0,86,24],[35,0,86,24],[36,0,86,24],[37,0,86,24],[38,0,86,36]],[[12,0,86,38],[13,0,86,38],[14,0,86,38],[15,0,86,38],[16,0,86,38],[17,0,86,38],[18,0,86,38],[19,0,86,45],[20,0,86,45],[21,0,86,45],[22,0,86,45],[23,0,86,49],[24,0,86,49],[25,0,86,49],[26,0,86,49],[27,0,86,53],[28,0,86,54],[29,0,86,54],[30,0,86,54],[31,0,86,54],[32,0,86,54],[33,0,86,59],[34,0,86,59],[35,0,86,59],[36,0,86,59],[37,0,86,63],[38,0,86,63],[39,0,86,65],[40,0,86,65],[41,0,86,65],[42,0,86,68]],[[8,0,87,6],[9,0,87,6],[10,0,87,6],[11,0,87,6],[12,0,87,6],[13,0,87,6],[14,0,87,6],[15,0,87,13],[16,0,87,13],[17,0,87,15]],[[4,0,88,4],[5,0,88,5]],[[9,0,89,5],[10,0,89,5],[11,0,89,5],[12,0,89,5],[13,0,89,9],[14,0,89,10],[15,0,89,10],[16,0,89,12]],[[9,0,90,5],[10,0,90,5],[11,0,90,5],[12,0,90,5],[13,0,90,9],[14,0,90,9],[15,0,90,11]],[[0,0,91,0]],[[0,0,93,0],[1,0,93,0],[2,0,93,0],[3,0,93,0],[4,0,93,0],[5,0,93,0],[6,0,93,0],[7,0,93,0],[8,0,93,0],[9,0,93,16],[10,0,93,16],[11,0,93,16],[12,0,93,16],[13,0,93,16],[14,0,93,16],[15,0,93,16],[16,0,93,16],[17,0,93,16],[18,0,93,16],[19,0,93,16],[20,0,93,27],[21,0,93,28],[22,0,93,28],[23,0,93,28],[24,0,93,39],[25,0,93,39],[26,0,93,39]],[[4,0,94,2],[5,0,94,2],[6,0,94,2],[7,0,94,2],[8,0,94,2],[9,0,94,2],[10,0,94,2],[11,0,94,9],[12,0,94,9],[13,0,94,9],[14,0,94,12],[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,21],[24,0,94,21],[25,0,94,21],[26,0,94,21],[27,0,94,21],[28,0,94,21],[29,0,94,21],[30,0,94,21],[31,0,94,21],[32,0,94,21],[33,0,94,21],[34,0,94,21],[35,0,94,21],[36,0,94,21],[37,0,94,21],[38,0,94,21],[39,0,94,21],[40,0,94,21],[41,0,94,21],[42,0,94,21],[43,0,94,21],[44,0,94,42],[45,0,94,42],[46,0,94,44],[47,0,94,44],[48,0,94,44],[49,0,94,44],[50,0,94,44],[51,0,94,44],[52,0,94,50],[53,0,94,51]],[[0,0,95,0]],[[0,0,97,0],[1,0,97,0],[2,0,97,0],[3,0,97,0],[4,0,97,0],[5,0,97,0],[6,0,97,0],[7,0,97,0],[8,0,97,0],[9,0,97,16],[10,0,97,16],[11,0,97,16],[12,0,97,16],[13,0,97,16],[14,0,97,16],[15,0,97,16],[16,0,97,16],[17,0,97,16],[18,0,97,16],[19,0,97,16],[20,0,97,16],[21,0,97,16],[22,0,97,16],[23,0,97,16],[24,0,97,16],[25,0,97,16],[26,0,97,33],[27,0,97,34],[28,0,97,34],[29,0,97,34],[30,0,97,34],[31,0,97,34],[32,0,97,34],[33,0,97,34],[34,0,97,34],[35,0,97,50],[36,0,97,50],[37,0,97,50]],[[4,0,98,2],[5,0,98,2],[6,0,98,2],[7,0,98,2],[8,0,98,6],[9,0,98,6],[10,0,98,6],[11,0,98,6],[12,0,98,6],[13,0,98,35]],[[4,0,99,2],[5,0,99,2],[6,0,99,2],[7,0,99,2],[8,0,99,6],[9,0,99,6],[10,0,99,6],[11,0,99,6],[12,0,99,30]],[[4,0,100,2],[5,0,100,2],[6,0,100,2],[7,0,100,2],[8,0,100,2],[9,0,100,2],[10,0,100,8],[11,0,100,8],[12,0,100,10],[13,0,100,10],[14,0,100,10],[15,0,100,13],[16,0,100,13],[17,0,100,13],[18,0,100,13],[19,0,100,13],[20,0,100,13],[21,0,100,13],[22,0,100,13],[23,0,100,13],[24,0,100,13],[25,0,100,13],[26,0,100,13],[27,0,100,13],[28,0,100,13],[29,0,100,13],[30,0,100,13],[31,0,100,13],[32,0,100,13],[33,0,100,13],[34,0,100,13],[35,0,100,13],[36,0,100,34]],[[4,0,101,2],[5,0,101,2],[6,0,101,2],[7,0,101,2],[8,0,101,2],[9,0,101,2],[10,0,101,2],[11,0,101,9],[12,0,101,10],[13,0,101,10],[14,0,101,10],[15,0,101,10],[16,0,101,10],[17,0,101,15],[18,0,101,15],[19,0,101,15],[20,0,101,18],[21,0,101,18],[22,0,101,20],[23,0,101,21],[24,0,101,21],[25,0,101,21],[26,0,101,21],[27,0,101,25],[28,0,101,26],[29,0,101,26],[30,0,101,26],[31,0,101,26],[32,0,101,26],[33,0,101,26],[34,0,101,26],[35,0,101,26],[36,0,101,34],[37,0,101,35],[38,0,101,36],[39,0,101,36],[40,0,101,36],[41,0,101,36],[42,0,101,36],[43,0,101,41],[44,0,101,41],[45,0,101,41],[46,0,101,41],[47,0,101,45],[48,0,101,45],[49,0,101,47]],[[8,0,102,4],[9,0,102,4],[10,0,102,4],[11,0,102,4],[12,0,102,8],[13,0,102,8],[14,0,102,8],[15,0,102,11],[16,0,102,11],[17,0,102,11],[18,0,102,11],[19,0,102,11],[20,0,102,16],[21,0,102,17],[22,0,102,18],[23,0,102,19]],[[4,0,103,2]],[[4,0,104,2],[5,0,104,2],[6,0,104,2],[7,0,104,2],[8,0,104,2],[9,0,104,2],[10,0,104,2],[11,0,104,9],[12,0,104,9],[13,0,104,9],[14,0,104,9],[15,0,104,13]],[[0,0,105,0]],[[0,0,107,0],[1,0,107,0],[2,0,107,0],[3,0,107,0],[4,0,107,0],[5,0,107,0],[6,0,107,0],[7,0,107,0],[8,0,107,0],[9,0,107,16],[10,0,107,16],[11,0,107,16],[12,0,107,16],[13,0,107,16],[14,0,107,16],[15,0,107,16],[16,0,107,16],[17,0,107,16],[18,0,107,16],[19,0,107,16],[20,0,107,16],[21,0,107,16],[22,0,107,16],[23,0,107,16],[24,0,107,16],[25,0,107,16],[26,0,107,16],[27,0,107,16],[28,0,107,16],[29,0,107,16],[30,0,107,16],[31,0,107,16],[32,0,107,16],[33,0,107,16],[34,0,107,16],[35,0,107,16],[36,0,107,43],[37,0,108,2],[38,0,108,2],[39,0,108,2],[40,0,108,13],[41,0,108,13],[42,0,109,2],[43,0,109,2],[44,0,109,2],[45,0,109,2],[46,0,109,2],[47,0,112,3],[48,0,112,3],[49,0,112,3]],[[4,0,114,2],[5,0,114,2],[6,0,114,2],[7,0,114,2],[8,0,114,6],[9,0,114,7],[10,0,114,7],[11,0,114,7],[12,0,114,7],[13,0,114,7],[14,0,114,12],[15,0,114,13],[16,0,114,13],[17,0,114,13],[18,0,114,13],[19,0,114,13],[20,0,114,13],[21,0,114,13],[22,0,114,13],[23,0,114,21]],[[8,0,114,23],[9,0,114,23],[10,0,114,23],[11,0,114,23],[12,0,114,23],[13,0,114,23],[14,0,114,23],[15,0,114,30],[16,0,114,30],[17,0,114,30],[18,0,114,33]],[[4,0,115,2],[5,0,115,2],[6,0,115,2],[7,0,115,2],[8,0,115,2],[9,0,115,2],[10,0,115,8],[11,0,115,8],[12,0,115,8],[13,0,115,8],[14,0,115,8],[15,0,115,8],[16,0,115,8],[17,0,115,8],[18,0,115,16],[19,0,115,16],[20,0,115,16],[21,0,115,19],[22,0,115,20],[23,0,115,20],[24,0,115,20],[25,0,115,20],[26,0,115,20],[27,0,115,25],[28,0,115,26],[29,0,115,26],[30,0,115,26],[31,0,115,26],[32,0,115,26],[33,0,115,31],[34,0,115,31],[35,0,115,31],[36,0,115,31],[37,0,115,35],[38,0,115,35],[39,0,115,37],[40,0,115,38],[41,0,115,39],[42,0,115,39],[43,0,115,39],[44,0,115,42],[45,0,115,43],[46,0,115,44],[47,0,115,45],[48,0,115,45],[49,0,115,47],[50,0,116,4],[51,0,116,4],[52,0,116,4],[53,0,116,4],[54,0,116,4],[55,0,116,4],[56,0,116,4],[57,0,116,11],[58,0,116,12],[59,0,116,12],[60,0,116,12],[61,0,116,12],[62,0,116,12],[63,0,116,17],[64,0,116,17],[65,0,116,17],[66,0,116,17],[67,0,116,17],[68,0,116,17],[69,0,116,17],[70,0,116,17],[71,0,116,25],[72,0,116,26],[73,0,116,27],[74,0,116,28],[75,0,116,28],[76,0,116,28],[77,0,116,28],[78,0,116,32],[79,0,116,32],[80,0,116,32],[81,0,116,32],[82,0,116,32],[83,0,116,32],[84,0,116,38],[85,0,116,39],[86,0,116,39],[87,0,116,39],[88,0,116,39],[89,0,116,39],[90,0,116,39],[91,0,116,45],[92,0,116,45],[93,0,116,45],[94,0,116,45],[95,0,116,45],[96,0,116,45],[97,0,116,45],[98,0,116,45],[99,0,116,45],[100,0,116,45],[101,0,116,45],[102,0,116,56],[103,0,116,57],[104,0,116,58],[105,0,116,59],[106,0,116,59],[107,0,116,59],[108,0,116,59],[109,0,116,59],[110,0,116,59],[111,0,116,59],[112,0,116,59],[113,0,116,59],[114,0,116,59],[115,0,116,59],[116,0,116,59],[117,0,116,71],[118,0,116,71],[119,0,116,73],[120,0,116,73],[121,0,116,73],[122,0,116,76],[123,0,116,77],[124,0,116,78],[125,0,116,79],[126,0,116,80],[127,0,116,81],[128,0,117,3]],[[4,0,118,2],[5,0,118,2],[6,0,118,2],[7,0,118,2],[8,0,118,2],[9,0,118,2],[10,0,118,8],[11,0,118,8],[12,0,118,8],[13,0,118,8],[14,0,118,8],[15,0,118,8],[16,0,118,8],[17,0,118,8],[18,0,118,16],[19,0,118,16],[20,0,118,16],[21,0,118,19],[22,0,118,19],[23,0,118,19],[24,0,118,19],[25,0,118,19],[26,0,118,19],[27,0,118,19],[28,0,118,19],[29,0,118,27],[30,0,118,28],[31,0,118,28],[32,0,118,28],[33,0,118,28],[34,0,118,28],[35,0,118,28],[36,0,118,34],[37,0,118,34],[38,0,118,34],[39,0,118,34],[40,0,118,34],[41,0,118,39],[42,0,118,40]],[[4,0,120,2],[5,0,120,2],[6,0,120,2],[7,0,120,2],[8,0,120,6],[9,0,120,6],[10,0,120,6],[11,0,120,6],[12,0,120,6],[13,0,120,11],[14,0,120,12],[15,0,120,12],[16,0,120,12],[17,0,120,12],[18,0,120,12],[19,0,120,12],[20,0,120,12],[21,0,120,12],[22,0,120,20],[23,0,120,21],[24,0,120,21],[25,0,120,21],[26,0,120,21],[27,0,120,25],[28,0,120,25],[29,0,120,25],[30,0,120,25],[31,0,120,25],[32,0,120,30],[33,0,120,30],[34,0,120,30],[35,0,120,30],[36,0,120,30],[37,0,120,30],[38,0,120,30],[39,0,120,30],[40,0,120,30],[41,0,120,30],[42,0,120,30],[43,0,120,30],[44,0,120,30],[45,0,120,30],[46,0,120,44],[47,0,120,44],[48,0,120,46]],[[8,0,121,4],[9,0,121,4],[10,0,121,4],[11,0,121,4],[12,0,121,4],[13,0,121,4],[14,0,121,10],[15,0,121,10],[16,0,121,10],[17,0,121,10],[18,0,121,10],[19,0,121,15],[20,0,121,15],[21,0,121,15],[22,0,121,18],[23,0,121,18],[24,0,121,18],[25,0,121,18],[26,0,121,22],[27,0,121,23],[28,0,121,23],[29,0,121,23],[30,0,121,26],[31,0,121,27],[32,0,121,28],[33,0,121,28],[34,0,121,30],[35,0,121,30],[36,0,121,30],[37,0,121,30],[38,0,121,30],[39,0,121,35],[40,0,121,36],[41,0,121,36],[42,0,121,36],[43,0,121,36],[44,0,121,36],[45,0,121,36],[46,0,121,36],[47,0,121,36],[48,0,121,44],[49,0,121,45],[50,0,121,45],[51,0,121,45],[52,0,121,45],[53,0,121,45],[54,0,121,50],[55,0,121,50],[56,0,121,50],[57,0,121,50],[58,0,121,54],[59,0,121,55],[60,0,121,56]],[[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,10],[15,0,122,10],[16,0,122,10],[17,0,122,10],[18,0,122,10],[19,0,122,10],[20,0,122,10],[21,0,122,10],[22,0,122,10],[23,0,122,19],[24,0,122,19],[25,0,122,19],[26,0,122,22],[27,0,122,23],[28,0,122,23],[29,0,122,23],[30,0,122,34],[31,0,122,34],[32,0,122,36],[33,0,122,36],[34,0,122,38],[35,0,122,39],[36,0,122,39],[37,0,122,39],[38,0,122,42],[39,0,122,42],[40,0,122,42],[41,0,122,45],[42,0,122,45],[43,0,122,45],[44,0,122,48],[45,0,122,49],[46,0,122,49],[47,0,122,49],[48,0,122,49],[49,0,122,49],[50,0,122,49],[51,0,122,55],[52,0,122,56],[53,0,122,56],[54,0,122,56],[55,0,122,56],[56,0,122,56],[57,0,122,61],[58,0,122,62]],[[8,0,123,4],[9,0,123,4],[10,0,123,4],[11,0,123,4],[12,0,123,8],[13,0,123,8],[14,0,123,8],[15,0,123,8],[16,0,123,8],[17,0,123,8],[18,0,123,8],[19,0,123,8],[20,0,123,16],[21,0,123,16],[22,0,123,18]],[[12,0,124,6],[13,0,124,6],[14,0,124,6],[15,0,124,6],[16,0,124,6],[17,0,124,6],[18,0,124,6],[19,0,124,13],[20,0,124,13],[21,0,124,13],[22,0,124,16],[23,0,124,17],[24,0,124,17],[25,0,124,17],[26,0,124,17],[27,0,124,17],[28,0,124,17],[29,0,124,17],[30,0,124,24],[31,0,124,25],[32,0,124,25],[33,0,124,25],[34,0,124,25],[35,0,124,25],[36,0,124,25],[37,0,124,25],[38,0,124,25],[39,0,124,25],[40,0,124,25],[41,0,124,25],[42,0,124,25],[43,0,124,25],[44,0,124,25],[45,0,124,25],[46,0,124,25],[47,0,124,25],[48,0,124,25],[49,0,124,25],[50,0,124,44],[51,0,124,44],[52,0,124,46],[53,0,124,47],[54,0,124,48],[55,0,124,48],[56,0,124,50],[57,0,124,51],[58,0,124,51],[59,0,124,51],[60,0,124,51],[61,0,124,51],[62,0,124,51],[63,0,124,51],[64,0,124,51],[65,0,124,51],[66,0,124,60],[67,0,124,61],[68,0,124,62],[69,0,124,63],[70,0,124,64]],[[8,0,125,4]],[[8,0,126,4],[9,0,126,4],[10,0,126,4],[11,0,126,4],[12,0,126,8],[13,0,126,8],[14,0,126,8],[15,0,126,8],[16,0,126,8],[17,0,126,8],[18,0,126,14],[19,0,126,14],[20,0,126,14],[21,0,126,17],[22,0,126,17],[23,0,126,17],[24,0,126,20]],[[8,0,127,4],[9,0,127,4],[10,0,127,4],[11,0,127,4],[12,0,127,4],[13,0,127,9],[14,0,127,9],[15,0,127,9],[16,0,127,9],[17,0,127,9],[18,0,127,9],[19,0,127,15],[20,0,127,15],[21,0,127,17],[22,0,127,17],[23,0,127,17],[24,0,127,17],[25,0,127,21],[26,0,127,21],[27,0,127,21],[28,0,127,21],[29,0,127,21],[30,0,127,21],[31,0,127,21],[32,0,127,21],[33,0,127,29],[34,0,127,29],[35,0,127,31]],[[12,0,128,6],[13,0,128,6],[14,0,128,6],[15,0,128,6],[16,0,128,6],[17,0,128,6],[18,0,128,12],[19,0,128,12],[20,0,128,12],[21,0,128,15],[22,0,128,15],[23,0,128,15],[24,0,128,15],[25,0,128,15],[26,0,128,15],[27,0,128,21],[28,0,128,22],[29,0,128,22],[30,0,128,22],[31,0,128,22],[32,0,128,22],[33,0,128,22],[34,0,128,22],[35,0,128,29],[36,0,128,30],[37,0,128,30],[38,0,128,32],[39,0,128,32],[40,0,128,34],[41,0,128,35],[42,0,128,36],[43,0,128,36],[44,0,128,38],[45,0,128,39],[46,0,128,39],[47,0,128,39],[48,0,128,39],[49,0,128,39],[50,0,128,39],[51,0,128,39],[52,0,128,39],[53,0,128,39],[54,0,128,48],[55,0,128,49],[56,0,128,50],[57,0,128,51],[58,0,128,52]],[[8,0,129,4]],[[8,0,130,4],[9,0,130,4],[10,0,130,4],[11,0,130,4],[12,0,130,4],[13,0,130,4],[14,0,130,4],[15,0,130,11],[16,0,130,11],[17,0,130,11],[18,0,130,11],[19,0,130,11],[20,0,130,11],[21,0,130,17]],[[4,0,131,2]],[[4,0,133,2],[5,0,133,2],[6,0,133,2],[7,0,133,2],[8,0,133,6],[9,0,133,6],[10,0,133,6],[11,0,133,6],[12,0,133,6],[13,0,133,11],[14,0,133,12],[15,0,133,12],[16,0,133,12],[17,0,133,12],[18,0,133,12],[19,0,133,12],[20,0,133,12],[21,0,133,12],[22,0,133,20],[23,0,133,21],[24,0,133,21],[25,0,133,21],[26,0,133,21],[27,0,133,25],[28,0,133,25],[29,0,133,25],[30,0,133,25],[31,0,133,25],[32,0,133,30],[33,0,133,30],[34,0,133,30],[35,0,133,30],[36,0,133,30],[37,0,133,30],[38,0,133,30],[39,0,133,30],[40,0,133,30],[41,0,133,30],[42,0,133,30],[43,0,133,30],[44,0,133,30],[45,0,133,30],[46,0,133,44],[47,0,133,44],[48,0,133,46]],[[8,0,134,4],[9,0,134,4],[10,0,134,4],[11,0,134,4],[12,0,134,4],[13,0,134,4],[14,0,134,10],[15,0,134,10],[16,0,134,10],[17,0,134,10],[18,0,134,10],[19,0,134,15],[20,0,134,15],[21,0,134,15],[22,0,134,18],[23,0,134,18],[24,0,134,18],[25,0,134,18],[26,0,134,18],[27,0,134,23],[28,0,134,24],[29,0,134,24],[30,0,134,24],[31,0,134,24],[32,0,134,24],[33,0,134,24],[34,0,134,24],[35,0,134,24],[36,0,134,32],[37,0,134,33],[38,0,134,33],[39,0,134,33],[40,0,134,33],[41,0,134,33],[42,0,134,38],[43,0,134,39],[44,0,134,39],[45,0,134,39],[46,0,134,39],[47,0,134,39],[48,0,134,39],[49,0,134,39],[50,0,134,46],[51,0,134,47],[52,0,134,47],[53,0,134,47],[54,0,134,47],[55,0,134,47],[56,0,134,52],[57,0,134,52],[58,0,134,54],[59,0,134,54],[60,0,134,56],[61,0,134,57]],[[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,10],[15,0,135,10],[16,0,135,10],[17,0,135,10],[18,0,135,10],[19,0,135,10],[20,0,135,16],[21,0,135,16],[22,0,135,16],[23,0,135,19],[24,0,135,19],[25,0,135,19],[26,0,135,19],[27,0,135,19],[28,0,135,19],[29,0,135,19],[30,0,135,19],[31,0,135,19],[32,0,135,19],[33,0,135,19],[34,0,135,30],[35,0,135,30],[36,0,135,30],[37,0,135,30],[38,0,135,30],[39,0,135,35],[40,0,135,35],[41,0,135,35],[42,0,135,38]],[[8,0,136,4],[9,0,136,4],[10,0,136,4],[11,0,136,4],[12,0,136,8],[13,0,136,8],[14,0,136,8],[15,0,136,8],[16,0,136,8],[17,0,136,8],[18,0,136,8],[19,0,136,8],[20,0,136,16],[21,0,136,16],[22,0,136,18]],[[12,0,137,6],[13,0,137,6],[14,0,137,6],[15,0,137,6],[16,0,137,6],[17,0,137,6],[18,0,137,6],[19,0,137,13],[20,0,137,13],[21,0,137,13],[22,0,137,16],[23,0,137,17],[24,0,137,17],[25,0,137,17],[26,0,137,17],[27,0,137,17],[28,0,137,17],[29,0,137,17],[30,0,137,24],[31,0,137,25],[32,0,137,25],[33,0,137,25],[34,0,137,25],[35,0,137,25],[36,0,137,25],[37,0,137,25],[38,0,137,25],[39,0,137,25],[40,0,137,25],[41,0,137,25],[42,0,137,25],[43,0,137,25],[44,0,137,25],[45,0,137,25],[46,0,137,25],[47,0,137,25],[48,0,137,25],[49,0,137,25],[50,0,137,44],[51,0,137,44],[52,0,137,46],[53,0,137,47],[54,0,137,48],[55,0,137,48],[56,0,137,50],[57,0,137,51],[58,0,137,51],[59,0,137,51],[60,0,137,54],[61,0,137,55],[62,0,137,55],[63,0,137,55],[64,0,137,58],[65,0,137,58],[66,0,137,58],[67,0,137,58],[68,0,137,58],[69,0,137,58],[70,0,137,64],[71,0,137,64],[72,0,137,66],[73,0,137,67]],[[8,0,138,4]],[[8,0,139,4],[9,0,139,4],[10,0,139,4],[11,0,139,4],[12,0,139,8],[13,0,139,8],[14,0,139,8],[15,0,139,8],[16,0,139,8],[17,0,139,8],[18,0,139,14],[19,0,139,14],[20,0,139,14],[21,0,139,17],[22,0,139,17],[23,0,139,17],[24,0,139,20]],[[8,0,140,4],[9,0,140,4],[10,0,140,4],[11,0,140,4],[12,0,140,4],[13,0,140,9],[14,0,140,9],[15,0,140,9],[16,0,140,9],[17,0,140,9],[18,0,140,9],[19,0,140,15],[20,0,140,15],[21,0,140,17],[22,0,140,17],[23,0,140,17],[24,0,140,17],[25,0,140,21],[26,0,140,21],[27,0,140,21],[28,0,140,21],[29,0,140,21],[30,0,140,21],[31,0,140,21],[32,0,140,21],[33,0,140,29],[34,0,140,29],[35,0,140,31]],[[12,0,141,6],[13,0,141,6],[14,0,141,6],[15,0,141,6],[16,0,141,6],[17,0,141,6],[18,0,141,12],[19,0,141,12],[20,0,141,12],[21,0,141,15],[22,0,141,15],[23,0,141,15],[24,0,141,15],[25,0,141,15],[26,0,141,15],[27,0,141,21],[28,0,141,22],[29,0,141,22],[30,0,141,22],[31,0,141,22],[32,0,141,22],[33,0,141,22],[34,0,141,22],[35,0,141,29],[36,0,141,30],[37,0,141,30],[38,0,141,32],[39,0,141,32],[40,0,141,34],[41,0,141,35],[42,0,141,36],[43,0,141,36],[44,0,141,38],[45,0,141,39],[46,0,141,39],[47,0,141,39],[48,0,141,42],[49,0,141,43],[50,0,141,43],[51,0,141,43],[52,0,141,46],[53,0,141,46],[54,0,141,46],[55,0,141,46],[56,0,141,46],[57,0,141,46],[58,0,141,52],[59,0,141,52],[60,0,141,54],[61,0,141,55]],[[8,0,142,4]],[[8,0,143,4],[9,0,143,4],[10,0,143,4],[11,0,143,4],[12,0,143,4],[13,0,143,4],[14,0,143,4],[15,0,143,11],[16,0,143,11],[17,0,143,11],[18,0,143,11],[19,0,143,11],[20,0,143,11],[21,0,143,17]],[[4,0,144,2]],[[4,0,146,2],[5,0,146,2],[6,0,146,2],[7,0,146,2],[8,0,146,2],[9,0,146,2],[10,0,146,2],[11,0,146,9],[12,0,146,9],[13,0,146,9],[14,0,146,12]],[[0,0,147,0]]],"ignoreList":[]}
1
+ {"version":3,"file":"helpers.cjs","names":[],"sources":["../../src/helpers.ts"],"sourcesContent":[null],"mappings":[[],[],[[0,0,16,0],[1,0,16,0],[2,0,16,0],[3,0,16,0],[4,0,16,0],[5,0,16,0],[6,0,16,0],[7,0,16,0],[8,0,16,0],[9,0,16,0],[10,0,16,0],[11,0,16,0],[12,0,16,0],[13,0,16,0],[14,0,16,0],[15,0,16,0],[16,0,16,0],[17,0,16,0],[18,0,16,0],[19,0,16,0],[20,0,16,0],[21,0,16,0],[22,0,16,0],[23,0,16,0],[24,0,16,0],[25,0,16,0],[26,0,16,0],[27,0,16,0],[28,0,16,0],[29,0,16,0],[30,0,16,0],[31,0,16,0],[32,0,16,0],[33,0,16,0],[34,0,16,0],[35,0,16,0],[36,0,16,0],[37,0,16,0],[38,0,16,0],[39,0,16,0],[40,0,16,0],[41,0,16,0],[42,0,16,0],[43,0,16,0],[44,0,16,0],[45,0,16,0],[46,0,16,0],[47,0,16,0],[48,0,16,0],[49,0,16,0],[50,0,16,0],[51,0,16,0],[52,0,16,0],[53,0,16,0],[54,0,16,0],[55,0,16,0],[56,0,16,0],[57,0,16,0]],[[0,0,101,0],[1,0,101,0],[2,0,101,0],[3,0,101,0],[4,0,101,0],[5,0,101,0],[6,0,101,0],[7,0,101,0],[8,0,101,0],[9,0,101,0],[10,0,101,0],[11,0,101,0],[12,0,101,0],[13,0,101,0],[14,0,101,0],[15,0,101,0],[16,0,101,0],[17,0,101,0],[18,0,101,0],[19,0,101,0],[20,0,101,0],[21,0,101,0],[22,0,101,0],[23,0,101,0],[24,0,101,0],[25,0,101,0],[26,0,101,0],[27,0,101,0],[28,0,101,0],[29,0,101,0],[30,0,101,0],[31,0,101,0],[32,0,101,0],[33,0,101,0],[34,0,101,0],[35,0,101,0],[36,0,101,0],[37,0,101,0],[38,0,101,0],[39,0,101,0],[40,0,101,0],[41,0,101,0],[42,0,101,0],[43,0,101,0],[44,0,101,0],[45,0,101,0]],[[0,0,117,0],[1,0,117,0],[2,0,117,0],[3,0,117,0],[4,0,117,0],[5,0,117,0],[6,0,117,0],[7,0,117,0],[8,0,117,0],[9,0,117,0],[10,0,117,0],[11,0,117,0],[12,0,117,0],[13,0,117,0],[14,0,117,0],[15,0,117,0],[16,0,117,0],[17,0,117,0],[18,0,117,0],[19,0,117,0],[20,0,117,0],[21,0,117,0],[22,0,117,0],[23,0,117,0],[24,0,117,0],[25,0,117,0],[26,0,117,0],[27,0,117,0],[28,0,117,0],[29,0,117,0],[30,0,117,0],[31,0,117,0],[32,0,117,0],[33,0,117,0]],[[0,0,121,0],[1,0,121,0],[2,0,121,0],[3,0,121,0],[4,0,121,0],[5,0,121,0],[6,0,121,0],[7,0,121,0],[8,0,121,0],[9,0,121,0],[10,0,121,0],[11,0,121,0],[12,0,121,0],[13,0,121,0],[14,0,121,0],[15,0,121,0],[16,0,121,0],[17,0,121,0],[18,0,121,0],[19,0,121,0],[20,0,121,0],[21,0,121,0],[22,0,121,0],[23,0,121,0],[24,0,121,0],[25,0,121,0],[26,0,121,0],[27,0,121,0],[28,0,121,0],[29,0,121,0],[30,0,121,0],[31,0,121,0],[32,0,121,0],[33,0,121,0],[34,0,121,0],[35,0,121,0],[36,0,121,0],[37,0,121,0],[38,0,121,0],[39,0,121,0],[40,0,121,0],[41,0,121,0],[42,0,121,0],[43,0,121,0],[44,0,121,0],[45,0,121,0]],[[0,0,131,0],[1,0,131,0],[2,0,131,0],[3,0,131,0],[4,0,131,0],[5,0,131,0],[6,0,131,0],[7,0,131,0],[8,0,131,0],[9,0,131,0],[10,0,131,0],[11,0,131,0],[12,0,131,0],[13,0,131,0],[14,0,131,0],[15,0,131,0],[16,0,131,0],[17,0,131,0],[18,0,131,0],[19,0,131,0],[20,0,131,0],[21,0,131,0],[22,0,131,0],[23,0,131,0],[24,0,131,0],[25,0,131,0],[26,0,131,0],[27,0,131,0],[28,0,131,0],[29,0,131,0],[30,0,131,0],[31,0,131,0],[32,0,131,0],[33,0,131,0],[34,0,131,0],[35,0,131,0],[36,0,131,0],[37,0,131,0],[38,0,131,0],[39,0,131,0],[40,0,131,0],[41,0,131,0],[42,0,131,0],[43,0,131,0],[44,0,131,0],[45,0,131,0],[46,0,131,0],[47,0,131,0],[48,0,131,0],[49,0,131,0],[50,0,131,0],[51,0,131,0],[52,0,131,0],[53,0,131,0],[54,0,131,0],[55,0,131,0],[56,0,131,0],[57,0,131,0],[58,0,131,0],[59,0,131,0],[60,0,131,0],[61,0,131,0],[62,0,131,0],[63,0,131,0],[64,0,131,0],[65,0,131,0]],[[0,0,16,0],[1,0,16,0],[2,0,16,0],[3,0,16,0],[4,0,16,0],[5,0,16,0],[6,0,16,0],[7,0,16,0],[8,0,16,0],[9,0,16,16],[10,0,16,16],[11,0,16,16],[12,0,16,16],[13,0,16,16],[14,0,16,16],[15,0,16,16],[16,0,16,16],[17,0,16,16],[18,0,16,16],[19,0,16,16],[20,0,16,16],[21,0,16,16],[22,0,16,16],[23,0,16,16],[24,0,16,16],[25,0,16,16],[26,0,16,16],[27,0,16,16],[28,0,16,16],[29,0,16,16],[30,0,16,16],[31,0,16,16],[32,0,16,39],[33,0,16,40],[34,0,16,40],[35,0,16,40],[36,0,16,40],[37,0,16,40],[38,0,20,1],[39,0,20,1],[40,0,20,1]],[[4,0,21,2],[5,0,21,2],[6,0,21,2],[7,0,21,2],[8,0,21,6],[9,0,21,7],[10,0,21,7],[11,0,21,7],[12,0,21,7],[13,0,21,7],[14,0,21,12]],[[8,0,21,14],[9,0,21,14],[10,0,21,14],[11,0,21,14],[12,0,21,14],[13,0,21,14],[14,0,21,14],[15,0,21,21],[16,0,21,21],[17,0,21,21],[18,0,21,21],[19,0,21,21],[20,0,21,21],[21,0,21,21],[22,0,21,21],[23,0,21,21],[24,0,21,30]],[[4,0,22,2],[5,0,22,2],[6,0,22,2],[7,0,22,2],[8,0,22,6],[9,0,22,6],[10,0,22,6],[11,0,22,6],[12,0,22,6],[13,0,22,11],[14,0,22,12],[15,0,22,12],[16,0,22,12],[17,0,22,12],[18,0,22,12],[19,0,22,12],[20,0,22,12],[21,0,22,19]],[[8,0,22,21],[9,0,22,21],[10,0,22,21],[11,0,22,21],[12,0,22,21],[13,0,22,21],[14,0,22,21],[15,0,22,28],[16,0,22,28],[17,0,22,28],[18,0,22,28],[19,0,22,28],[20,0,22,33],[21,0,22,34],[22,0,22,34],[23,0,22,34],[24,0,22,34],[25,0,22,34],[26,0,22,34],[27,0,22,34],[28,0,22,41]],[[4,0,23,2],[5,0,23,2],[6,0,23,2],[7,0,23,2],[8,0,23,6],[9,0,23,7],[10,0,23,7],[11,0,23,7],[12,0,23,7],[13,0,23,7],[14,0,23,12],[15,0,23,13],[16,0,23,13],[17,0,23,13],[18,0,23,13],[19,0,23,13],[20,0,23,13],[21,0,23,13],[22,0,23,13],[23,0,23,21]],[[8,0,23,23],[9,0,23,23],[10,0,23,23],[11,0,23,23],[12,0,23,23],[13,0,23,23],[14,0,23,23],[15,0,23,30],[16,0,23,30],[17,0,23,30],[18,0,23,30],[19,0,23,30],[20,0,23,30],[21,0,23,30],[22,0,23,30],[23,0,23,30],[24,0,23,39]],[[4,0,25,2],[5,0,25,2],[6,0,25,2],[7,0,25,2],[8,0,25,2],[9,0,25,2],[10,0,25,8],[11,0,25,8],[12,0,25,8],[13,0,25,8],[14,0,25,8],[15,0,25,8],[16,0,25,8],[17,0,25,8],[18,0,25,16],[19,0,25,16],[20,0,25,16],[21,0,25,19],[22,0,25,20],[23,0,25,20],[24,0,25,20],[25,0,25,20],[26,0,25,20],[27,0,25,25],[28,0,25,26],[29,0,25,26],[30,0,25,26],[31,0,25,26],[32,0,25,26],[33,0,25,31],[34,0,25,31],[35,0,25,31],[36,0,25,31],[37,0,25,35],[38,0,25,35],[39,0,25,37],[40,0,25,38],[41,0,25,39],[42,0,25,39],[43,0,25,39],[44,0,25,42],[45,0,25,43],[46,0,25,44],[47,0,25,45],[48,0,25,45],[49,0,25,47],[50,0,26,4],[51,0,26,4],[52,0,26,4],[53,0,26,4],[54,0,26,4],[55,0,26,4],[56,0,26,4],[57,0,26,11],[58,0,26,12],[59,0,26,12],[60,0,26,12],[61,0,26,12],[62,0,26,12],[63,0,26,17],[64,0,26,17],[65,0,26,17],[66,0,26,17],[67,0,26,17],[68,0,26,17],[69,0,26,17],[70,0,26,17],[71,0,26,25],[72,0,26,26],[73,0,26,27],[74,0,26,28],[75,0,26,28],[76,0,26,28],[77,0,26,28],[78,0,26,32],[79,0,26,32],[80,0,26,32],[81,0,26,32],[82,0,26,32],[83,0,26,32],[84,0,26,38],[85,0,26,39],[86,0,26,39],[87,0,26,39],[88,0,26,39],[89,0,26,43],[90,0,26,43],[91,0,26,43],[92,0,26,43],[93,0,26,43],[94,0,26,43],[95,0,26,43],[96,0,26,43],[97,0,26,43],[98,0,26,43],[99,0,26,43],[100,0,26,54],[101,0,26,55],[102,0,26,56],[103,0,26,57],[104,0,26,57],[105,0,26,57],[106,0,26,60],[107,0,26,61],[108,0,26,62],[109,0,26,63],[110,0,26,64],[111,0,26,65],[112,0,27,3]],[[4,0,28,2],[5,0,28,2],[6,0,28,2],[7,0,28,2],[8,0,28,2],[9,0,28,2],[10,0,28,8],[11,0,28,8],[12,0,28,8],[13,0,28,8],[14,0,28,8],[15,0,28,8],[16,0,28,8],[17,0,28,8],[18,0,28,8],[19,0,28,8],[20,0,28,8],[21,0,28,19],[22,0,28,19],[23,0,28,19],[24,0,28,22],[25,0,28,23],[26,0,28,23],[27,0,28,23],[28,0,28,23],[29,0,28,23],[30,0,28,23],[31,0,28,23],[32,0,28,23],[33,0,28,23],[34,0,28,23],[35,0,28,23],[36,0,28,42],[37,0,28,42],[38,0,28,53],[39,0,28,53],[40,0,28,55],[41,0,29,4],[42,0,29,4],[43,0,29,4],[44,0,29,4],[45,0,29,4],[46,0,29,4],[47,0,29,4],[48,0,29,4],[49,0,29,12],[50,0,29,13],[51,0,29,13],[52,0,29,13],[53,0,29,13],[54,0,29,13],[55,0,29,13],[56,0,29,19],[57,0,29,19],[58,0,29,19],[59,0,29,19],[60,0,29,19],[61,0,29,24],[62,0,29,25],[63,0,29,26],[64,0,29,27],[65,0,29,28],[66,0,29,28],[67,0,29,28],[68,0,29,28],[69,0,29,32],[70,0,29,33],[71,0,29,34],[72,0,29,35],[73,0,29,35],[74,0,29,35],[75,0,29,35],[76,0,29,35],[77,0,29,35],[78,0,29,35],[79,0,29,35],[80,0,29,43],[81,0,29,44],[82,0,29,44],[83,0,29,44],[84,0,29,44],[85,0,29,48],[86,0,29,49],[87,0,29,49],[88,0,29,51],[89,0,29,52],[90,0,29,52],[91,0,29,54],[92,0,29,55],[93,0,29,55],[94,0,29,57],[95,0,29,58],[96,0,29,58],[97,0,29,58],[98,0,29,58],[99,0,29,62],[100,0,29,63],[101,0,29,63],[102,0,29,63],[103,0,29,63],[104,0,29,63],[105,0,29,63],[106,0,29,63],[107,0,29,63],[108,0,29,63],[109,0,29,63],[110,0,29,63],[111,0,29,74],[112,0,29,75],[113,0,29,76]],[[4,0,31,2],[5,0,31,2],[6,0,31,2],[7,0,31,2],[8,0,31,6],[9,0,31,6],[10,0,31,6],[11,0,31,6],[12,0,31,6],[13,0,31,11],[14,0,31,12],[15,0,31,12],[16,0,31,12],[17,0,31,12],[18,0,31,12],[19,0,31,12],[20,0,31,12],[21,0,31,12],[22,0,31,20],[23,0,31,21],[24,0,31,21],[25,0,31,21],[26,0,31,21],[27,0,31,25],[28,0,31,25],[29,0,31,25],[30,0,31,25],[31,0,31,25],[32,0,31,30],[33,0,31,30],[34,0,31,30],[35,0,31,30],[36,0,31,30],[37,0,31,30],[38,0,31,30],[39,0,31,30],[40,0,31,30],[41,0,31,30],[42,0,31,30],[43,0,31,30],[44,0,31,30],[45,0,31,30],[46,0,31,44],[47,0,31,44],[48,0,31,46]],[[8,0,32,4],[9,0,32,4],[10,0,32,4],[11,0,32,4],[12,0,32,4],[13,0,32,4],[14,0,32,10],[15,0,32,10],[16,0,32,10],[17,0,32,10],[18,0,32,10],[19,0,32,15],[20,0,32,15],[21,0,32,15],[22,0,32,18],[23,0,32,18],[24,0,32,18],[25,0,32,18],[26,0,32,22],[27,0,32,23],[28,0,32,23],[29,0,32,23],[30,0,32,26],[31,0,32,27],[32,0,32,28],[33,0,32,28],[34,0,32,30],[35,0,32,30],[36,0,32,30],[37,0,32,30],[38,0,32,30],[39,0,32,35],[40,0,32,36],[41,0,32,36],[42,0,32,36],[43,0,32,36],[44,0,32,36],[45,0,32,36],[46,0,32,36],[47,0,32,36],[48,0,32,44],[49,0,32,45],[50,0,32,45],[51,0,32,45],[52,0,32,45],[53,0,32,45],[54,0,32,50],[55,0,32,50],[56,0,32,50],[57,0,32,50],[58,0,32,54],[59,0,32,55],[60,0,32,56]],[[8,0,33,4],[9,0,33,4],[10,0,33,4],[11,0,33,4],[12,0,33,4],[13,0,33,4],[14,0,33,10],[15,0,33,10],[16,0,33,10],[17,0,33,10],[18,0,33,10],[19,0,33,10],[20,0,33,10],[21,0,33,17],[22,0,33,17],[23,0,33,17],[24,0,33,38]],[[12,0,34,6],[13,0,34,6],[14,0,34,6],[15,0,34,6],[16,0,34,10],[17,0,34,10],[18,0,34,12]],[[16,0,35,8],[17,0,35,8],[18,0,35,8],[19,0,35,8],[20,0,35,8],[21,0,35,13],[22,0,35,14],[23,0,35,14],[24,0,35,14],[25,0,35,14],[26,0,35,38],[27,0,35,38],[28,0,35,38]],[[20,0,36,10],[21,0,36,10],[22,0,36,10],[23,0,36,10],[24,0,36,10],[25,0,36,10],[26,0,36,16],[27,0,36,16],[28,0,36,16],[29,0,36,16],[30,0,36,16],[31,0,36,16],[32,0,36,16],[33,0,36,16],[34,0,36,16],[35,0,36,25],[36,0,36,25],[37,0,36,25],[38,0,36,28],[39,0,36,28],[40,0,36,28],[41,0,36,28],[42,0,36,78]],[[20,0,37,10],[21,0,37,10],[22,0,37,10],[23,0,37,10],[24,0,37,14],[25,0,37,15],[26,0,37,15],[27,0,37,15],[28,0,37,15],[29,0,37,15],[30,0,37,15],[31,0,37,15],[32,0,37,15],[33,0,37,15],[34,0,37,24],[35,0,37,24],[36,0,37,24],[37,0,37,24],[38,0,37,28],[39,0,37,29],[40,0,37,29],[41,0,37,29],[42,0,37,29],[43,0,37,29],[44,0,37,34],[45,0,37,35],[46,0,37,35],[47,0,37,35],[48,0,37,35],[49,0,37,35],[50,0,37,35],[51,0,37,35],[52,0,37,42],[53,0,37,43],[54,0,37,43],[55,0,37,43],[56,0,37,43],[57,0,37,43],[58,0,37,43],[59,0,37,43],[60,0,37,43],[61,0,37,43],[62,0,37,52],[63,0,37,53],[64,0,37,53],[65,0,37,53],[66,0,37,53],[67,0,37,53],[68,0,37,53],[69,0,37,53],[70,0,37,53],[71,0,37,53],[72,0,37,62],[73,0,37,63],[74,0,37,63],[75,0,37,65]],[[24,0,38,12],[25,0,38,12],[26,0,38,12],[27,0,38,12],[28,0,38,12],[29,0,38,12],[30,0,38,12],[31,0,38,19],[32,0,38,19],[33,0,38,19],[34,0,38,19],[35,0,38,51]],[[20,0,39,10]],[[20,0,40,10],[21,0,40,10],[22,0,40,10],[23,0,40,10],[24,0,40,10],[25,0,40,10],[26,0,40,16],[27,0,40,16],[28,0,40,16],[29,0,40,16],[30,0,40,16],[31,0,40,16],[32,0,40,16],[33,0,40,16],[34,0,40,16],[35,0,40,16],[36,0,40,16],[37,0,40,16],[38,0,40,28],[39,0,40,28],[40,0,40,28],[41,0,40,31],[42,0,40,31],[43,0,40,31],[44,0,40,31],[45,0,40,31],[46,0,40,31],[47,0,40,31],[48,0,40,31],[49,0,40,31],[50,0,40,40],[51,0,40,41],[52,0,40,41],[53,0,40,41],[54,0,40,41],[55,0,40,41],[56,0,40,41],[57,0,40,41],[58,0,40,41],[59,0,40,41],[60,0,40,50],[61,0,40,51],[62,0,40,51],[63,0,40,51],[64,0,40,54],[65,0,40,55],[66,0,40,56],[67,0,40,56],[68,0,40,56],[69,0,40,68],[70,0,40,68],[71,0,40,70],[72,0,40,70],[73,0,40,72],[74,0,40,72]],[[24,0,41,12],[25,0,41,12],[26,0,41,12],[27,0,41,12],[28,0,41,16],[29,0,41,17],[30,0,41,17],[31,0,41,17],[32,0,41,17],[33,0,41,17],[34,0,41,22],[35,0,41,23],[36,0,41,23],[37,0,41,23],[38,0,41,23],[39,0,41,23],[40,0,41,23],[41,0,41,23],[42,0,41,30],[43,0,41,31],[44,0,41,31],[45,0,41,31],[46,0,41,34],[47,0,41,35]],[[28,0,41,37],[29,0,41,37],[30,0,41,37],[31,0,41,37],[32,0,41,37],[33,0,41,37],[34,0,41,37],[35,0,41,44],[36,0,41,44],[37,0,41,44],[38,0,41,47]],[[24,0,42,12],[25,0,42,12],[26,0,42,12],[27,0,42,12],[28,0,42,12],[29,0,42,12],[30,0,42,18],[31,0,42,18],[32,0,42,18],[33,0,42,18],[34,0,42,18],[35,0,42,18],[36,0,42,18],[37,0,42,18],[38,0,42,18],[39,0,42,18],[40,0,42,18],[41,0,42,29],[42,0,42,29],[43,0,42,29],[44,0,42,32],[45,0,42,32],[46,0,42,32],[47,0,42,32],[48,0,42,32],[49,0,42,32],[50,0,42,32],[51,0,42,32],[52,0,42,32],[53,0,42,32],[54,0,42,32],[55,0,42,32],[56,0,42,32],[57,0,42,32],[58,0,42,32],[59,0,42,32],[60,0,42,32],[61,0,42,49],[62,0,43,14],[63,0,43,14],[64,0,43,14],[65,0,43,60],[66,0,44,13]],[[24,0,45,12],[25,0,45,12],[26,0,45,12],[27,0,45,12],[28,0,45,16],[29,0,45,17],[30,0,45,17],[31,0,45,17],[32,0,45,17],[33,0,45,17],[34,0,45,17],[35,0,45,17],[36,0,45,17],[37,0,45,17],[38,0,45,17],[39,0,45,17],[40,0,45,28],[41,0,45,29],[42,0,45,29],[43,0,45,29],[44,0,45,29],[45,0,45,29],[46,0,45,29],[47,0,45,29],[48,0,45,29],[49,0,45,29],[50,0,45,29],[51,0,45,29],[52,0,45,40],[53,0,45,41]],[[28,0,45,43],[29,0,45,43],[30,0,45,43],[31,0,45,43],[32,0,45,43],[33,0,45,43],[34,0,45,43],[35,0,45,50],[36,0,45,50],[37,0,45,50],[38,0,45,53]],[[24,0,46,12],[25,0,46,12],[26,0,46,12],[27,0,46,12],[28,0,46,12],[29,0,46,12],[30,0,46,18],[31,0,46,18],[32,0,46,18],[33,0,46,18],[34,0,46,18],[35,0,46,18],[36,0,46,18],[37,0,46,18],[38,0,46,18],[39,0,46,18],[40,0,46,18],[41,0,46,18],[42,0,46,18],[43,0,46,31],[44,0,46,31],[45,0,46,31],[46,0,46,34],[47,0,46,34],[48,0,46,34],[49,0,46,34],[50,0,46,34],[51,0,46,34],[52,0,46,34],[53,0,46,34],[54,0,46,34],[55,0,46,34],[56,0,46,34],[57,0,46,34],[58,0,46,34],[59,0,46,34],[60,0,46,34],[61,0,46,34],[62,0,46,34],[63,0,46,51],[64,0,46,52],[65,0,46,52],[66,0,46,52],[67,0,46,52],[68,0,46,52],[69,0,46,52],[70,0,46,52],[71,0,46,52],[72,0,46,52],[73,0,46,52],[74,0,46,52],[75,0,46,63],[76,0,46,64]],[[24,0,47,12],[25,0,47,12],[26,0,47,12],[27,0,47,12],[28,0,47,16],[29,0,47,17],[30,0,47,17],[31,0,47,17],[32,0,47,17],[33,0,47,17],[34,0,47,17],[35,0,47,17],[36,0,47,17],[37,0,47,17],[38,0,47,17],[39,0,47,17],[40,0,47,17],[41,0,47,17],[42,0,47,30]],[[28,0,47,32],[29,0,47,32],[30,0,47,32],[31,0,47,32],[32,0,47,32],[33,0,47,32],[34,0,47,32],[35,0,47,39],[36,0,47,39],[37,0,47,39],[38,0,47,42]],[[24,0,48,12],[25,0,48,12],[26,0,48,12],[27,0,48,12],[28,0,48,12],[29,0,48,12],[30,0,48,18],[31,0,48,18],[32,0,48,18],[33,0,48,18],[34,0,48,18],[35,0,48,18],[36,0,48,18],[37,0,48,25],[38,0,48,25],[39,0,48,25],[40,0,48,28],[41,0,48,28],[42,0,48,28],[43,0,48,28],[44,0,48,28],[45,0,48,33],[46,0,48,34],[47,0,48,34],[48,0,48,34],[49,0,48,34],[50,0,48,38],[51,0,48,39],[52,0,48,39],[53,0,48,41],[54,0,48,41],[55,0,48,41],[56,0,48,41],[57,0,48,41],[58,0,48,41],[59,0,48,47],[60,0,48,47],[61,0,48,49],[62,0,48,49],[63,0,48,49],[64,0,48,49],[65,0,48,49],[66,0,48,54],[67,0,48,54],[68,0,48,56],[69,0,48,56],[70,0,48,58],[71,0,48,58],[72,0,48,58],[73,0,48,61],[74,0,48,61],[75,0,48,63],[76,0,48,64],[77,0,48,65]],[[28,0,49,14],[29,0,49,14],[30,0,49,14],[31,0,49,14],[32,0,49,18],[33,0,49,18],[34,0,49,20],[35,0,49,20],[36,0,49,20],[37,0,49,20],[38,0,49,20],[39,0,49,20],[40,0,49,20],[41,0,49,27]],[[28,0,50,14],[29,0,50,14],[30,0,50,14],[31,0,50,14],[32,0,50,14],[33,0,50,19],[34,0,50,19],[35,0,50,21],[36,0,50,21],[37,0,50,21],[38,0,50,21],[39,0,50,21],[40,0,50,21],[41,0,50,21],[42,0,50,21],[43,0,50,21],[44,0,50,21],[45,0,50,21],[46,0,50,21],[47,0,50,21],[48,0,50,34]],[[25,0,51,13],[26,0,51,14],[27,0,51,15]],[[24,0,52,12],[25,0,52,12],[26,0,52,12],[27,0,52,12],[28,0,52,12],[29,0,52,12],[30,0,52,12],[31,0,52,19],[32,0,52,20],[33,0,52,20],[34,0,52,20],[35,0,52,23],[36,0,52,23],[37,0,52,23],[38,0,52,26],[39,0,52,26],[40,0,52,28],[41,0,52,28],[42,0,52,28],[43,0,52,31],[44,0,52,31],[45,0,52,31],[46,0,52,31],[47,0,52,31],[48,0,52,31],[49,0,52,31],[50,0,52,38],[51,0,52,39]],[[20,0,53,10],[21,0,53,11],[22,0,53,12]],[[20,0,54,10],[21,0,54,10],[22,0,54,10],[23,0,54,10],[24,0,54,10],[25,0,54,10],[26,0,54,10],[27,0,54,17]],[[24,0,55,12],[25,0,55,12],[26,0,55,12],[27,0,55,15],[28,0,55,15],[29,0,55,15],[30,0,55,15],[31,0,55,15],[32,0,55,15],[33,0,55,15],[34,0,55,15],[35,0,55,15],[36,0,55,24]],[[24,0,56,12],[25,0,56,12],[26,0,56,12],[27,0,56,12],[28,0,56,12],[29,0,56,12],[30,0,56,12],[31,0,56,12],[32,0,56,12],[33,0,56,21],[34,0,56,21],[35,0,56,23],[36,0,56,23],[37,0,56,23],[38,0,56,23],[39,0,56,23],[40,0,56,23],[41,0,56,23],[42,0,56,23],[43,0,56,23],[44,0,56,23],[45,0,56,23],[46,0,56,23],[47,0,56,35]],[[21,0,57,50]],[[16,0,58,8],[17,0,58,9]],[[13,0,59,7]],[[9,0,60,5]],[[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,4],[15,0,61,11],[16,0,61,11],[17,0,61,11],[18,0,61,11],[19,0,61,11],[20,0,61,11],[21,0,61,11],[22,0,61,18]],[[4,0,62,2]],[[4,0,64,2],[5,0,64,2],[6,0,64,2],[7,0,64,2],[8,0,64,6],[9,0,64,6],[10,0,64,6],[11,0,64,6],[12,0,64,6],[13,0,64,11],[14,0,64,12],[15,0,64,12],[16,0,64,12],[17,0,64,12],[18,0,64,12],[19,0,64,12],[20,0,64,12],[21,0,64,12],[22,0,64,20],[23,0,64,21],[24,0,64,21],[25,0,64,21],[26,0,64,21],[27,0,64,25],[28,0,64,25],[29,0,64,25],[30,0,64,25],[31,0,64,25],[32,0,64,30],[33,0,64,30],[34,0,64,30],[35,0,64,30],[36,0,64,30],[37,0,64,30],[38,0,64,30],[39,0,64,30],[40,0,64,30],[41,0,64,30],[42,0,64,30],[43,0,64,30],[44,0,64,30],[45,0,64,30],[46,0,64,44],[47,0,64,44],[48,0,64,46]],[[8,0,65,4],[9,0,65,4],[10,0,65,4],[11,0,65,4],[12,0,65,4],[13,0,65,4],[14,0,65,10],[15,0,65,10],[16,0,65,10],[17,0,65,10],[18,0,65,10],[19,0,65,15],[20,0,65,15],[21,0,65,15],[22,0,65,18],[23,0,65,18],[24,0,65,18],[25,0,65,18],[26,0,65,18],[27,0,65,23],[28,0,65,24],[29,0,65,24],[30,0,65,24],[31,0,65,24],[32,0,65,24],[33,0,65,24],[34,0,65,24],[35,0,65,24],[36,0,65,32],[37,0,65,33],[38,0,65,33],[39,0,65,33],[40,0,65,33],[41,0,65,33],[42,0,65,38]],[[8,0,66,4],[9,0,66,4],[10,0,66,4],[11,0,66,4],[12,0,66,4],[13,0,66,4],[14,0,66,10],[15,0,66,10],[16,0,66,10],[17,0,66,10],[18,0,66,10],[19,0,66,10],[20,0,66,10],[21,0,66,17],[22,0,66,17],[23,0,66,17],[24,0,66,65]],[[12,0,67,6],[13,0,67,6],[14,0,67,6],[15,0,67,6],[16,0,67,10],[17,0,67,10],[18,0,67,12]],[[16,0,68,8],[17,0,68,8],[18,0,68,8],[19,0,68,8],[20,0,68,8],[21,0,68,13],[22,0,68,14],[23,0,68,14],[24,0,68,14],[25,0,68,14],[26,0,68,38],[27,0,68,38],[28,0,68,38]],[[20,0,69,10],[21,0,69,10],[22,0,69,10],[23,0,69,10],[24,0,69,10],[25,0,69,10],[26,0,69,16],[27,0,69,16],[28,0,69,16],[29,0,69,16],[30,0,69,16],[31,0,69,16],[32,0,69,16],[33,0,69,16],[34,0,69,16],[35,0,69,25],[36,0,69,25],[37,0,69,25],[38,0,69,28],[39,0,69,28],[40,0,69,28],[41,0,69,28],[42,0,69,78]],[[20,0,70,10],[21,0,70,10],[22,0,70,10],[23,0,70,10],[24,0,70,14],[25,0,70,15],[26,0,70,15],[27,0,70,15],[28,0,70,15],[29,0,70,15],[30,0,70,15],[31,0,70,15],[32,0,70,15],[33,0,70,15],[34,0,70,24],[35,0,70,24],[36,0,70,24],[37,0,70,24],[38,0,70,28],[39,0,70,29],[40,0,70,29],[41,0,70,29],[42,0,70,29],[43,0,70,29],[44,0,70,34],[45,0,70,35],[46,0,70,35],[47,0,70,35],[48,0,70,35],[49,0,70,35],[50,0,70,35],[51,0,70,35],[52,0,70,42],[53,0,70,43],[54,0,70,43],[55,0,70,43],[56,0,70,43],[57,0,70,43],[58,0,70,43],[59,0,70,43],[60,0,70,43],[61,0,70,43],[62,0,70,52],[63,0,70,53],[64,0,70,53],[65,0,70,53],[66,0,70,53],[67,0,70,53],[68,0,70,53],[69,0,70,53],[70,0,70,53],[71,0,70,53],[72,0,70,62],[73,0,70,63],[74,0,70,63],[75,0,70,65]],[[24,0,71,12],[25,0,71,12],[26,0,71,12],[27,0,71,12],[28,0,71,12],[29,0,71,12],[30,0,71,12],[31,0,71,19],[32,0,71,19],[33,0,71,19],[34,0,71,19],[35,0,71,51]],[[20,0,72,10]],[[20,0,73,10],[21,0,73,10],[22,0,73,10],[23,0,73,10],[24,0,73,10],[25,0,73,10],[26,0,73,16],[27,0,73,16],[28,0,73,16],[29,0,73,16],[30,0,73,16],[31,0,73,16],[32,0,73,16],[33,0,73,16],[34,0,73,16],[35,0,73,16],[36,0,73,16],[37,0,73,16],[38,0,73,28],[39,0,73,28],[40,0,73,28],[41,0,73,31],[42,0,73,31],[43,0,73,31],[44,0,73,31],[45,0,73,31],[46,0,73,31],[47,0,73,31],[48,0,73,31],[49,0,73,31],[50,0,73,40],[51,0,73,41],[52,0,73,41],[53,0,73,41],[54,0,73,41],[55,0,73,41],[56,0,73,41],[57,0,73,41],[58,0,73,41],[59,0,73,41],[60,0,73,50],[61,0,73,51],[62,0,73,51],[63,0,73,51],[64,0,73,54],[65,0,73,55],[66,0,73,56],[67,0,73,56],[68,0,73,56],[69,0,73,68],[70,0,73,68],[71,0,73,70],[72,0,73,70],[73,0,73,72],[74,0,73,72]],[[24,0,74,12],[25,0,74,12],[26,0,74,12],[27,0,74,12],[28,0,74,16],[29,0,74,17],[30,0,74,17],[31,0,74,17],[32,0,74,17],[33,0,74,17],[34,0,74,22],[35,0,74,23],[36,0,74,23],[37,0,74,23],[38,0,74,23],[39,0,74,23],[40,0,74,23],[41,0,74,23],[42,0,74,30],[43,0,74,31],[44,0,74,31],[45,0,74,31],[46,0,74,34],[47,0,74,35]],[[28,0,74,37],[29,0,74,37],[30,0,74,37],[31,0,74,37],[32,0,74,37],[33,0,74,37],[34,0,74,37],[35,0,74,44],[36,0,74,44],[37,0,74,44],[38,0,74,47]],[[24,0,75,12],[25,0,75,12],[26,0,75,12],[27,0,75,12],[28,0,75,12],[29,0,75,12],[30,0,75,18],[31,0,75,18],[32,0,75,18],[33,0,75,18],[34,0,75,18],[35,0,75,18],[36,0,75,18],[37,0,75,18],[38,0,75,18],[39,0,75,18],[40,0,75,18],[41,0,75,29],[42,0,75,29],[43,0,75,29],[44,0,75,32],[45,0,75,32],[46,0,75,32],[47,0,75,32],[48,0,75,32],[49,0,75,32],[50,0,75,32],[51,0,75,32],[52,0,75,32],[53,0,75,32],[54,0,75,32],[55,0,75,32],[56,0,75,32],[57,0,75,32],[58,0,75,32],[59,0,75,32],[60,0,75,32],[61,0,75,49],[62,0,76,14],[63,0,76,14],[64,0,76,14],[65,0,76,60],[66,0,77,13]],[[24,0,78,12],[25,0,78,12],[26,0,78,12],[27,0,78,12],[28,0,78,16],[29,0,78,17],[30,0,78,17],[31,0,78,17],[32,0,78,17],[33,0,78,17],[34,0,78,17],[35,0,78,17],[36,0,78,17],[37,0,78,17],[38,0,78,17],[39,0,78,17],[40,0,78,28],[41,0,78,29],[42,0,78,29],[43,0,78,29],[44,0,78,29],[45,0,78,29],[46,0,78,29],[47,0,78,29],[48,0,78,29],[49,0,78,29],[50,0,78,29],[51,0,78,29],[52,0,78,40],[53,0,78,41]],[[28,0,78,43],[29,0,78,43],[30,0,78,43],[31,0,78,43],[32,0,78,43],[33,0,78,43],[34,0,78,43],[35,0,78,50],[36,0,78,50],[37,0,78,50],[38,0,78,53]],[[24,0,79,12],[25,0,79,12],[26,0,79,12],[27,0,79,12],[28,0,79,12],[29,0,79,12],[30,0,79,12],[31,0,79,19]],[[28,0,80,14],[29,0,80,14],[30,0,80,14],[31,0,80,17],[32,0,80,17],[33,0,80,17],[34,0,80,20]],[[28,0,81,14]],[[32,0,82,16],[33,0,82,16],[34,0,82,16],[35,0,82,16],[36,0,82,20],[37,0,82,20],[38,0,82,22],[39,0,82,22],[40,0,82,22],[41,0,82,22],[42,0,82,22],[43,0,82,22],[44,0,82,22],[45,0,82,22],[46,0,82,22],[47,0,82,22],[48,0,82,22],[49,0,82,22],[50,0,82,22],[51,0,82,22],[52,0,82,36]],[[32,0,83,16],[33,0,83,16],[34,0,83,16],[35,0,83,16],[36,0,83,20],[37,0,83,20],[38,0,83,22],[39,0,83,22],[40,0,83,22],[41,0,83,22],[42,0,83,22],[43,0,83,22],[44,0,83,22],[45,0,83,29]],[[32,0,84,16],[33,0,84,16],[34,0,84,16],[35,0,84,16],[36,0,84,16],[37,0,84,16],[38,0,84,16],[39,0,84,16],[40,0,84,16],[41,0,84,25],[42,0,84,25],[43,0,84,27],[44,0,84,28],[45,0,84,29],[46,0,84,29],[47,0,84,31],[48,0,84,31],[49,0,84,31],[50,0,84,31],[51,0,84,35],[52,0,84,35],[53,0,84,37],[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,44],[61,0,84,44],[62,0,84,46],[63,0,84,46],[64,0,84,46],[65,0,84,46],[66,0,84,46],[67,0,84,51],[68,0,84,51],[69,0,84,53],[70,0,84,53],[71,0,84,53],[72,0,84,53],[73,0,84,53],[74,0,84,58],[75,0,84,59],[76,0,84,59],[77,0,84,59],[78,0,84,59],[79,0,84,59],[80,0,84,59],[81,0,84,59],[82,0,84,66],[83,0,84,67],[84,0,84,67],[85,0,84,67],[86,0,84,67],[87,0,84,67],[88,0,84,72],[89,0,84,72],[90,0,84,74],[91,0,84,74],[92,0,84,76],[93,0,84,77],[94,0,84,77],[95,0,84,79],[96,0,84,80],[97,0,84,81]],[[29,0,85,15]],[[25,0,86,13]],[[20,0,87,10],[21,0,87,11],[22,0,87,12]],[[20,0,88,10],[21,0,88,10],[22,0,88,10],[23,0,88,10],[24,0,88,10],[25,0,88,10],[26,0,88,10],[27,0,88,17]],[[24,0,89,12],[25,0,89,12],[26,0,89,12],[27,0,89,15],[28,0,89,15],[29,0,89,15],[30,0,89,15],[31,0,89,15],[32,0,89,15],[33,0,89,15],[34,0,89,15],[35,0,89,15],[36,0,89,24]],[[24,0,90,12],[25,0,90,12],[26,0,90,12],[27,0,90,12],[28,0,90,12],[29,0,90,12],[30,0,90,12],[31,0,90,12],[32,0,90,12],[33,0,90,21],[34,0,90,21],[35,0,90,23],[36,0,90,23],[37,0,90,23],[38,0,90,23],[39,0,90,23],[40,0,90,23],[41,0,90,23],[42,0,90,23],[43,0,90,23],[44,0,90,23],[45,0,90,23],[46,0,90,23],[47,0,90,35]],[[21,0,91,50]],[[16,0,92,8],[17,0,92,9]],[[13,0,93,7]],[[9,0,94,5]],[[8,0,95,4],[9,0,95,4],[10,0,95,4],[11,0,95,4],[12,0,95,4],[13,0,95,4],[14,0,95,4],[15,0,95,11],[16,0,95,11],[17,0,95,11],[18,0,95,11],[19,0,95,11],[20,0,95,11],[21,0,95,11],[22,0,95,18]],[[4,0,96,2]],[[4,0,98,2],[5,0,98,2],[6,0,98,2],[7,0,98,2],[8,0,98,2],[9,0,98,2],[10,0,98,2],[11,0,98,9],[12,0,98,9],[13,0,98,9],[14,0,98,9],[15,0,98,9],[16,0,98,9],[17,0,98,9],[18,0,98,9],[19,0,98,9],[20,0,98,18]],[[0,0,99,0]],[[0,0,101,0],[1,0,101,0],[2,0,101,0],[3,0,101,0],[4,0,101,0],[5,0,101,0],[6,0,101,0],[7,0,101,0],[8,0,101,0],[9,0,101,16],[10,0,101,16],[11,0,101,16],[12,0,101,16],[13,0,101,16],[14,0,101,16],[15,0,101,16],[16,0,101,16],[17,0,101,16],[18,0,101,16],[19,0,101,16],[20,0,101,16],[21,0,101,16],[22,0,101,16],[23,0,101,16],[24,0,101,16],[25,0,101,16],[26,0,101,33],[27,0,102,2],[28,0,102,2],[29,0,102,2],[30,0,102,76],[31,0,102,76],[32,0,102,76]],[[4,0,104,2],[5,0,104,2],[6,0,104,2],[7,0,104,2],[8,0,104,2],[9,0,104,2],[10,0,104,2],[11,0,104,9],[12,0,104,9],[13,0,104,9]],[[9,0,105,5],[10,0,105,5],[11,0,105,5],[12,0,105,8],[13,0,105,9],[14,0,105,9],[15,0,105,9],[16,0,105,9],[17,0,105,13],[18,0,105,14],[19,0,105,14],[20,0,105,16],[21,0,105,16]],[[8,0,106,6],[9,0,106,6],[10,0,106,6],[11,0,106,6],[12,0,106,10],[13,0,106,10],[14,0,106,10],[15,0,106,10],[16,0,106,14],[17,0,106,15],[18,0,106,15],[19,0,106,15],[20,0,106,15],[21,0,106,19],[22,0,106,19],[23,0,106,19],[24,0,106,19],[25,0,106,19],[26,0,106,24],[27,0,106,24],[28,0,106,24],[29,0,106,24],[30,0,106,24],[31,0,106,24],[32,0,106,24],[33,0,106,31]],[[12,0,106,33],[13,0,106,33],[14,0,106,33],[15,0,106,33],[16,0,106,33],[17,0,106,33],[18,0,106,33],[19,0,106,40],[20,0,106,40],[21,0,106,40],[22,0,106,40],[23,0,106,44],[24,0,106,44],[25,0,106,44],[26,0,106,44],[27,0,106,48],[28,0,106,49],[29,0,106,49],[30,0,106,49],[31,0,106,49],[32,0,106,49],[33,0,106,54],[34,0,106,54],[35,0,106,54],[36,0,106,54],[37,0,106,58],[38,0,106,58],[39,0,106,58],[40,0,106,58],[41,0,106,62],[42,0,106,63],[43,0,106,63],[44,0,106,63],[45,0,106,63],[46,0,106,67],[47,0,106,67],[48,0,106,67],[49,0,106,67],[50,0,106,71],[51,0,106,71],[52,0,106,73],[53,0,106,73],[54,0,106,75]],[[8,0,107,6],[9,0,107,6],[10,0,107,6],[11,0,107,6],[12,0,107,10],[13,0,107,10],[14,0,107,10],[15,0,107,10],[16,0,107,14],[17,0,107,15],[18,0,107,15],[19,0,107,15],[20,0,107,15],[21,0,107,19],[22,0,107,19],[23,0,107,19],[24,0,107,19],[25,0,107,19],[26,0,107,24],[27,0,107,24],[28,0,107,24],[29,0,107,24],[30,0,107,28]],[[12,0,107,30],[13,0,107,30],[14,0,107,30],[15,0,107,30],[16,0,107,30],[17,0,107,30],[18,0,107,30],[19,0,107,37],[20,0,107,37],[21,0,107,37],[22,0,107,37],[23,0,107,41],[24,0,107,41],[25,0,107,41],[26,0,107,41],[27,0,107,45],[28,0,107,46],[29,0,107,46],[30,0,107,46],[31,0,107,46],[32,0,107,46],[33,0,107,51],[34,0,107,51],[35,0,107,51],[36,0,107,51],[37,0,107,55],[38,0,107,55],[39,0,107,55],[40,0,107,55],[41,0,107,59],[42,0,107,60],[43,0,107,60],[44,0,107,60],[45,0,107,60],[46,0,107,64],[47,0,107,64],[48,0,107,64],[49,0,107,64],[50,0,107,68],[51,0,107,68],[52,0,107,70],[53,0,107,70],[54,0,107,72]],[[8,0,108,6],[9,0,108,6],[10,0,108,6],[11,0,108,6],[12,0,108,10],[13,0,108,10],[14,0,108,10],[15,0,108,10],[16,0,108,14],[17,0,108,15],[18,0,108,15],[19,0,108,15],[20,0,108,15],[21,0,108,19],[22,0,108,19],[23,0,108,19],[24,0,108,19],[25,0,108,19],[26,0,108,24],[27,0,108,24],[28,0,108,24],[29,0,108,24],[30,0,108,24],[31,0,108,24],[32,0,108,30]],[[12,0,108,32],[13,0,108,32],[14,0,108,32],[15,0,108,32],[16,0,108,32],[17,0,108,32],[18,0,108,32],[19,0,108,39],[20,0,108,39],[21,0,108,39],[22,0,108,39],[23,0,108,43],[24,0,108,44],[25,0,108,44],[26,0,108,44],[27,0,108,44],[28,0,108,48],[29,0,108,48],[30,0,108,48],[31,0,108,48],[32,0,108,52],[33,0,108,52],[34,0,108,54]],[[8,0,109,6],[9,0,109,6],[10,0,109,6],[11,0,109,6],[12,0,109,10],[13,0,109,10],[14,0,109,10],[15,0,109,10],[16,0,109,14],[17,0,109,15],[18,0,109,15],[19,0,109,15],[20,0,109,15],[21,0,109,19],[22,0,109,19],[23,0,109,19],[24,0,109,19],[25,0,109,19],[26,0,109,24],[27,0,109,24],[28,0,109,24],[29,0,109,24],[30,0,109,24],[31,0,109,24],[32,0,109,24],[33,0,109,24],[34,0,109,24],[35,0,109,24],[36,0,109,24],[37,0,109,24],[38,0,109,24],[39,0,109,24],[40,0,109,38]],[[12,0,109,40],[13,0,109,40],[14,0,109,40],[15,0,109,40],[16,0,109,40],[17,0,109,40],[18,0,109,40],[19,0,109,47],[20,0,109,47],[21,0,109,47],[22,0,109,47],[23,0,109,51],[24,0,109,51],[25,0,109,51],[26,0,109,51],[27,0,109,55],[28,0,109,56],[29,0,109,56],[30,0,109,56],[31,0,109,56],[32,0,109,60],[33,0,109,60],[34,0,109,60],[35,0,109,60],[36,0,109,64],[37,0,109,64],[38,0,109,66],[39,0,109,66],[40,0,109,68]],[[8,0,110,6],[9,0,110,6],[10,0,110,6],[11,0,110,6],[12,0,110,10],[13,0,110,10],[14,0,110,10],[15,0,110,10],[16,0,110,14],[17,0,110,15],[18,0,110,15],[19,0,110,15],[20,0,110,15],[21,0,110,19],[22,0,110,19],[23,0,110,19],[24,0,110,19],[25,0,110,19],[26,0,110,24],[27,0,110,24],[28,0,110,24],[29,0,110,24],[30,0,110,24],[31,0,110,24],[32,0,110,24],[33,0,110,24],[34,0,110,24],[35,0,110,24],[36,0,110,24],[37,0,110,24],[38,0,110,36]],[[12,0,110,38],[13,0,110,38],[14,0,110,38],[15,0,110,38],[16,0,110,38],[17,0,110,38],[18,0,110,38],[19,0,110,45],[20,0,110,45],[21,0,110,45],[22,0,110,45],[23,0,110,49],[24,0,110,49],[25,0,110,49],[26,0,110,49],[27,0,110,53],[28,0,110,54],[29,0,110,54],[30,0,110,54],[31,0,110,54],[32,0,110,54],[33,0,110,59],[34,0,110,59],[35,0,110,59],[36,0,110,59],[37,0,110,63],[38,0,110,63],[39,0,110,65],[40,0,110,65],[41,0,110,65],[42,0,110,68]],[[8,0,111,6],[9,0,111,6],[10,0,111,6],[11,0,111,6],[12,0,111,6],[13,0,111,6],[14,0,111,6],[15,0,111,13],[16,0,111,13],[17,0,111,15]],[[4,0,112,4],[5,0,112,5]],[[9,0,113,5],[10,0,113,5],[11,0,113,5],[12,0,113,5],[13,0,113,9],[14,0,113,10],[15,0,113,10],[16,0,113,12]],[[9,0,114,5],[10,0,114,5],[11,0,114,5],[12,0,114,5],[13,0,114,9],[14,0,114,9],[15,0,114,11]],[[0,0,115,0]],[[0,0,117,0],[1,0,117,0],[2,0,117,0],[3,0,117,0],[4,0,117,0],[5,0,117,0],[6,0,117,0],[7,0,117,0],[8,0,117,0],[9,0,117,16],[10,0,117,16],[11,0,117,16],[12,0,117,16],[13,0,117,16],[14,0,117,16],[15,0,117,16],[16,0,117,16],[17,0,117,16],[18,0,117,16],[19,0,117,16],[20,0,117,27],[21,0,117,28],[22,0,117,28],[23,0,117,28],[24,0,117,39],[25,0,117,39],[26,0,117,39]],[[4,0,118,2],[5,0,118,2],[6,0,118,2],[7,0,118,2],[8,0,118,2],[9,0,118,2],[10,0,118,2],[11,0,118,9],[12,0,118,9],[13,0,118,9],[14,0,118,12],[15,0,118,13],[16,0,118,13],[17,0,118,13],[18,0,118,13],[19,0,118,13],[20,0,118,13],[21,0,118,13],[22,0,118,20],[23,0,118,21],[24,0,118,21],[25,0,118,21],[26,0,118,21],[27,0,118,21],[28,0,118,21],[29,0,118,21],[30,0,118,21],[31,0,118,21],[32,0,118,21],[33,0,118,21],[34,0,118,21],[35,0,118,21],[36,0,118,21],[37,0,118,21],[38,0,118,21],[39,0,118,21],[40,0,118,21],[41,0,118,21],[42,0,118,21],[43,0,118,21],[44,0,118,42],[45,0,118,42],[46,0,118,44],[47,0,118,44],[48,0,118,44],[49,0,118,44],[50,0,118,44],[51,0,118,44],[52,0,118,50],[53,0,118,51]],[[0,0,119,0]],[[0,0,121,0],[1,0,121,0],[2,0,121,0],[3,0,121,0],[4,0,121,0],[5,0,121,0],[6,0,121,0],[7,0,121,0],[8,0,121,0],[9,0,121,16],[10,0,121,16],[11,0,121,16],[12,0,121,16],[13,0,121,16],[14,0,121,16],[15,0,121,16],[16,0,121,16],[17,0,121,16],[18,0,121,16],[19,0,121,16],[20,0,121,16],[21,0,121,16],[22,0,121,16],[23,0,121,16],[24,0,121,16],[25,0,121,16],[26,0,121,33],[27,0,121,34],[28,0,121,34],[29,0,121,34],[30,0,121,34],[31,0,121,34],[32,0,121,34],[33,0,121,34],[34,0,121,34],[35,0,121,50],[36,0,121,50],[37,0,121,50]],[[4,0,122,2],[5,0,122,2],[6,0,122,2],[7,0,122,2],[8,0,122,6],[9,0,122,6],[10,0,122,6],[11,0,122,6],[12,0,122,6],[13,0,122,35]],[[4,0,123,2],[5,0,123,2],[6,0,123,2],[7,0,123,2],[8,0,123,6],[9,0,123,6],[10,0,123,6],[11,0,123,6],[12,0,123,30]],[[4,0,124,2],[5,0,124,2],[6,0,124,2],[7,0,124,2],[8,0,124,2],[9,0,124,2],[10,0,124,8],[11,0,124,8],[12,0,124,10],[13,0,124,10],[14,0,124,10],[15,0,124,13],[16,0,124,13],[17,0,124,13],[18,0,124,13],[19,0,124,13],[20,0,124,13],[21,0,124,13],[22,0,124,13],[23,0,124,13],[24,0,124,13],[25,0,124,13],[26,0,124,13],[27,0,124,13],[28,0,124,13],[29,0,124,13],[30,0,124,13],[31,0,124,13],[32,0,124,13],[33,0,124,13],[34,0,124,13],[35,0,124,13],[36,0,124,34]],[[4,0,125,2],[5,0,125,2],[6,0,125,2],[7,0,125,2],[8,0,125,2],[9,0,125,2],[10,0,125,2],[11,0,125,9],[12,0,125,10],[13,0,125,10],[14,0,125,10],[15,0,125,10],[16,0,125,10],[17,0,125,15],[18,0,125,15],[19,0,125,15],[20,0,125,18],[21,0,125,18],[22,0,125,20],[23,0,125,21],[24,0,125,21],[25,0,125,21],[26,0,125,21],[27,0,125,25],[28,0,125,26],[29,0,125,26],[30,0,125,26],[31,0,125,26],[32,0,125,26],[33,0,125,26],[34,0,125,26],[35,0,125,26],[36,0,125,34],[37,0,125,35],[38,0,125,36],[39,0,125,36],[40,0,125,36],[41,0,125,36],[42,0,125,36],[43,0,125,41],[44,0,125,41],[45,0,125,41],[46,0,125,41],[47,0,125,45],[48,0,125,45],[49,0,125,47]],[[8,0,126,4],[9,0,126,4],[10,0,126,4],[11,0,126,4],[12,0,126,8],[13,0,126,8],[14,0,126,8],[15,0,126,11],[16,0,126,11],[17,0,126,11],[18,0,126,11],[19,0,126,11],[20,0,126,16],[21,0,126,17],[22,0,126,18],[23,0,126,19]],[[4,0,127,2]],[[4,0,128,2],[5,0,128,2],[6,0,128,2],[7,0,128,2],[8,0,128,2],[9,0,128,2],[10,0,128,2],[11,0,128,9],[12,0,128,9],[13,0,128,9],[14,0,128,9],[15,0,128,13]],[[0,0,129,0]],[[0,0,131,0],[1,0,131,0],[2,0,131,0],[3,0,131,0],[4,0,131,0],[5,0,131,0],[6,0,131,0],[7,0,131,0],[8,0,131,0],[9,0,131,16],[10,0,131,16],[11,0,131,16],[12,0,131,16],[13,0,131,16],[14,0,131,16],[15,0,131,16],[16,0,131,16],[17,0,131,16],[18,0,131,16],[19,0,131,16],[20,0,131,16],[21,0,131,16],[22,0,131,16],[23,0,131,16],[24,0,131,16],[25,0,131,16],[26,0,131,16],[27,0,131,16],[28,0,131,16],[29,0,131,16],[30,0,131,16],[31,0,131,16],[32,0,131,16],[33,0,131,16],[34,0,131,16],[35,0,131,16],[36,0,131,43],[37,0,132,2],[38,0,132,2],[39,0,132,2],[40,0,132,13],[41,0,132,13],[42,0,133,2],[43,0,133,2],[44,0,133,2],[45,0,133,2],[46,0,133,2],[47,0,136,3],[48,0,136,3],[49,0,136,3]],[[4,0,138,2],[5,0,138,2],[6,0,138,2],[7,0,138,2],[8,0,138,6],[9,0,138,7],[10,0,138,7],[11,0,138,7],[12,0,138,7],[13,0,138,7],[14,0,138,12],[15,0,138,13],[16,0,138,13],[17,0,138,13],[18,0,138,13],[19,0,138,13],[20,0,138,13],[21,0,138,13],[22,0,138,13],[23,0,138,21]],[[8,0,138,23],[9,0,138,23],[10,0,138,23],[11,0,138,23],[12,0,138,23],[13,0,138,23],[14,0,138,23],[15,0,138,30],[16,0,138,30],[17,0,138,30],[18,0,138,33]],[[4,0,139,2],[5,0,139,2],[6,0,139,2],[7,0,139,2],[8,0,139,2],[9,0,139,2],[10,0,139,8],[11,0,139,8],[12,0,139,8],[13,0,139,8],[14,0,139,8],[15,0,139,8],[16,0,139,8],[17,0,139,8],[18,0,139,16],[19,0,139,16],[20,0,139,16],[21,0,139,19],[22,0,139,20],[23,0,139,20],[24,0,139,20],[25,0,139,20],[26,0,139,20],[27,0,139,25],[28,0,139,26],[29,0,139,26],[30,0,139,26],[31,0,139,26],[32,0,139,26],[33,0,139,31],[34,0,139,31],[35,0,139,31],[36,0,139,31],[37,0,139,35],[38,0,139,35],[39,0,139,37],[40,0,139,38],[41,0,139,39],[42,0,139,39],[43,0,139,39],[44,0,139,42],[45,0,139,43],[46,0,139,44],[47,0,139,45],[48,0,139,45],[49,0,139,47],[50,0,140,4],[51,0,140,4],[52,0,140,4],[53,0,140,4],[54,0,140,4],[55,0,140,4],[56,0,140,4],[57,0,140,11],[58,0,140,12],[59,0,140,12],[60,0,140,12],[61,0,140,12],[62,0,140,12],[63,0,140,17],[64,0,140,17],[65,0,140,17],[66,0,140,17],[67,0,140,17],[68,0,140,17],[69,0,140,17],[70,0,140,17],[71,0,140,25],[72,0,140,26],[73,0,140,27],[74,0,140,28],[75,0,140,28],[76,0,140,28],[77,0,140,28],[78,0,140,32],[79,0,140,32],[80,0,140,32],[81,0,140,32],[82,0,140,32],[83,0,140,32],[84,0,140,38],[85,0,140,39],[86,0,140,39],[87,0,140,39],[88,0,140,39],[89,0,140,39],[90,0,140,39],[91,0,140,45],[92,0,140,45],[93,0,140,45],[94,0,140,45],[95,0,140,45],[96,0,140,45],[97,0,140,45],[98,0,140,45],[99,0,140,45],[100,0,140,45],[101,0,140,45],[102,0,140,56],[103,0,140,57],[104,0,140,58],[105,0,140,59],[106,0,140,59],[107,0,140,59],[108,0,140,59],[109,0,140,59],[110,0,140,59],[111,0,140,59],[112,0,140,59],[113,0,140,59],[114,0,140,59],[115,0,140,59],[116,0,140,59],[117,0,140,71],[118,0,140,71],[119,0,140,73],[120,0,140,73],[121,0,140,73],[122,0,140,76],[123,0,140,77],[124,0,140,78],[125,0,140,79],[126,0,140,80],[127,0,140,81],[128,0,141,3]],[[4,0,142,2],[5,0,142,2],[6,0,142,2],[7,0,142,2],[8,0,142,2],[9,0,142,2],[10,0,142,8],[11,0,142,8],[12,0,142,8],[13,0,142,8],[14,0,142,8],[15,0,142,8],[16,0,142,8],[17,0,142,8],[18,0,142,16],[19,0,142,16],[20,0,142,16],[21,0,142,19],[22,0,142,19],[23,0,142,19],[24,0,142,19],[25,0,142,19],[26,0,142,19],[27,0,142,19],[28,0,142,19],[29,0,142,27],[30,0,142,28],[31,0,142,28],[32,0,142,28],[33,0,142,28],[34,0,142,28],[35,0,142,28],[36,0,142,34],[37,0,142,34],[38,0,142,34],[39,0,142,34],[40,0,142,34],[41,0,142,39],[42,0,142,40]],[[4,0,144,2],[5,0,144,2],[6,0,144,2],[7,0,144,2],[8,0,144,6],[9,0,144,6],[10,0,144,6],[11,0,144,6],[12,0,144,6],[13,0,144,11],[14,0,144,12],[15,0,144,12],[16,0,144,12],[17,0,144,12],[18,0,144,12],[19,0,144,12],[20,0,144,12],[21,0,144,12],[22,0,144,20],[23,0,144,21],[24,0,144,21],[25,0,144,21],[26,0,144,21],[27,0,144,25],[28,0,144,25],[29,0,144,25],[30,0,144,25],[31,0,144,25],[32,0,144,30],[33,0,144,30],[34,0,144,30],[35,0,144,30],[36,0,144,30],[37,0,144,30],[38,0,144,30],[39,0,144,30],[40,0,144,30],[41,0,144,30],[42,0,144,30],[43,0,144,30],[44,0,144,30],[45,0,144,30],[46,0,144,44],[47,0,144,44],[48,0,144,46]],[[8,0,145,4],[9,0,145,4],[10,0,145,4],[11,0,145,4],[12,0,145,4],[13,0,145,4],[14,0,145,10],[15,0,145,10],[16,0,145,10],[17,0,145,10],[18,0,145,10],[19,0,145,15],[20,0,145,15],[21,0,145,15],[22,0,145,18],[23,0,145,18],[24,0,145,18],[25,0,145,18],[26,0,145,22],[27,0,145,23],[28,0,145,23],[29,0,145,23],[30,0,145,26],[31,0,145,27],[32,0,145,28],[33,0,145,28],[34,0,145,30],[35,0,145,30],[36,0,145,30],[37,0,145,30],[38,0,145,30],[39,0,145,35],[40,0,145,36],[41,0,145,36],[42,0,145,36],[43,0,145,36],[44,0,145,36],[45,0,145,36],[46,0,145,36],[47,0,145,36],[48,0,145,44],[49,0,145,45],[50,0,145,45],[51,0,145,45],[52,0,145,45],[53,0,145,45],[54,0,145,50],[55,0,145,50],[56,0,145,50],[57,0,145,50],[58,0,145,54],[59,0,145,55],[60,0,145,56]],[[8,0,146,4],[9,0,146,4],[10,0,146,4],[11,0,146,4],[12,0,146,4],[13,0,146,4],[14,0,146,10],[15,0,146,10],[16,0,146,10],[17,0,146,10],[18,0,146,10],[19,0,146,10],[20,0,146,10],[21,0,146,10],[22,0,146,10],[23,0,146,19],[24,0,146,19],[25,0,146,19],[26,0,146,22],[27,0,146,23],[28,0,146,23],[29,0,146,23],[30,0,146,34],[31,0,146,34],[32,0,146,36],[33,0,146,36],[34,0,146,38],[35,0,146,39],[36,0,146,39],[37,0,146,39],[38,0,146,42],[39,0,146,42],[40,0,146,42],[41,0,146,45],[42,0,146,45],[43,0,146,45],[44,0,146,48],[45,0,146,49],[46,0,146,49],[47,0,146,49],[48,0,146,49],[49,0,146,49],[50,0,146,49],[51,0,146,55],[52,0,146,56],[53,0,146,56],[54,0,146,56],[55,0,146,56],[56,0,146,56],[57,0,146,61],[58,0,146,62]],[[8,0,147,4],[9,0,147,4],[10,0,147,4],[11,0,147,4],[12,0,147,8],[13,0,147,8],[14,0,147,8],[15,0,147,8],[16,0,147,8],[17,0,147,8],[18,0,147,8],[19,0,147,8],[20,0,147,16],[21,0,147,16],[22,0,147,18]],[[12,0,148,6],[13,0,148,6],[14,0,148,6],[15,0,148,6],[16,0,148,6],[17,0,148,6],[18,0,148,6],[19,0,148,13],[20,0,148,13],[21,0,148,13],[22,0,148,16],[23,0,148,17],[24,0,148,17],[25,0,148,17],[26,0,148,17],[27,0,148,17],[28,0,148,17],[29,0,148,17],[30,0,148,24],[31,0,148,25],[32,0,148,25],[33,0,148,25],[34,0,148,25],[35,0,148,25],[36,0,148,25],[37,0,148,25],[38,0,148,25],[39,0,148,25],[40,0,148,25],[41,0,148,25],[42,0,148,25],[43,0,148,25],[44,0,148,25],[45,0,148,25],[46,0,148,25],[47,0,148,25],[48,0,148,25],[49,0,148,25],[50,0,148,44],[51,0,148,44],[52,0,148,46],[53,0,148,47],[54,0,148,48],[55,0,148,48],[56,0,148,50],[57,0,148,51],[58,0,148,51],[59,0,148,51],[60,0,148,51],[61,0,148,51],[62,0,148,51],[63,0,148,51],[64,0,148,51],[65,0,148,51],[66,0,148,60],[67,0,148,61],[68,0,148,62],[69,0,148,63],[70,0,148,64]],[[8,0,149,4]],[[8,0,150,4],[9,0,150,4],[10,0,150,4],[11,0,150,4],[12,0,150,8],[13,0,150,8],[14,0,150,8],[15,0,150,8],[16,0,150,8],[17,0,150,8],[18,0,150,14],[19,0,150,14],[20,0,150,14],[21,0,150,17],[22,0,150,17],[23,0,150,17],[24,0,150,20]],[[8,0,151,4],[9,0,151,4],[10,0,151,4],[11,0,151,4],[12,0,151,4],[13,0,151,9],[14,0,151,9],[15,0,151,9],[16,0,151,9],[17,0,151,9],[18,0,151,9],[19,0,151,15],[20,0,151,15],[21,0,151,17],[22,0,151,17],[23,0,151,17],[24,0,151,17],[25,0,151,21],[26,0,151,21],[27,0,151,21],[28,0,151,21],[29,0,151,21],[30,0,151,21],[31,0,151,21],[32,0,151,21],[33,0,151,29],[34,0,151,29],[35,0,151,31]],[[12,0,152,6],[13,0,152,6],[14,0,152,6],[15,0,152,6],[16,0,152,6],[17,0,152,6],[18,0,152,12],[19,0,152,12],[20,0,152,12],[21,0,152,15],[22,0,152,15],[23,0,152,15],[24,0,152,15],[25,0,152,15],[26,0,152,15],[27,0,152,21],[28,0,152,22],[29,0,152,22],[30,0,152,22],[31,0,152,22],[32,0,152,22],[33,0,152,22],[34,0,152,22],[35,0,152,29],[36,0,152,30],[37,0,152,30],[38,0,152,32],[39,0,152,32],[40,0,152,34],[41,0,152,35],[42,0,152,36],[43,0,152,36],[44,0,152,38],[45,0,152,39],[46,0,152,39],[47,0,152,39],[48,0,152,39],[49,0,152,39],[50,0,152,39],[51,0,152,39],[52,0,152,39],[53,0,152,39],[54,0,152,48],[55,0,152,49],[56,0,152,50],[57,0,152,51],[58,0,152,52]],[[8,0,153,4]],[[8,0,154,4],[9,0,154,4],[10,0,154,4],[11,0,154,4],[12,0,154,4],[13,0,154,4],[14,0,154,4],[15,0,154,11],[16,0,154,11],[17,0,154,11],[18,0,154,11],[19,0,154,11],[20,0,154,11],[21,0,154,17]],[[4,0,155,2]],[[4,0,157,2],[5,0,157,2],[6,0,157,2],[7,0,157,2],[8,0,157,6],[9,0,157,6],[10,0,157,6],[11,0,157,6],[12,0,157,6],[13,0,157,11],[14,0,157,12],[15,0,157,12],[16,0,157,12],[17,0,157,12],[18,0,157,12],[19,0,157,12],[20,0,157,12],[21,0,157,12],[22,0,157,20],[23,0,157,21],[24,0,157,21],[25,0,157,21],[26,0,157,21],[27,0,157,25],[28,0,157,25],[29,0,157,25],[30,0,157,25],[31,0,157,25],[32,0,157,30],[33,0,157,30],[34,0,157,30],[35,0,157,30],[36,0,157,30],[37,0,157,30],[38,0,157,30],[39,0,157,30],[40,0,157,30],[41,0,157,30],[42,0,157,30],[43,0,157,30],[44,0,157,30],[45,0,157,30],[46,0,157,44],[47,0,157,44],[48,0,157,46]],[[8,0,158,4],[9,0,158,4],[10,0,158,4],[11,0,158,4],[12,0,158,4],[13,0,158,4],[14,0,158,10],[15,0,158,10],[16,0,158,10],[17,0,158,10],[18,0,158,10],[19,0,158,15],[20,0,158,15],[21,0,158,15],[22,0,158,18],[23,0,158,18],[24,0,158,18],[25,0,158,18],[26,0,158,18],[27,0,158,23],[28,0,158,24],[29,0,158,24],[30,0,158,24],[31,0,158,24],[32,0,158,24],[33,0,158,24],[34,0,158,24],[35,0,158,24],[36,0,158,32],[37,0,158,33],[38,0,158,33],[39,0,158,33],[40,0,158,33],[41,0,158,33],[42,0,158,38],[43,0,158,39],[44,0,158,39],[45,0,158,39],[46,0,158,39],[47,0,158,39],[48,0,158,39],[49,0,158,39],[50,0,158,46],[51,0,158,47],[52,0,158,47],[53,0,158,47],[54,0,158,47],[55,0,158,47],[56,0,158,52],[57,0,158,52],[58,0,158,54],[59,0,158,54],[60,0,158,56],[61,0,158,57]],[[8,0,159,4],[9,0,159,4],[10,0,159,4],[11,0,159,4],[12,0,159,4],[13,0,159,4],[14,0,159,10],[15,0,159,10],[16,0,159,10],[17,0,159,10],[18,0,159,10],[19,0,159,10],[20,0,159,16],[21,0,159,16],[22,0,159,16],[23,0,159,19],[24,0,159,19],[25,0,159,19],[26,0,159,19],[27,0,159,19],[28,0,159,19],[29,0,159,19],[30,0,159,19],[31,0,159,19],[32,0,159,19],[33,0,159,19],[34,0,159,30],[35,0,159,30],[36,0,159,30],[37,0,159,30],[38,0,159,30],[39,0,159,35],[40,0,159,35],[41,0,159,35],[42,0,159,38]],[[8,0,160,4],[9,0,160,4],[10,0,160,4],[11,0,160,4],[12,0,160,8],[13,0,160,8],[14,0,160,8],[15,0,160,8],[16,0,160,8],[17,0,160,8],[18,0,160,8],[19,0,160,8],[20,0,160,16],[21,0,160,16],[22,0,160,18]],[[12,0,161,6],[13,0,161,6],[14,0,161,6],[15,0,161,6],[16,0,161,6],[17,0,161,6],[18,0,161,6],[19,0,161,13],[20,0,161,13],[21,0,161,13],[22,0,161,16],[23,0,161,17],[24,0,161,17],[25,0,161,17],[26,0,161,17],[27,0,161,17],[28,0,161,17],[29,0,161,17],[30,0,161,24],[31,0,161,25],[32,0,161,25],[33,0,161,25],[34,0,161,25],[35,0,161,25],[36,0,161,25],[37,0,161,25],[38,0,161,25],[39,0,161,25],[40,0,161,25],[41,0,161,25],[42,0,161,25],[43,0,161,25],[44,0,161,25],[45,0,161,25],[46,0,161,25],[47,0,161,25],[48,0,161,25],[49,0,161,25],[50,0,161,44],[51,0,161,44],[52,0,161,46],[53,0,161,47],[54,0,161,48],[55,0,161,48],[56,0,161,50],[57,0,161,51],[58,0,161,51],[59,0,161,51],[60,0,161,54],[61,0,161,55],[62,0,161,55],[63,0,161,55],[64,0,161,58],[65,0,161,58],[66,0,161,58],[67,0,161,58],[68,0,161,58],[69,0,161,58],[70,0,161,64],[71,0,161,64],[72,0,161,66],[73,0,161,67]],[[8,0,162,4]],[[8,0,163,4],[9,0,163,4],[10,0,163,4],[11,0,163,4],[12,0,163,8],[13,0,163,8],[14,0,163,8],[15,0,163,8],[16,0,163,8],[17,0,163,8],[18,0,163,14],[19,0,163,14],[20,0,163,14],[21,0,163,17],[22,0,163,17],[23,0,163,17],[24,0,163,20]],[[8,0,164,4],[9,0,164,4],[10,0,164,4],[11,0,164,4],[12,0,164,4],[13,0,164,9],[14,0,164,9],[15,0,164,9],[16,0,164,9],[17,0,164,9],[18,0,164,9],[19,0,164,15],[20,0,164,15],[21,0,164,17],[22,0,164,17],[23,0,164,17],[24,0,164,17],[25,0,164,21],[26,0,164,21],[27,0,164,21],[28,0,164,21],[29,0,164,21],[30,0,164,21],[31,0,164,21],[32,0,164,21],[33,0,164,29],[34,0,164,29],[35,0,164,31]],[[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,15],[22,0,165,15],[23,0,165,15],[24,0,165,15],[25,0,165,15],[26,0,165,15],[27,0,165,21],[28,0,165,22],[29,0,165,22],[30,0,165,22],[31,0,165,22],[32,0,165,22],[33,0,165,22],[34,0,165,22],[35,0,165,29],[36,0,165,30],[37,0,165,30],[38,0,165,32],[39,0,165,32],[40,0,165,34],[41,0,165,35],[42,0,165,36],[43,0,165,36],[44,0,165,38],[45,0,165,39],[46,0,165,39],[47,0,165,39],[48,0,165,42],[49,0,165,43],[50,0,165,43],[51,0,165,43],[52,0,165,46],[53,0,165,46],[54,0,165,46],[55,0,165,46],[56,0,165,46],[57,0,165,46],[58,0,165,52],[59,0,165,52],[60,0,165,54],[61,0,165,55]],[[8,0,166,4]],[[8,0,167,4],[9,0,167,4],[10,0,167,4],[11,0,167,4],[12,0,167,4],[13,0,167,4],[14,0,167,4],[15,0,167,11],[16,0,167,11],[17,0,167,11],[18,0,167,11],[19,0,167,11],[20,0,167,11],[21,0,167,17]],[[4,0,168,2]],[[4,0,170,2],[5,0,170,2],[6,0,170,2],[7,0,170,2],[8,0,170,2],[9,0,170,2],[10,0,170,2],[11,0,170,9],[12,0,170,9],[13,0,170,9],[14,0,170,12]],[[0,0,171,0]]],"ignoreList":[]}
@@ -1,6 +1,6 @@
1
- import { type TransformOptions as LightningTransformOptions } from 'lightningcss';
1
+ import type { LightningVisitor } from './types.cjs';
2
2
  export type SpecificitySelector = string | RegExp;
3
- export type LightningVisitor = LightningTransformOptions<Record<string, never>>['visitor'];
3
+ export type { LightningVisitor };
4
4
  export type SpecificityStrategy = {
5
5
  type: 'append-where';
6
6
  token: string;
@@ -7,15 +7,30 @@ exports.pitch = void 0;
7
7
  const node_path_1 = __importDefault(require("node:path"));
8
8
  const css_js_1 = require("./css.cjs");
9
9
  const moduleInfo_js_1 = require("./moduleInfo.cjs");
10
+ const autoStableSelectors_js_1 = require("./autoStableSelectors.cjs");
10
11
  const loaderInternals_js_1 = require("./loaderInternals.cjs");
11
12
  const stableSelectorsLiteral_js_1 = require("./stableSelectorsLiteral.cjs");
12
13
  const stableNamespace_js_1 = require("./stableNamespace.cjs");
14
+ const stableSelectors_js_1 = require("./stableSelectors.cjs");
13
15
  const DEFAULT_EXPORT_NAME = 'knightedCss';
14
16
  const loader = async function loader(source) {
15
17
  const { cssOptions, vanillaOptions, stableNamespace: optionNamespace, } = resolveLoaderOptions(this);
16
18
  const resolvedNamespace = (0, stableNamespace_js_1.resolveStableNamespace)(optionNamespace);
17
19
  const typesRequested = (0, loaderInternals_js_1.hasQueryFlag)(this.resourceQuery, loaderInternals_js_1.TYPES_QUERY_FLAG);
18
- const css = await extractCss(this, cssOptions);
20
+ const isStyleModule = this.resourcePath.endsWith('.css.ts');
21
+ const cssOptionsForExtract = isStyleModule
22
+ ? { ...cssOptions, autoStable: undefined }
23
+ : cssOptions;
24
+ const cssMeta = await extractCss(this, cssOptionsForExtract);
25
+ const activeAutoStable = (0, autoStableSelectors_js_1.normalizeAutoStableOption)(cssOptionsForExtract.autoStable);
26
+ const cssModuleExports = activeAutoStable
27
+ ? mergeCssModuleExports(cssMeta.exports, {
28
+ namespace: activeAutoStable.namespace ?? resolvedNamespace,
29
+ include: activeAutoStable.include,
30
+ exclude: activeAutoStable.exclude,
31
+ })
32
+ : undefined;
33
+ const css = cssMeta.css;
19
34
  const stableSelectorsLiteral = typesRequested
20
35
  ? (0, stableSelectorsLiteral_js_1.buildStableSelectorsLiteral)({
21
36
  css,
@@ -25,10 +40,12 @@ const loader = async function loader(source) {
25
40
  target: 'js',
26
41
  })
27
42
  : undefined;
43
+ const emitCssModuleDefault = isCssLikeResource(this.resourcePath) && Boolean(cssModuleExports);
28
44
  const injection = buildInjection(css, {
29
45
  stableSelectorsLiteral: stableSelectorsLiteral?.literal,
46
+ cssModuleExports,
47
+ emitCssModuleDefault,
30
48
  });
31
- const isStyleModule = this.resourcePath.endsWith('.css.ts');
32
49
  if (isStyleModule) {
33
50
  const { source: compiledSource } = await (0, css_js_1.compileVanillaModule)(this.resourcePath, cssOptions.cwd ?? this.rootContext ?? process.cwd(), cssOptions.peerResolver);
34
51
  const vanillaSource = maybeTransformVanillaModule(compiledSource, vanillaOptions);
@@ -73,24 +90,34 @@ const pitch = function pitch() {
73
90
  const defaultSignalPromise = skipSyntheticDefault
74
91
  ? Promise.resolve('unknown')
75
92
  : (0, moduleInfo_js_1.detectModuleDefaultExport)(this.resourcePath);
76
- return Promise.all([extractCss(this, cssOptions), defaultSignalPromise]).then(([css, defaultSignal]) => {
93
+ return Promise.all([extractCss(this, cssOptions), defaultSignalPromise]).then(([cssMeta, defaultSignal]) => {
77
94
  const emitDefault = (0, loaderInternals_js_1.shouldEmitCombinedDefault)({
78
95
  request,
79
96
  skipSyntheticDefault,
80
97
  detection: defaultSignal,
81
98
  });
99
+ const activeAutoStable = (0, autoStableSelectors_js_1.normalizeAutoStableOption)(cssOptions.autoStable);
100
+ const cssModuleExports = activeAutoStable
101
+ ? mergeCssModuleExports(cssMeta.exports, {
102
+ namespace: activeAutoStable.namespace ?? resolvedNamespace,
103
+ include: activeAutoStable.include,
104
+ exclude: activeAutoStable.exclude,
105
+ })
106
+ : undefined;
82
107
  const stableSelectorsLiteral = typesRequested
83
108
  ? (0, stableSelectorsLiteral_js_1.buildStableSelectorsLiteral)({
84
- css,
109
+ css: cssMeta.css,
85
110
  namespace: resolvedNamespace,
86
111
  resourcePath: this.resourcePath,
87
112
  emitWarning: message => emitKnightedWarning(this, message),
88
113
  target: 'js',
89
114
  })
90
115
  : undefined;
91
- return createCombinedModule(request, css, {
116
+ return createCombinedModule(request, cssMeta.css, {
92
117
  emitDefault,
93
118
  stableSelectorsLiteral: stableSelectorsLiteral?.literal,
119
+ cssModuleExports,
120
+ emitCssModuleDefault: false,
94
121
  });
95
122
  });
96
123
  };
@@ -111,12 +138,12 @@ function resolveLoaderOptions(ctx) {
111
138
  };
112
139
  }
113
140
  async function extractCss(ctx, options) {
114
- const { css, files } = await (0, css_js_1.cssWithMeta)(ctx.resourcePath, options);
115
- const uniqueFiles = new Set([ctx.resourcePath, ...files]);
141
+ const result = await (0, css_js_1.cssWithMeta)(ctx.resourcePath, options);
142
+ const uniqueFiles = new Set([ctx.resourcePath, ...result.files]);
116
143
  for (const file of uniqueFiles) {
117
144
  ctx.addDependency(file);
118
145
  }
119
- return css;
146
+ return result;
120
147
  }
121
148
  function toSourceString(source) {
122
149
  return typeof source === 'string' ? source : source.toString('utf8');
@@ -126,8 +153,57 @@ function buildInjection(css, extras) {
126
153
  if (extras?.stableSelectorsLiteral) {
127
154
  lines.push(extras.stableSelectorsLiteral);
128
155
  }
156
+ if (extras?.cssModuleExports) {
157
+ lines.push(`export const knightedCssModules = ${JSON.stringify(extras.cssModuleExports)};`);
158
+ if (extras.emitCssModuleDefault) {
159
+ lines.push('export default knightedCssModules;');
160
+ }
161
+ }
129
162
  return lines.join('');
130
163
  }
164
+ function isCssLikeResource(resourcePath) {
165
+ return (/\.(css|scss|sass|less)(\?.*)?$/i.test(resourcePath) &&
166
+ !resourcePath.endsWith('.css.ts'));
167
+ }
168
+ function mergeCssModuleExports(exportsMap, options) {
169
+ if (!exportsMap)
170
+ return undefined;
171
+ const output = {};
172
+ for (const [token, value] of Object.entries(exportsMap)) {
173
+ const hashedParts = toClassParts(value);
174
+ if (options.exclude && options.exclude.test(token)) {
175
+ output[token] = hashedParts.join(' ');
176
+ continue;
177
+ }
178
+ if (options.include && !options.include.test(token)) {
179
+ output[token] = hashedParts.join(' ');
180
+ continue;
181
+ }
182
+ const stable = (0, stableSelectors_js_1.stableClass)(token, { namespace: options.namespace });
183
+ if (stable && !hashedParts.includes(stable)) {
184
+ hashedParts.push(stable);
185
+ }
186
+ output[token] = hashedParts.join(' ');
187
+ }
188
+ return output;
189
+ }
190
+ function toClassParts(value) {
191
+ if (!value)
192
+ return [];
193
+ if (Array.isArray(value)) {
194
+ return value.flatMap(part => part.split(/\s+/).filter(Boolean));
195
+ }
196
+ if (typeof value === 'object') {
197
+ const parts = [
198
+ value.name,
199
+ ...(value.composes ?? []).map(entry => typeof entry === 'string' ? entry : entry?.name),
200
+ ]
201
+ .filter(Boolean)
202
+ .map(String);
203
+ return parts.flatMap(part => part.split(/\s+/).filter(Boolean));
204
+ }
205
+ return value.split(/\s+/).filter(Boolean);
206
+ }
131
207
  function buildProxyRequest(ctx) {
132
208
  const sanitizedQuery = (0, loaderInternals_js_1.buildSanitizedQuery)(ctx.resourceQuery);
133
209
  const rawRequest = getRawRequest(ctx);
@@ -208,7 +284,11 @@ typeof __knightedModule.default !== 'undefined'
208
284
  ? __knightedModule.default
209
285
  : __knightedModule;`, 'export default __knightedDefault;');
210
286
  }
211
- lines.push(buildInjection(css, { stableSelectorsLiteral: options?.stableSelectorsLiteral }));
287
+ lines.push(buildInjection(css, {
288
+ stableSelectorsLiteral: options?.stableSelectorsLiteral,
289
+ cssModuleExports: options?.cssModuleExports,
290
+ emitCssModuleDefault: options?.emitCssModuleDefault,
291
+ }));
212
292
  return lines.join('\n');
213
293
  }
214
294
  function emitKnightedWarning(ctx, message) {