Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

packing experiments #21

Open
jeetiss opened this issue Jun 13, 2023 · 1 comment
Open

packing experiments #21

jeetiss opened this issue Jun 13, 2023 · 1 comment

Comments

@jeetiss
Copy link
Contributor

jeetiss commented Jun 13, 2023

hello @adraffy,

I have a couple of ideas on how to make this library little bit smaller:

  • make it compression friendly: base64 can't be compressed at all, so it should be better to use yenc and remove encode_arithmetic/decode_arithmetic logic

  • make library tree-shaking friendly: current implementation packs all used values into one significant instance and whatever you import you still need the whole instance. maybe it would be better to pack each list individually so that library would be tree-shakable

I'm not sure if these ideas will gain some results, but it is interesting for me to explore. Are you interested in these changes too? Or maybe you tried something in this direction

@adraffy
Copy link
Owner

adraffy commented Jun 13, 2023

All of the non-trivial components of spec.json (encoded into include-ens.js) are required for compliant normalization.

  • I've include some byte estimates of each part in make.js eg. // ~7KB
  • ens_tokenize() can be tree-shook but not much else.

I made include-nf.js separate and optional because you technically could substitute for String.normalize when you can control the Javascript environment.

But in general, this should be avoided because a mismatched Unicode version is one of the issues normalization identifies. From my tests in 2021-22, modern browsers didn't even implement NFC correctly nor agreed with each other, however it has improved since.


I agree there is a 8/6 blowup factor using base64 to embed a byte vector in a Javascript file however I'm not sure there are better options. Once you go above 7F, the file will be UTF-8 (which defeats any gains) unless the mime encoding is explicitly 8-bit (which seems unlikely given how Javascript is deployed.)

make.js says:

  • include-ens [14322 bytes, 68 symbols, 19096 base64]
  • include-nf [5588 bytes, 65 symbols, 7451 base64]

Before: (14322 + 5588) * (8/6) ≅ 19096 + 7451 = 26547 bytes

Using base11X (128 - illegal ASCII) instead of base64 → ~6.5 bits
After: (14322 + 5588) * (8/6.5) = 24505 bytes2042 bytes can be saved (minus base11X decoder code size)

I already include a polyfill for base64-decoding so this might be worth it.


The encoder is actually just leftover from a previous version of the library where I didn't know what normalization needed. Now that the spec is stable, it can probably be greatly simplified. At the moment, my encoding process creates a vector of unsigned integers (attached below) that has the following distribution (where I've bucketed all values above 64.)

image

// from src/make.js
let enc = new Encoder();
enc.write_member(...);
enc.write_mapped(...);
...
console.log(enc.values);       // unsigned integer vector
console.log(enc.compressed()); // compressed values byte vector
`[1,0,0,2,6,4,2,2,3,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4,2,2,2,2,2,4,4,4,4,2,4,2,4,2,2,4,2,2,2,2,2,2,4,2,4,2,2,2,2,4,2,4,2,4,4,4,4,4,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,2,2,4,2,2,2,2,2,3,2,2,2,2,2,2,2,2,0,14600,1816,502,10,4,18,40,28,16,110468,684,490,8,8,8,8,8,8,8,8,8,8,8,8,4,8,4,4,4,8,8,8,8,4,8,4,16,4,70,8,4,4,6,4,4,4,8,40,1290,4,4,4,4,8,4,8,4,8,8,8,8,8,4,4,4,4,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,4,4,110532,116,116,116,116,147692,40,74,78,6,304,52,46,322,2180,2089,118,2,6,12,25,1692,1693,81520,14917,63483,6,4,11,10,11,86,4,67,1,6,2,12,1,7,32,13,48,12,8,3,18,2,10,2,34,2,75,52,1,4,6,11,8,14,269,262,339,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,14,2,2,2,2,2,2,2,2,2,1293,0,0,0,0,40824,1034,2932,233446,231453,16595,28878,247568,230711,2,0,0,2,2,3,3,3,2,2,2,2,2,2,3,3,2,2,2,2,2,0,612,292,6,6,78,127986,4,4,4,4,4,4,6,646,882,4,4,4,210,9,16,4,19,2948,0,0,0,0,0,0,0,2,58,0,0,0,212,552,551,0,32,2906,348,281,254,1,4,16,269,4,81,2,4,4,1,0,1,26,2,16,6,6,3,2,17,9,12,2,32,38,4,3,6,33,4,3,6,8,2,2,4,2,2,2,9,26,26,48,2,2,2,3,6,3,10,21,2,2,2,2,5,2,3,2,2,2,3,2,5,2,6,5,6,4,80,2,2,3,10,26,26,2,6,5,6,2,2,2,3,6,3,10,6,6,6,3,2,4,40,36,11,15,7,2,51,32,32,26,26,26,7,18,26,26,2,2,4,8,4,7,11,26,26,2,4,8,7,26,2,4,5,7,26,26,26,26,26,26,26,26,26,26,26,26,26,17,7,17,6,17,7,17,6,17,7,17,6,17,7,17,6,17,7,17,6,10,10,10,10,10,34,2,4,2,4,2,2,2,2,2,3,2,3,2,26,10,2,2,2,2,0,130,226,28,34,14,1376,12,6,36,188,26,4,578,894,14,6658,4400,78,12,1902,28,302,38,18,38,74,32,1478,172,52,3680,2162,496,8,4,6,14,8,20,44,4,20,6,8,20,4,6,6,430,4,8,4,214,32,20,14,12,61674,40388,416,4,2008,34,64,104,32,20,14,16,6,8,4,6,14,8,26,16,16,16,12,18,2094,352,384,24,32,16,3544,6208,43840,52096,52,52,52,16,36,52,56,14,8,10,16,14,16,22,52,52,6,12,18,16,52,6,10,20,16,52,52,52,52,52,52,52,52,52,52,52,52,60,36,16,38,26,36,16,38,26,36,16,38,26,36,16,38,26,36,16,38,34,20,20,20,20,8724,2560,20,22,42,22,110,18,22,8,14,20,44,20,1270,5504,129138,176,232,486,194,93,348,34,14,1386,64,55,36,284,26,91,610,510,14,6930,1599,78,12,8593,3,124,27,2780,2765,11,0,99,96,0,22430,20008,33927,344,337,346,339,6,176,153,358,339,10,18,396,307,90,26,285,6,12,6,16184,64,40,20,14,15005,52186,59251,16,2901,98,0,24722,64,40,20,157,16177,344,337,346,339,6,176,12,12,12,8609,16860,116016,352,382,24,32,16,3594,6144,43840,187389,0,0,0,16,15,0,4,14,8,10,35,14,16,29,0,0,6,12,18,35,0,6,10,20,35,0,0,0,0,0,0,0,0,0,0,0,0,1696,36,35,38,37,36,35,38,37,36,35,38,37,36,35,38,37,36,35,38,1831,0,0,0,0,250340,247285,56,49,50,49,54,53,5,64,5,51,52,51,2961,97,42410,5560,7090,20026,1,1,2,5,2,2,2,3,3,7,27,6,2,3,12,2,50,2,2,2,0,512,48,82,58,54,172,1062,336,114,58,52,48,13774,6414,214,230080,136288,514,48,82,58,54,172,1062,336,114,58,52,48,653,20842,214,19791,274240,0,2,1645,78,284,174,12,24,92,28,32,42,242,796,12,136,2,2,2,2,2,2,52,2,2,4,2,8,438,8,32,12,16,112,5052,886,12,5990,2,2,2,6,1132,108,254,4,4,4,4,4,4,124,28,4,16,16,16,16,176,382,16,22,30,4,4,4,2,12,4,2,10,6,6,2,14,50,8,10,6,6,2,8,10,6,6,294,826,106,524,4112,250,608,168,26,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,198,502,2,24,8,74,2,2,2,2,2,2,2,6,6,2,12,2,2,2,2,16,6,2,2,8,2,2,2,2,2,2,2,2,2,2,2,2,2,330,2,2,2,50,12,16,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,64,2,2,2,6,2,2,2,2,2,2,2,2,2,2,2,2,2,14,2,2,2,12,2,101400,2,2,2,2,2,2,6,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,4,6,2,2,2,2,2,2,2,2,2,4,4,6,2,8,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,2,2,2,2,2,2,2,2,6,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,142,2,12,2,1632,22,58,282,176,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,2,2,2,2,2,2,2,2,2,2,2,2,2,14,2,2,2,12,2,14,2,12,2,24,8,92,6,2,108908,12,50,278,742,68,2,2,2,2,2,2,36,68,2,2,2,2,2,2,36,68,2,2,2,2,2,2,36,68,2,2,2,2,2,2,36,68,2,2,2,2,2,2,11378,2,4,2,2,2,2,10,2,2,2,2,2,2,6,2,2,2,2,4,8,2,4,6,4,10,2,2,2,2,4,6,4,4,14,10,4,10,2,4,2,4,6,4,4,4,8,2,4,6,2,2,2,8,2,2,2,2,4,6,4,2,2,14,2,6,2,2,2,10,2,2,2,2,2,2,6,2,2,2,2,12,2,2,4,2,2,2,2,10,2,2,2,2,2,2,6,2,2,2,2,1248,2,428,28,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,42,2,133982,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,2,2,2,2,2,8,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,6,2,2,2,2,2,2,2,4,2,2,2,2,2,4,4,2,2,6,2,2,2,2,2,2,2,2,2,2,2,2,2,6,6,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,6,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,16434,14521,1373,12,24,92,28,32,495,780,870,64,51,12,26,16,3,9,11,11,14,4,21,5,28,548,8,32,12,16,112,5048,15416,12,20981,4,20,6,18,13542,108,13965,2,2,2,58,2,2,67,2,2,59,62,2,58,1855,108,8,14,24,1694,1693,29,244,253,14,4,11,1710,0,15522,17239,8,26,4,23,2,7,26,4,23,2,127,0,0,6,22918,220,31960,26532,41789,80,28,18,52,88,14,40,52,1290,76,12,46,40,42,106,42,22,310,188,56,10,60,18,54,26,50,104,36,54,1512,144,920,46,16,22,36,152,954,96,240,46,38,44,108,6,724,20,24,26,232,16,10,234,20,26,16,122,34,36,160,1162,92,42,1480,10,166,32,26,42,78,10,534,48,64,2032,132,46,116,48,18,14,104,10,64,2158,894,24,10,8,16,36,4,162,432,10,678,20,100,14,18,16,182,14,456,14,98,34,94,474,14,34,654,252,12,364,174,92,756,266,1148,54,114,102,136,22,12,66,152,20,692,14,18,18,32,30,8,158,8,12,1962,60,938,24,46,566,26,142,92,1134,30,30,70,74,398,24,134,496,62,418,42,10,440,368,250,12,10,1868,18,312,308,6,94,210,26,8,14,196,68,12,28,334,102,8,366,6,38,504,96,14,140,20,6,20,60,790,800,20,76,44,16,20,8,80,8,34,10,26,54,30,16,118,30,8,39101,33581,335,48,14,342,4,10,8,4,377,386,4,381,14,4,18,8,20,14,10,120,24,20,6,30910,280,261,4516,4513,70,67,20046,19889,127,47,5712,1009,4331,3370,4698,3606,11280,54557,18,79342,2352,1176,2352,1176,1176,2352,2352,1176,2352,1176,1176,1176,1176,7503,61791,280,261,4516,4237,1458,1747,1744,1563,2504,10126,4806,2157,2583,21842,30051,7564,1162,577,9322,19041,15576,13392,9863,19793,20040,2369,14215,28140,32381,1164,13040,22074,37351,1296,13204,15025,70,67,8118,5093,367,4280,97,14074,20419,31628,29413,2960,20723,4,4,4,10,4,4,4,4,4,4,4,4,4,4,6,4,4,20,6,6,6,18,4,46788,19111,20396,1027,15341,16701,2918,2776,28928,30867,1922,4444,10470,4664,3444,758,636,3886,19737,1586,1916,1546,8382,6746,4366,38621,2534,12062,3630,10276,12258,33179,9526,11204,1838,19765,15902,3214,21161,4250,3238,2852,15268,33423,1122,590,9164,3102,3706,2478,4660,3082,172,3878,4742,2170,1302,19163,486,2114,3154,7798,5878,10065,25581,3146,15032,2108,7223,3280,10224,5226,31805,1812,7010,1934,618,7232,528,12328,34545,23410,23901,31,20640,1860,3174,9480,5609,20833,3686,16888,31113,7004,2134,9962,978,17585,19400,21111,8148,9015,15742,3751,12116,21181,2358,15686,6800,3266,15839,18412,17999,4883,16334,16009,9098,19821,1398,192,11632,10444,2832,4294,3578,32179,666,2658,2802,3506,5234,4696,14598,2426,2138,110,39013,10326,2402,18390,25051,1592,224,1332,5394,1100,1664,2690,2132,1270,7534,5231,5738,1614,33381,280,1076,14358,12276,976,22465,600,1804,4198,8480,4497,18721,4138,2524,934,1220,10028,366,5730,344,9180,2436,164,416,37145,21574,12300,2568,27565,9397,1192,5672,162,4788,2258,3992,2280,7540,5888,7714,29193,24396,34633,10724,240,2716,694,2778,672,1572,2378,13980,36321,8578,26772,35993,6620,8610,17024,24381,882,3494,5856,17918,35001,972,4268,4956,630,692,2170,3650,952,4910,4780,36,4566,2604,34629,14070,13625,15206,1424,8900,8530,2920,1168,28175,3176,10298,3641,170,740,5027,1101,13694,31023,26860,25079,101,6462,2138,13318,17057,9010,3283,20750,3549,7170,6531,21871,6949,2304,1332,7220,10539,17048,1856,1252,68,14,84,15246,13615,1534,3242,2508,2688,394,4068,26,88,2328,6571,2994,36369,626,204,760,54,218,1176,210,196,944,208,1912,20,2124,424,76,200,1722,294,350,1000,2532,326,528,1176,378,1006,2270,346,22,1,16,12,14,454,130,638,1128,42,112,610,294,976,1236,2418,268,726,112,820,106,1372,260,3414,568,120,28555,247026,229803,26595,1822,153,975,906,118,654,102,1350,143,136,146,1264,178,290,32,540,396,1876,14,288,136,598,236,139,268,91,292,132,800,176,108,520,572,326,8,118,2118,130,782,820,31,174,504,672,3186,2787,244,246,654,298,106,452,4,342,34,50,172,19,792,970,542,374,448,306,660,398,1690,314,1812,912,138,32,594,114,89,108,5,33,152,162,764,1120,628,590,442,2060,206,230,266,72,24,96,1454,2324,201052,11,5922,258159,2294,66,271392,5390,17414,245535,150,78679,35,48,4,2937,0,3048,3047,24988,17,161,4,4,4,4,116,4,4,71,114,179,4,4,4,10,4,4,4,4,4,4,4,4,4,4,6,4,4,20,6,6,6,18,4,18,8,16017,335,48,14,8425,13,16392,16527,12,1,18,1682,15508,15513,6,4,24,9,1,15,15508,15513,6,4,24,9,1,15,15508,15513,6,4,24,9,1,15,15508,15513,6,4,24,9,1,15,15508,15513,6,4,24,9,1,1240,6,50,43,9,20,38,45,12,16,23,26,33,6,11,4,12,4,4,256,291,8,54,51,58,45,12,16,23,26,27,11,16,8,27,2,58,45,12,7,26,27,11,16,8,256,291,8,54,51,20,38,13,31,12,16,23,26,27,11,16,4,4,27,6,6,9,20,38,45,12,16,23,26,33,6,11,4,12,4,4,35,8,6,50,43,9,20,38,45,12,16,23,26,33,6,11,4,12,4,4,2989,30,24710,25388,3559,3861,17929,15242,5404,24978,24947,5385,12024,5634,5903,9879,6782,7165,10310,10021,22090,4165,12052,26481,2413,13750,6397,384,10921,18,33922,25799,8049,2956,7720,21714,22073,11868,498,19683,13552,3821,1,7254,17793,1672,30510,25451,5967,2915,9,18,222658,222083,156,26,142,240,62,156,47,14433,238392,223705,14,32,38,223050,237765,14684,76,223100,223079,26,1455,1472,18,294996,294867,28,14919,15032,22,88,10,15043,15204,4,54,44,58,100,16,18,50,20,224606,209783,14667,42,225032,225007,12,42,304,203,32,64,116,168,52,134,32,108,36,16,30,680,543,546,395,70,2265,3534,575,76,50,259,334,1,246,227440,227299,10,30,40,16,128,227980,132,227835,94,24,157,284,18159,18484,228736,228361,42,30,24,228938,228913,14,56,18753,18878,28,164,101,364,86,5,34,19097,19356,86,42,88,19469,250434,250381,19560,6,6,40,297360,297255,17926,37491,259042,24132,263407,18,19727,19822,102,20,68,272,20109,59,20208,232576,232473,258,8,4,3,92,40,72,27,22,94,40,8,52,22,132,168,70,248,233336,233373,129,216,54,194,233498,233373,185,55,21237,21622,42,62,75,21525,21958,58,234812,234573,554,349,22111,22256,22289,71,11612,6,10966,199,13346,31143,18044,8,12,122,21,235744,258291,22882,233,410,102,235472,235453,221,490,23277,23370,194,142,380,235510,235407,23941,24082,236300,236197,24075,24136,90,237020,15107,15326,236887,237788,237561,28,203,350,80,114,107,80,30,26,237362,237523,502,126,25205,25392,7,237588,237999,746,237536,96,237455,230,53,5,25865,25960,102,11,108,207088,206783,238140,237965,280,26,54,239472,239375,42,239936,446,239923,34,27069,27122,324,42,42,40,138,27485,27666,241188,241135,241320,241219,219230,218909,242466,46,280,270479,24,28120,242686,1,78,52,242729,88,28193,28324,28297,160,272142,243613,124,128,28625,273030,244127,244360,86,244331,184,29047,29218,20,10,245338,274163,275282,245705,6,29507,275634,245595,29795,29840,9,58,247052,246853,29891,30092,118,134,30241,277992,62,277979,278272,247485,247688,247633,202,22,248234,146,248197,248464,248431,222686,253715,31162,162,31215,31334,19729,268772,28,26691,18,222005,6,6964,38501,31820,11,36,24531,24572,4,20,82,250028,250029,112,140,148,275,308,84,224,519,238,4,32,250036,618,299,282451,32652,4,70,253288,253131,250768,283549,8,283808,578,284365,33226,24,22,4,128,65,268,87,302,161,134,54,182,64,33807,33998,6,252936,252703,14,34129,34186,43133,296934,368,288079,18,34738,154,314,406,254118,253945,44,180,184,254832,61013,193649,29,104,194012,193555,200,257332,54,256689,186,64,257082,257061,570,136,762,56,257994,257245,38891,38980,257920,296737,39354,29217,29410,259140,426,298839,16,39636,260180,299695,299976,260313,260890,260519,39773,39916,252,54,120,40031,302788,262203,604,378,41053,62,41204,263886,305067,305178,530,262,264107,41673,41798,10,14,20,14,74,265610,3,592,608,2222,1954,2,2,2,2,2,2,2,250,2,4,168,6,70,2,2,6,508,2,1452,256,82,2,204,20,10,10,10,26,20,4,2,4,18,36,20,10,10,10,26,8180,2,16,14,2,16,78,2,16,344,182,12,26,20,4,122,4,4,4,6,4,14,4,4,6,4,356,6,1140,2,2,2,2,2,2,2,2,2,2,5006,1226,192,676,2,2,2,2,2,2,2,2,2,2,2,2,2,2,58,2,104,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,4,98,34,8,34,2,2,2,16,2,12,16,20,4,14,6,6,2,2,2,2,2,2,2,2,2,34,2,4,2,2,6,2,2,2,2,4,2,2,2,2,2,2,2,6,2,2,2,2,2,2,10,2,2,2,2,2,2,2,2,2,6,8,8,14,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,6,2,2,2,2,2,2,2,2,2,4,2,6,6,2,2,2,6,2,2,2,2,2,2,2,2,101936,2,2,34,2,2,2,2,12,4,22,2,6,2,2,2,2,2,2,2,2,4,2,2,2,2,4,4,2,4,2,4,2,2,2,2,2,2,2,2,2,354,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,20,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,8,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,124900,2,56,2,2,2,4,54,2,2,72,224,2,210,2552,1888,2,2,10,10,2,18,8,228,2,26,262,12,67,2,10,30,492,2,1622,256,67,0,302,20,10,10,10,53,98,0,130,2,131,66,20,10,10,10,53,6077,9,10,12,17,18,36,10,9,1709,124,0,131,10,2,133,112,0,26,25,30,29,0,26,25,30,17254,6,17401,0,0,0,0,0,0,0,0,0,2,9,24758,86,24833,0,0,0,0,0,0,0,0,2,0,0,0,0,0,104458,1655,102801,0,0,0,2,0,0,0,0,0,0,0,0,0,2,7,2,2,2,2,2,2,2,2,94,5,40190,15467,1,52,4,1,4,20,1,14,2,8,4,18,4,24951,2,2,2,2,2,2,2,2,2,86,5,28,2,23,10,48148,3956,6667,6606,52027,3,1692,1693,3,0,4,11,18,3,1692,0,1693,3,5,1704,1693,17,14,9,16,1692,1693,19,16,4,0,6,0,3,1692,1693,6,3,1692,1693,3,4,6,3,1692,1693,3,4,3,4,21,2,0,2,6,2,0,2,4,0,0,2,0,0,2,6,0,6,0,8,139,2,2,2,2,2,2,2,2,90,0,0,2588,0,0,20,19,202,50,17,0,49,0,0,2,2,2,2,2,2,4,2,2,2,2,4,4,2,4,2,4,2,2,2,2,41,7,20,18,39,172,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,2,0,0,0,2,0,2,0,2,0,0,10,0,0,0,4,0,2,0,0,0,2,0,2,2,0,2,0,14,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,6,0,0,0,0,0,71,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,2,0,0,0,0,0,44,0,2,0,2,0,0,0,0,2,0,0,2,0,2,0,0,0,0,0,8,0,0,0,0,0,71,0,0,0,0,4,0,0,0,0,4,0,0,0,0,2,2,0,2,0,2,0,10,0,0,0,4,0,0,2,0,0,0,2,2,2,0,2,0,14,0,0,0,2,0,2,0,0,0,0,2,0,0,0,0,2,0,0,0,2,0,0,0,0,2,0,6,0,0,0,0,71,0,4,0,4,0,2,0,16,0,2,0,30,0,2,4,0,8,0,37,0,4,0,2,0,13,0,2,0,13,0,1,0,4,0,14,0,2,0,3,0,0,0,0,1,4,2,2,0,4,0,2,0,13,0,2,0,13,0,1,0,4,0,14,0,2,0,3,0,0,0,0,1,4,2,3,0,0,0,1,2,6,7,0,0,2,0,0,6,2,2985,40,29,10,12,0,8,19,0,0,17,24622,112,1550,1270,1908,0,0,0,0,0,0,0,256,0,0,256,0,0,0,0,0,512,0,1516,256,49,16,556,0,0,0,0,3,133,4,24,0,0,110,0,0,0,0,3,6135,0,0,0,0,0,0,0,0,1675,31,6,18,3,0,16302,16309,26,25,30,29,0,26,25,30,29,17284,6,17403,2,2,2,2,2,2,2,2,2,17,5,24762,124,24877,2,2,2,2,2,2,2,2,17,2,2,2,2,2,88406,13552,101955,2,2,2,17,2,2,2,2,2,2,2,2,2,17,52656,0,0,0,0,0,0,0,0,52545,30,43052,18367,130,107,104,16,73,53,112,91,108,17,123,122,17,32690,0,0,0,0,0,0,0,0,0,57519,40,2,37,20,16,49974,6919,11694,688,55475,0,0,0,0,2,0,0,8,0,0,2,0,0,38,27,0,0,0,2,0,0,0,0,0,117,2,92,36,0,0,0,6,0,0,0,0,0,2,0,0,0,0,0,1700,0,1711,27,2,3,46,47,30,3,5,4,14,13,2,20,43,12,20,0,8,39,51974,0,0,0,0,0,0,0,0,51965,6,6,2580,33,12,22,17,142,6,20,2,21,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,12,0,0,58,160,2,48,8,2,59,2,2,46,8,2,59,2,2,46,8,2,59,50,8,2,57,48,49,50,49,2,48,49,2,2,46,47,48,49,2,2,46,47,48,0,49,50,49,50,49,2,2,46,8,2,57,48,8,2,69,10,2,2,44,2,8,2,59,2,2,46,8,2,59,2,2,46,8,2,59,2,2,46,8,2,59,50,8,2,59,2,2,46,8,2,49,2,38,2,6,2,49,2,38,2,6,2,49,2,38,2,6,2,49,2,38,2,6,2,1,2,1,2,69,58,2,8,2,9,8,2,69,60,39,2,38,2,6,2,49,2,38,2,6,2,59,2,2,46,4,53,2,2,46,4,53,2,2,46,4,3,47,48,49,50,49,50,49,2,2,46,47,2,46,49,2,2,46,47,48,49,50,49,50,49,2,2,46,47,48,49,2,2,44,2,49,2,2,46,4,53,2,2,46,49,2,2,46,4,53,50,49,2,2,46,4,3,4,3,4,3,4,3,4,3,4,3,4,5,2,0,0,4,3,4,4,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,59,2,2,46,39,0,0,0,48,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,59,2,2,46,39,0,0,0,9,2,2,46,4,0,3,49,2,2,3,2,2,46,0,3009,44,7,0,35,30,31,0,2,28,15,24514,208,4,259,376,2,2,16582,52,42,2,4,2,2,2,2,2,2,2,2,2,2,2,8,8,10,14,8,10,28,328,6,6166,2090,242,2,2,4,4,104,4,2,6,2,2,6,2,4,14,8,2,2,8,2,2,10,2,4,6,12,6,2,2,2,2,4,4,2,2,4,2,2,16,2,2,6,8,22,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,8,2,30,18,2,2,2,22,2,4,2,2,4,8,2,2,2,74,6,2,6,32,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,101896,2,80,2,1094,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,6,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,82,2,16,124586,98,0,4,130,27,105,0,0,2,1,2,2,2,5,8,7,4,4,4,100,26,4,29,26,4,143,17398,6,17409,134,125,0,0,104,14,24684,4,4,8,0,2,2,0,4,4,2,4,0,16,0,10,28,2,4,6,2,10,3,4,0,1,6,2,3,0,6,0,0,12,0,4,10,8,24955,0,0,0,0,0,0,0,0,0,2,0,0,0,0,108,11,4,0,1,16,4,11,26,13,19,16,4,19,16,0,4,11,22,11,2,0,6,125,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,104,1,0,2822,0,130,0,0,0,0,0,0,0,4,0,2,0,12,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0,4,0,0,2,0,0,0,4,0,0,0,2,0,0,14,0,2,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,4,0,1,0,0,0,0,0,0,8,0,67,4,0,0,0,0,0,4,0,0,14,4,1,4,28,0,12,0,0,9,5,8,7,4,21,20,6,1,1,1,2,4,51,2,48,7,49,54,19,7,3,38,33,26,25,2953,16520,0,0,16317,7,16326,0,0,0,0,0,0,0,0,0,0,0,0,0,16309,0,0,0,0,0,16310,974,6,17409,142,135,2,2,128,4,24848,17,147,148,18,175,146,12,79,60,38,33,34,17,0,18,113,61,176,153,116,59,64,16,18,0,33,16,18,0,175,62,80,34,0,179,100,33,24869,2,2,2,2,2,2,2,2,2,17,2,2,2,2,120,29,24,0,23,14,0,0,0,10,0,0,0,0,0,6,0,0,29,28,11,12,2,127,2,2,2,2,2,2,2,2,2,17,2,2,2,2,2,2,2,2,2,17,2,96,10,0,2732,0,224,2,0,0,2,46,0,0,0,0,0,0,47,1,0,50,0,0,0,0,47,0,48,47,0,1,50,0,0,0,47,2,0,46,0,0,0,49,50,0,0,0,0,0,45,0,46,0,47,0,0,1,0,4,0,46,0,47,0,0,1,0,4,0,3,50,0,47,0,1,0,0,50,0,0,0,45,3,0,4,0,46,0,0,47,48,45,1,0,0,1,50,47,1,50,0,0,47,48,47,48,0,49,4,3,50,49,0,2,1,0,50,47,48,49,50,45,3,48,0,0,2983,104,3,4,112,24,129,4,11,0,4,0,0,0,2,0,4,0,0,0,98,0,0,0,0,0,107,17392,6,17409,112,52550,0,0,52545,5,24846,83,100,115,78,20,18,41,60,55,77,34,38,55,14,29,30,7,0,78,16,65,27,21,1,14,18,2,68,16,15,55,63,52,68,16,18,103,32738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57519,34,127,2,114,28,0,0,0,143,0,0,2,0,0,92,0,0,6,6,10,0,2,51952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51953,5,6,2730,2,262,49,0,50,0,49,2,2,1,0,58,1,57,2,56,55,0,1,50,0,47,0,48,0,0,10,55,0,46,0,8,7,0,47,0,48,10,9,0,0,8,7,10,1,7,0,47,48,0,10,1,57,0,50,0,47,0,1,50,10,57,48,49,50,45,3,50,0,8,7,0,8,2,1,7,0,10,0,1,2,1,2,1,2,1,0,0,2,0,0,0,0,0,0,0,0,0,0,57,48,10,0,57,58,9,0,0,47,58,0,0,0,0,9,0,0,10,0,272,0,273,2981,5,34,17060,42,32,4394,4584,2,2,4,8,8,2,10,2,16,8,4,24,12,20,12,10,8,2,8,6,86,20,103634,2,2,2,2,2,2,8,98,138,0,17258,7406,0,0,4,8,6,0,4,2,2,12,4,50,10,16,2,2,4,0,18,2,28286,53117,2936,0,60,31,7,16,30,45,16520,16309,0,17284,7500,52,16,79,98,37,8,15,12,4,145,140,36,177,2,0,22,5,160,113,114,23590,48471,3010,1,43,46,33,34,33,306,98,112,0,17284,7586,77,10,50,143,48,78,0,83,120,153,136,13,32,17,135,124,73,0,0,28,15496,40305,3014,55,58,23,30,4,11,57,96,114,0,17284,7482,77,2,28,152,103,104,0,0,93,60,117,118,69,0,74,12,0,15,0,0,37030,61859,2998,43,3,44,1,6,3,1,6,13,26126,28,4,4,2,12,22,6,8,4,4,34,6,24,24912,10,0,6,1,12,56,6,2,2,4,12,2,26,24946,104,0,7,4,16,18,179,1,68,39,136,17,18,24926,2,126,29,71,10,11,3,96,99,16,15,50,15,25080,37,75,10,71,176,17,85,9,55,170,41,42,147,24978,46,47,86,11,25,47,70,67,68,0,16,15,16,7,0,26156,24922,25050,25026,25080,24976,25046,0,173,1,5980,3,0,1,2042,1,83,1,2,1,56730,16,238,1,48543,4,803931,240,0,0,768,112,274,7,262,45,0,1,0,2,0,2,0,1,71,11,47,21,15,1,100,7,1,6,1,2,0,4,34,1,29,27,90,11,57,9,8,1,23,4,0,9,0,3,0,5,42,3,59,8,41,24,0,33,53,3,0,18,0,7,9,2,28,3,55,1,0,7,1,2,1,3,8,1,9,2,25,1,1,3,55,1,0,5,3,2,1,3,2,1,29,2,2,1,10,3,55,1,0,8,0,3,0,3,19,2,21,6,0,3,55,1,0,7,1,2,1,3,6,3,9,2,29,1,58,5,2,3,0,4,8,1,39,5,54,1,0,7,0,3,0,4,6,2,10,2,28,3,55,1,0,7,0,3,0,4,6,2,10,2,14,1,11,4,54,2,0,7,0,3,0,4,8,1,9,2,28,3,69,1,3,6,0,1,0,8,17,2,60,1,1,7,11,8,97,1,1,9,10,7,72,2,26,1,0,1,0,1,3,2,48,20,0,2,4,11,0,36,8,1,99,20,22,4,3,3,0,3,1,7,2,4,12,12,0,1,9,4,702,3,945,4,27,3,28,2,29,2,63,32,8,1,44,3,0,1,116,2,33,1,117,12,3,12,218,5,56,10,0,29,1,1,47,31,48,5,46,17,37,9,11,3,29,13,55,14,47,20,151,3,0,21,3,1,5,1,1,3,197,64,719,33,3069,3,140,1,95,32,553,6,104,2,30163,4,0,10,31,2,79,2,271,1,2,1,3,1,22,5,3,1,82,2,49,18,25,18,12,1,37,8,24,13,43,4,46,14,35,1,66,14,11,1,7,2,44,3,49,1,0,3,1,2,4,2,0,1,40,5,4,2,235,8,0,2,20271,1,736,16,15,16,972,1,225,1,148,5,1669,3,0,2,4,4,39,3,3,1,164,2,572,4,386,2,79,3,69,11,48,4,121,3,52,15,40,1,1,2,9,4,44,11,6,1,60,3,35,14,15,2,43,1,11,3,47,14,7,4,0,2,91,12,5,1,1,1,156,12,20,4,54,2,0,7,1,2,1,3,8,1,9,2,1,7,2,5,191,18,22,1,80,20,234,7,1,9,26,2,81,17,105,13,100,15,255,15,244,6,0,2,1,4,0,1,0,2,140,7,1,7,2,1,27,10,39,7,0,4,7,1,8,11,45,16,404,8,0,8,81,22,0,14,121,6,2,1,0,2,0,7,0,1,65,5,0,2,0,5,346,4,8,2,0,1,47,7,2,5,5372,1,5,15,13977,5,58,7,1047,1,0,55,6,4,80,1,10,2,19626,2,4704,46,1,23,541,5,2,6,7,8,1,7,29,4,147,3,1978,55,3,50,7,1,13,1,21,5,0,15,1359,7,0,17,1,7,0,2,0,5,99,1,159,7,374,1,60,4,507,4,991,7,108,7,792500,240,0,0,119,17,0,31,0,6,5,11,21,1,2,4,0,16,0,55,0,4,0,2,24,15,0,15,0,1,0,1,2,8,3,1,5,6,1,1,2,4,3,1,0,5,0,1,2,13,0,1,2,7,2,10,1,1,0,1,0,4,3,3,0,2,2,1,7,1,4,5,3,11,2,1,0,1,4,1,3,2,1,2,0,1,7,4,5,1,0,3,1,1,2,4,9,38,1,2,0,1,4,5,0,1,0,11,0,8,0,4,0,4,0,4,0,12,0,4,1,4,0,6,0,2,1,2,1,5,9,5,1,2,5,1,3,7,0,2,0,4,2,7,7,1,1,8,0,1,5,6,3,2,4,1,5,5,1,1,0,1,0,8,0,1,1,8,5,11,30,4,0,1,0,5,0,1,4,1,10,2,1,4,1,2,0,4,0,2,2,1,0,3,9,8,1,2,125,4,55,5,1,2,0,1,17,2,18,19,1,3,0,1,1,4,1,2,3,6,1,2,1,4,1,1,0,9,0,2,2,1,1,1,1,1,2,2,33,44,0,1,0,21,3,4,1,11,0,8,1,3,3,9,1,4,0,1,2,3,1,1,0,5,2,10,1,2,1,1,11,12,2,8,1,3,0,2,2,6,0,1,3,2,0,2,2,4,3,2,0,4,2,8,1,1,0,3,0,1,1,6,0,4,1,4,0,5,2,9,0,2,7,2,0,1,1,1,2,6,3,1,0,16,0,11,1,16,0,2,0,13,0,23,0,7,0,2,0,19,4,2,1,1,0,3,1,2,2,5,1,1,0,30,54,5,1,2,228,38,0,30,0,0,0,32,94,34,11,1,672,1,715,1,2881,2,1310,1,306,2,84,5,2031,16,23,8,46,17,1935,1,2046,1,354,1,52378,16,238,1,159,1,78,9,48294,4,5326,8,798340,4096,0,0,768,5,0,3,0,1,0,1,25,2,615,17,0,27,0,1,0,2,0,1,1,1,71,5,53,11,140,1,5,4,65,16,0,10,159,9,8,1,23,4,0,9,0,3,0,5,42,3,60,4,0,2,67,15,0,12,59,1,15,1,109,1,0,1,13,1,8,1,37,1,60,1,15,1,109,1,15,1,109,1,0,1,13,1,7,2,101,1,13,1,8,1,99,1,15,1,6,2,100,1,4,1,9,1,6,2,102,1,13,1,8,1,113,1,3,1,14,1,87,3,12,4,107,3,12,4,75,2,26,1,0,1,0,1,54,2,0,1,4,4,1,1,0,3,0,2,61,1,102,1,7,1,0,2,81,1,210,21,49,27,409,3,947,2,29,1,156,1,213,1,142,3,218,2,70,1,19,8,1,1,179,2,13,1,100,2,57,1,10,2,66,1,4278,3,140,1,792,2,30292,2,275,1,36,1,150,1,101,3,36,1,94,1,11,1,238,1,0,3,1,2,4,2,0,1,51,1,245,1,20271,1,2134,5,1681,1,0,1,39,3,3,1,164,2,572,4,386,2,79,3,69,11,48,4,191,1,40,1,13,1,56,2,68,3,35,1,10,2,61,1,75,1,8,1,105,2,177,2,79,2,0,1,13,1,8,1,13,7,2,5,204,1,2,1,22,1,80,1,8,1,1,1,3,2,234,1,14,2,125,1,117,2,114,1,268,2,244,1,11,2,3,1,155,1,82,1,17,1,80,1,420,1,257,1,0,2,80,1,424,2,19372,5,58,7,20838,1,9056,7,0,17,1,7,0,2,0,5,260,7,374,1,60,4,507,4,991,7,108,7,0,0,11904,26,0,4,0,83,275,1,24,9,981,6592,63,20992,23053,2,0,1,0,2,9,1,0,1,0,2,1,3,30135,1,36892,42720,31,4154,5,222,1,5762,13,7473,5150,4939,4,4192,0,0,36,1,7,1,1,10,36,1,65,4,5,1,2,1,780,1,2687,1,4568,1,7,1,27,1,3,1,14,2,74,1,3,1,1,6,1,2,0,2,1,3,0,5,85,1,5,1,112,4,26,1,81,1,11,1,0,1,7,1,2,1,11,1,1,1,27,1,123,1,55,1,4,1,7,1,3,2,0,1,11,2,3,2,80,1,6,3,12,1,1,1,51,1,10,1,7,1,15,4,2,1,2,1,384,8,7,3,4,4,0,2,2,7,5,4,2,1,3,2,2,1,3,1,0,2,2,2,0,8,9,4,0,9,7,3,3,1,4,7,2,1,1,1,2,2,1,3,0,2,3,2,0,3,0,3,12,5,0,1,0,5,11,11,1,2,0,1,1,1,0,4,2,2,13,6,9,2,5,1,0,1,1,3,1,5,0,2,7,7,5,5,1,2,0,3,0,1,1,1,4,2,1,2,2,1,1,1,0,1,2,1,1,3,0,1,5,1,3,2,0,3,2,1,0,2,5,1,0,2,5,1,0,1,0,1,0,3,0,1,0,4,0,4,0,5,2,1,0,3,1,7,0,2,0,2,0,1,9,1,13,2,44,1,2,9,0,7,8,12,1,2,29,1,14,2,504,1,275,5,2,19,3,8,1,1,3,1,1,1,18,2,5,1,7,2,1,26,1,32,0,34,6,2,0,14,583,1,489,1,26,1,550,8,46,1,105679,116,345,1,416,20,11,20,7435,4,0,39,115,15,1,15,0,14,1,37,56,1,60,1,0,1,1,12,1,10,0,3,0,1,10,19,177,6,187,2,111,2,1,1,2,2,82,2,2,1,262,1,64,1,0,3,0,3,5,1,23,7,1,2,7,12,0,2,3,2,0,4,1,13,1,2,0,8,1,2,0,6,0,5,2,1,0,5,0,4,5,2,5,2,0,1,5,6,0,3,2,2,0,1,85,4,23,4,11,2,71,5,7,2,16,3,0,1,5,2,128,3,3,5,6,1,35,1,4,1,4,1,4,1,2,1,2,1,2,1,0,1,7,5,105,4,47,8,47,2,136,1,9,1,280,14,294,1,25,5,3,11,0,6,0,0,0,0,28,12,1,20,9,14,0,1,1,0,0,97,26,99,17,0,6,0,6,2,1,0,1,0,1,0,1,0,1,2,1,4,1,4,1,0,1,2,1,33,1,0,1,7,1,12,1,2,1,0,1,8,1,13,1,0,1,0,1,80,1,0,1,0,1,35,1,7362,1,52,1,0,0,0,0,960,1,0,0,1,1,18,1,2,9,3,0,0,0,1542,3,1,1,1,1,0,5,10,31,1,21,9,10,14,21,0,18,0,5,0,2,0,18,1,2,0,1,0,13,0,2,9,1,3,1,0,2,1,7,3,3,2,3,0,2,79,48,239,31,9,4,0,15,4,24,25,15,0,12,62129,17,380,16,126,1,44,3,114,1,4075,31,125,3,0,0,0,0,45,1,0,0,0,8,1,14,0,0,1,0,0,12307,1,230,1,0,0,1,1,0,0,97,26,0,0,1,4,5,22,1,14,1,7,1,18,9,0,0,0,2304,78,0,2,3,3,7,4,1,11,0,6,0,4,0,2,70015,10,0,0,0,0,0,0,0,10,1,16,1,14,5,19,5,0,0,0,12307,1,44,86,5,2,1,94,98032,4,0,7,0,2,287,4,14,1,28,3,1,1,13,4,0,0,0,2,0,0,97,26,0,0,1,11,15,18,5,1,14,0,0,0,4352,95,1,18,0,140,7698,1,230,1,30819,29,642,11172,11,23,3,49,0,0,0,2,0,0,97,26,0,0,1,3,25,18,9,12,12,9,3,0,0,0,1072,32,0,12,0,2,42,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,3,1,0,1,0,1,0,1,0,1,0,2,4,1,2,1,6,1,0,1,4,1,4,1,6,1,2,1,0,1,0,1,18,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,4,1,41293,2,0,0,1,1,0,0,0,0,1,8,5,2,18,5,23,0,0,0,1425,17,0,29,0,2,0,1,1,1,7,27,3,5,62761,1,0,0,0,0,8362,1,0,0,0,20,8,1,9,0,0,0,3585,50,0,7,4,28,0,0,0,0,3647,1,0,0,0,2,5,14,7,1,12,9,0,0,0,2433,3,0,8,1,2,1,22,0,7,0,1,2,4,1,9,1,2,1,4,7,1,7,4,1,22,0,2,0,0,0,0,0,0,0,20,1,13,9,12,0,0,0,2947,1,0,6,2,3,0,4,2,2,0,1,0,2,2,2,2,3,2,12,3,5,2,3,0,4,1,1,5,1,13,21,67333,1,0,1,54,2,3202,50,12,1,0,0,0,0,0,0,0,7,18,5,5,11,0,0,0,912,1,26,18,0,16,0,0,1,1,0,0,0,0,1,20,9,2,5,20,1,14,0,0,0,3840,12,0,7,0,46,0,4,0,4,0,4,0,4,0,4,0,12,0,3,3,2,0,1,4,7,0,17,0,4,0,4,0,4,0,4,0,4,0,12,0,3,0,15,0,7,3,2,0,0,0,0,0,0,0,7,21,18,13,21,11,8,9,0,0,0,2561,3,0,6,3,2,1,22,0,7,0,1,1,1,1,2,1,1,0,5,3,2,1,3,2,1,9,1,8,17,0,0,0,0,0,0,0,12,1,15,0,0,0,3713,2,0,1,0,5,0,24,0,1,0,12,0,10,1,5,0,1,0,7,0,10,3,2,0,0,0,0,0,0,0,7,21,10,1,18,1,20,9,0,0,0,2689,3,0,9,0,3,0,22,0,7,0,2,0,5,1,10,0,3,0,3,1,1,14,4,1,12,6,7,0,0,0,0,0,0,0,20,5,12,21,7,21,0,0,0,3073,12,0,3,0,23,0,10,0,5,1,9,0,3,0,4,6,2,2,1,1,1,1,4,1,10,6,9,0,0,0,0,0,0,0,2,15,16,15,13,15,6,15,0,0,0,12307,1,230,1,8,41,0,1,111,32,0,0,0,1,0,0,0,0,1,13,25,1,14,13,1,18,0,0,0,4096,74,1,25,0,58,39238,24,96,32,0,0,0,0,0,0,0,7,5,15,18,7,9,1,14,0,0,0,4304,33,5,4,1,3,7206,1,4,1,0,0,0,0,0,0,0,1,18,13,5,14,9,1,14,0,0,0,1376,39,0,1,3,3,0,0,0,0,0,0,0,13,1,12,1,25,1,12,1,13,0,0,0,3328,1,0,2,0,8,0,3,0,41,1,8,0,3,0,6,3,11,0,4,1,26,0,0,0,0,0,0,0,11,8,13,5,18,0,0,0,6016,35,1,3,0,11,1,27,0,1,0,4,0,4,2,10,5,10,485,32,0,0,0,0,0,0,0,11,1,14,14,1,4,1,0,0,0,3200,1,0,11,0,3,0,23,0,10,0,5,1,9,0,3,0,4,6,2,5,1,1,4,1,10,0,3,0,0,0,0,0,0,0,5,20,8,9,15,16,9,3,0,0,0,4608,73,0,4,1,7,0,1,0,4,1,41,0,4,1,33,0,4,1,7,0,1,0,4,1,15,0,57,0,4,1,67,1,4,7,20,2,26,6629,23,8,7,0,7,0,7,0,7,0,7,0,7,0,7,0,7,32033,6,1,6,1,6,8,7,0,7,81072,7,0,4,0,2,0,15,0,0,0,0,0,0,0,19,9,14,8,1,12,1,0,0,0,3457,3,0,18,2,24,0,9,0,1,1,7,2,1,3,6,0,1,0,8,5,10,1,3,66539,20,0,0,0,0,0,0,0,15,18,9,25,1,0,0,0,2817,3,0,8,1,2,1,22,0,7,0,2,0,5,1,9,1,2,1,3,6,3,6,5,1,18,0,0,0,0,0,0,0,20,8,1,1,14,1,0,0,0,1632,10,277,50,63050,1,0,0,0,0,0,0,0,19,25,18,3,0,0,0,1611,11,179,4,1,1,0,46,0,10,1,3,271,11,0,0,0,0,0,0,0,14,11,15,15,0,0,0,1984,40,2,9,1,2,4,3,0,0,0,0,0,0,0,16,8,14,24,0,0,0,67840,28,2,1,0,0,0,0,0,0,0,3,8,5,18,0,0,0,5024,86,0,0,0,0,0,0,0,3,1,14,19,0,0,0,5121,29,0,8,0,582,0,17,559,70,65977,16,0,0,0,0,0,0,0,18,21,14,18,0,0,0,5792,75,2,11,0,0,0,0,0,0,0,13,15,14,7,0,0,0,6160,10,5,89,6,43,64948,13,0,0,0,0,0,0,0,12,9,13,2,0,0,0,6400,31,0,12,3,12,3,1,4,10,0,0,0,0,0,0,0,20,1,12,21,0,0,0,6528,44,3,26,5,11,2,2,0,0,0,0,0,0,0,5,7,25,16,0,0,0,77824,1072,15,22,0,0,0,0,0,0,0,3,8,1,13,0,0,0,43520,55,8,14,1,10,1,1,0,0,0,0,0,0,0,24,19,21,24,0,0,0,73728,922,101,111,0,5,10,196,0,0,0,0,0,0,0,9,20,1,12,0,0,0,66304,36,8,3,0,0,0,0,0,0,0,4,19,18,20,0,0,0,66600,40,0,0,0,0,0,0,0,15,7,1,13,0,0,0,5761,28,0,0,0,0,0,0,0,20,7,12,7,0,0,0,5888,22,8,1,0,0,0,0,0,0,0,20,6,14,7,0,0,0,11568,56,7,1,13,1,0,0,0,0,0,0,0,22,1,9,9,0,0,0,42240,269,5,23,0,0,0,0,0,0,0,10,1,22,1,0,0,0,43392,72,1,4,0,11,3,2,0,0,0,0,0,0,0,3,15,16,20,0,0,0,995,1,0,1,0,1,0,1,0,1,0,1,0,1,10384,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,1,0,8,0,1,0,4,0,1,5,4,0,1,0,0,0,0,0,0,0,24,16,5,15,0,0,0,66464,36,3,14,0,0,0,0,0,0,0,1,4,12,13,0,0,0,125218,42,3,10,0,0,0,0,0,0,0,2,1,12,9,0,0,0,6912,77,2,10,1,2,1,1,0,0,0,0,0,0,0,2,1,13,21,0,0,0,42656,83,0,2,49417,569,0,0,0,0,0,0,0,2,1,20,11,0,0,0,7104,52,7,4,0,0,0,0,0,0,0,3,1,11,13,0,0,0,2534,10,1615,10,65717,53,0,11,2,4,0,0,0,0,0,0,0,8,13,14,16,0,0,0,123136,45,2,14,1,10,3,2,0,0,0,0,0,0,0,11,1,12,9,0,0,0,43264,46,0,0,0,0,0,0,0,12,1,14,1,0,0,0,6688,63,0,29,1,11,5,10,5,8,3,2,0,0,0,0,0,0,0,12,5,16,3,0,0,0,7168,56,4,13,2,3,0,0,0,0,0,0,0,12,9,19,21,0,0,0,42192,40,31415,1,0,0,0,0,0,0,0,13,1,14,4,0,0,0,2112,28,1,1,0,0,0,0,0,0,0,13,20,5,9,0,0,0,43744,16,1,5,200,43,0,2,1,10,0,0,0,0,0,0,0,14,5,23,1,0,0,0,70656,75,2,12,0,1,0,5,0,0,0,0,0,0,0,15,12,3,11,0,0,0,7248,46,0,0,0,0,0,0,0,15,19,7,5,0,0,0,66776,36,0,0,0,0,0,0,0,16,12,18,4,0,0,0,93952,75,3,57,6,17,0,0,0,0,0,0,0,18,15,8,7,0,0,0,68864,40,7,10,0,0,0,0,0,0,0,19,1,21,18,0,0,0,43136,70,9,10,0,0,0,0,0,0,0,19,21,14,4,0,0,0,7040,64,255,8,0,0,0,0,0,0,0,19,25,12,15,0,0,0,2534,10,40463,45,0,0,0,0,0,0,0,20,1,12,5,0,0,0,4160,10,2309,30,1,5,0,0,0,0,0,0,0,20,1,22,20,0,0,0,43648,67,23,5,0,0,0,0,0,0,0,23,3,8,15,0,0,0,123584,58,4,1,0,0,0,0,0,0,0,25,9,9,9,0,0,0,12539,1,28419,1165,2,55,0,0,0,0,0,0,0,1,7,8,2,0,0,0,66864,52,10,1,0,0,0,0,0,0,0,1,8,15,13,0,0,0,71424,27,1,15,3,12,2,8,0,0,0,0,0,0,0,1,18,13,9,0,0,0,67648,22,0,9,0,0,0,0,0,0,0,1,22,19,20,0,0,0,68352,54,2,7,0,0,0,0,0,0,0,2,1,19,19,0,0,0,92880,30,1,5,0,0,0,0,0,0,0,2,8,11,19,0,0,0,72704,9,0,45,0,9,1,3,9,29,0,0,0,0,0,0,0,2,18,1,8,0,0,0,69632,71,1,5,3,36,8,1,0,0,0,0,0,0,0,2,21,7,9,0,0,0,6656,28,1,2,36782,1,0,0,0,0,0,0,0,2,21,8,4,0,0,0,5952,20,0,0,0,0,0,0,0,3,1,18,9,0,0,0,66208,49,0,0,0,0,0,0,0,3,8,18,19,0,0,0,69552,28,0,0,0,0,0,0,0,3,16,13,14,0,0,0,77712,99,0,0,0,0,0,0,0,3,16,18,20,0,0,0,67584,6,1,1,0,44,0,2,2,1,1,1,0,0,0,0,0,0,0,4,9,1,11,0,0,0,71936,7,1,1,1,8,0,2,0,30,0,2,1,9,0,1,9,10,0,0,0,0,0,0,0,4,15,7,18,0,0,0,2406,10,69263,60,0,0,0,0,0,0,0,4,21,16,12,0,0,0,113664,107,4,13,2,9,6,10,1,3,0,0,0,0,0,0,0,5,12,2,1,0,0,0,66816,40,0,0,0,0,0,0,0,5,12,25,13,0,0,0,69600,23,0,0,0,0,0,0,0,7,12,1,7,0,0,0,11312,48,111519,7,0,17,1,7,0,2,0,5,0,0,0,0,0,0,0,7,15,14,7,0,0,0,73056,6,0,2,0,37,0,2,0,6,6,10,0,0,0,0,0,0,0,7,15,14,13,0,0,0,72960,7,0,2,0,44,2,1,0,2,0,9,7,10,0,0,0,0,0,0,0,7,15,20,8,0,0,0,66352,27,0,0,0,0,0,0,0,7,18,1,14,0,0,0,3046,14,67339,4,0,8,1,2,1,22,0,7,0,2,0,5,0,10,1,2,1,3,1,1,5,1,4,7,1,7,2,5,3162,2,0,1,0,0,0,0,0,0,0,8,1,14,15,0,0,0,5920,21,0,0,0,0,0,0,0,8,1,20,18,0,0,0,67808,19,0,2,4,5,0,0,0,0,0,0,0,8,12,21,23,0,0,0,82944,583,0,0,0,0,0,0,0,8,13,14,7,0,0,0,92928,55,1,11,0,1,9,10,0,7,0,21,4,19,0,0,0,0,0,0,0,8,21,14,7,0,0,0,68800,51,6,6,0,0,0,0,0,0,0,11,1,23,9,0,0,0,73472,17,0,41,2,5,1,21,0,0,0,0,0,0,0,11,8,1,18,0,0,0,68096,4,0,2,4,8,0,3,0,29,1,3,3,10,11,1,0,0,0,0,0,0,0,11,8,15,10,0,0,0,2790,10,67343,18,0,37,1,1,1,5,0,0,0,0,0,0,0,11,9,20,19,0,0,0,94180,1,6938,470,0,0,0,0,0,0,0,11,20,8,9,0,0,0,2406,10,67343,61,4,1,0,0,0,0,0,0,0,12,25,3,9,0,0,0,66176,29,0,0,0,0,0,0,0,12,25,4,9,0,0,0,67872,26,4,1,0,0,0,0,0,0,0,13,1,11,1,0,0,0,73440,23,0,0,0,0,0,0,0,13,1,8,10,0,0,0,2406,10,67551,39,0,0,0,0,0,0,0,13,1,14,9,0,0,0,68288,39,3,12,0,0,0,0,0,0,0,13,1,18,3,0,0,0,72816,32,1,22,0,14,0,0,0,0,0,0,0,13,5,4,6,0,0,0,93792,55,1,2,0,0,0,0,0,0,0,13,5,14,4,0,0,0,124928,197,1,16,0,0,0,0,0,0,0,13,5,18,3,0,0,0,68000,24,3,20,1,46,0,0,0,0,0,0,0,13,5,18,15,0,0,0,67968,32,0,0,0,0,0,0,0,13,15,4,9,0,0,0,71168,65,1,2,10,10,0,0,0,0,0,0,0,13,18,15,15,0,0,0,92736,31,0,10,0,0,0,0,0,0,0,13,21,12,20,0,0,0,2662,10,67599,7,0,1,0,4,0,15,0,10,0,0,0,0,0,0,0,14,1,7,13,0,0,0,124112,42,0,0,0,0,0,0,0,14,1,18,2,0,0,0,68224,32,0,0,0,0,0,0,0,14,1,14,4,0,0,0,3302,10,4105,1,64676,8,1,46,1,11,0,0,0,0,0,0,0,14,2,1,20,0,0,0,67712,31,7,9,0,0,0,0,0,0,0,14,19,8,21,0,0,0,94177,1,16781,396,0,0,0,0,0,0,0,15,18,11,8,0,0,0,68608,73,0,0,0,0,0,0,0,15,19,13,1,0,0,0,66688,30,1,10,0,0,0,0,0,0,0,15,21,7,18,0,0,0,68338,1,1148,22,0,0,0,0,0,0,0,16,1,12,13,0,0,0,67680,32,0,0,0,0,0,0,0,16,1,21,3,0,0,0,72384,57,0,0,0,0,0,0,0,16,5,18,13,0,0,0,66384,43,0,0,0,0,0,0,0,16,8,1,7,0,0,0,43072,54,0,0,0,0,0,0,0,16,8,12,9,0,0,0,68448,19,4,8,0,0,0,0,0,0,0,16,8,12,16,0,0,0,68480,18,6,4,11,7,0,0,0,0,0,0,0,16,18,20,9,0,0,0,68416,22,1,8,0,0,0,0,0,0,0,18,10,14,7,0,0,0,43312,36,10,1,0,0,0,0,0,0,0,19,1,13,18,0,0,0,2048,46,1,7,0,1,0,3,0,0,0,0,0,0,0,19,1,18,2,0,0,0,68192,32,0,0,0,0,0,0,0,19,8,1,23,0,0,0,66640,48,0,0,0,0,0,0,0,19,8,18,4,0,0,0,70016,69,1,6,0,16,0,0,0,0,0,0,0,19,9,4,4,0,0,0,71040,54,1,10,1,5,14,6,0,0,0,0,0,0,0,19,9,14,4,0,0,0,70320,59,4,10,0,0,0,0,0,0,0,19,15,18,1,0,0,0,69840,25,6,10,0,0,0,0,0,0,0,19,15,7,4,0,0,0,69424,37,0,0,0,0,0,0,0,19,15,7,15,0,0,0,69376,40,0,0,0,0,0,0,0,19,15,25,15,0,0,0,72272,75,1,6,0,0,0,0,0,0,0,20,1,7,2,0,0,0,5984,13,0,3,0,2,0,0,0,0,0,0,0,20,1,11,18,0,0,0,71296,58,5,10,0,0,0,0,0,0,0,20,1,14,7,0,0,0,94176,1,30,6136,7,768,511,9,0,0,0,0,0,0,0,20,9,18,8,0,0,0,70784,72,7,10,0,0,0,0,0,0,0,20,14,19,1,0,0,0,92784,79,0,10,0,0,0,0,0,0,0,20,15,20,15,0,0,0,123536,31,0,0,0,0,0,0,0,21,7,1,18,0,0,0,66432,30,0,1,0,0,0,0,0,0,0,22,9,20,8,0,0,0,66967,11,0,15,0,7,0,2,0,0,0,0,0,0,0,23,1,18,1,0,0,0,71872,51,11,1,0,0,0,0,0,0,0,25,5,26,9,0,0,0,1632,10,67605,42,0,3,1,2,0,0,0,0,0,0,0,26,1,14,2,0,0,0,72192,66,1,4,0,0,0,0,0,0,0,0,50,3,0,4,38,26,99,1,5,2,13,1,704,1,1,1,10,3,109,1,14,1,151,1,382,3,0,1,0,3,138,1,500,1,77,1,43,4,2,1,40,1,0,1,0,1,0,2,0,1,0,6,0,1,0,1,0,3,0,1,3,2,3,3,6,1,2,3,8,1,14,2,2,1,2130,1,30,1,3511,1,7,1,365,1,111,1,11,1,0,1,181,1,745,1,8,1,74,1,26,1,0,1,57,1,2467,1,0,0,945,5,2,2,1,1,0,1,0,1,0,4,104,2,0,1,0,1,3,1,2,1,0,6,13,3,0,1,81,1,2,1,2,1,2,1,2,1,0,1,9,1,0,1,0,1,1,1,4,1,68,1,0,1,66,1,0,1,1,1,6,1,0,2,5,1,0,1,0,2,2,1,1,2,15,1,0,3,0,2,5,1,2,1,3,3,3,1,3,2,5,2,0,1,15,1,1,2,4,1,0,1,16,1,50,1,0,1,0,1,12,1,6,1,0,1,2,1,0,6,2,1,37,1,0,1,1,1,1,1,33,1,2,2,1,2,11,2,3,1,0,1,8,1,0,1,0,1,0,1,24,1,78,1,3,2,3,1,11,1,0,1,10,2,2,1,9,1,76,1,8,1,31,1,0,2,3,1,180,1,16,3,38,1,1,1,0,1,1,1,1,3,4,1,5,1,0,3,55,2,2,2,2,1,5,1,23,1,8,1,15,1,0,1,55,1,34,2,3,1,2,1,1,1,19,2,55,1,13,1,0,1,23,2,1,1,21,3,55,2,2,2,9,1,23,1,0,3,2,1,0,1,15,1,0,1,27,1,26,1,40,1,0,1,27,1,1,1,4,1,0,1,3,1,3,1,0,1,5,1,4,1,4,2,1,2,0,2,5,2,7,1,3,1,8,1,13,2,1,1,1,2,0,1,1,1,0,1,1,1,8,2,0,3,9,3,6,1,0,1,3,1,10,1,0,2,50,4,4,1,17,2,0,3,9,3,6,1,0,1,3,1,10,1,0,2,50,3,5,1,17,2,7,1,11,1,1,1,0,1,0,1,1,1,11,2,1,1,0,1,7,5,28,1,3,1,2,1,1,1,0,1,8,1,0,2,4,2,29,1,11,1,57,2,21,3,0,1,0,1,0,2,1,2,0,1,1,2,0,1,1,2,0,6,2,1,7,1,1,1,0,6,10,1,1,4,0,1,0,2,8,2,43,1,3,1,11,2,0,3,23,2,13,4,0,1,1,1,144,1,6,1,177,1,23,1,0,1,6,2,164,1,22,23,0,7,1,2,0,1,2,2,0,2,0,1,0,4,2,2,0,1,0,1,3,2,2,3,3,1,8,2,0,1,0,4,21,1,13,1,0,1,32,2,0,9,1,13,1,3,1,2,0,2,0,1,3,1,1,1,0,1,0,2,3,1,0,9,0,1,0,5,3,1,4,2,33,1,111,1,58,1,206,3,1,1,1,5,0,1,0,2,0,1,2,1,2,1,0,2,0,1,0,2,2,1,2,1,1,2,1,1,0,2,2,2,2,2,1,1,2,2,2,1,1,1,0,1,1,2,13,1,28,1,6,1,4,1,0,1,0,1,2,2,6,1,8,1,0,1,0,1,4,1,7,1,14,1,0,1,1,1,21,1,2,1,1,1,19,1,3,1,19,1,16,1,0,1,5,1,100,2,0,1,1,1,2,1,43,1,3,2,8,1,38,1,3,2,13,2,23,1,1,1,7,1,3,2,5,1,9,3,1,1,25,3,8,2,3,2,41,1,11,1,67,1,3,1,0,1,1,2,2,2,8,1,1,2,3,2,0,1,2,1,0,1,1,1,4,1,6,2,197,4,10,1,3,1,7,2,2,2,89,1,30,1,5,1,56,1,67,1,24,1,167,1,17,1,29,2,114,1,57,1,14,1,123,1,2,1,21,1,38,1,0,2,3,1,2,1,1254,1,3065,1,68,1,2,1,10,1,8,1,2,1,0,1,4,1,0,1,2,1,10,1,14,1,2,1,22,1,70,1,4,4,4,1,7,1,4,1,3,2,2,1,2,1,1,1,1,1,285,2,0,1,2,1,0,1,1,3,0,3,0,4,0,1,1,1,0,5,0,1,0,1,1,1,0,1,0,1,0,2,5,2,2,8,1,2,0,3,0,6,0,1,0,6,0,2,0,1,0,2,1,2,0,6,0,1,347,1,39,1,42,1,2,1,1,1,18,1,7,1,4,1,8,1,19,1,12,2,1088,1,72,1,179,1,699,1,183,1,140,1,151,1,89,1,3,2,102,1,1172,1,4,1,858,1,131,1,33,1,625,1,1864,1,38,1,2,1,17,1,25,2,35,1,57,1,184,1,139,1,32,1,22,1,258,1,192,1,151,1,191,1,133,1,366,1,10,1,374,1,70,1,320,1,8,1,62,1,62,1,18,1,20,1,408,1,79,1,288,2,448,1,12,1,44,1,15,1,28,1,40,1,213,1,113,1,624,1,0,1,18,1,443,1,298,1,82,1,86,1,119,1,7,1,4,1,139,1,20,1,1,2,1,1,3,1,9,1,1,1,70,1,143,1,412,1,74,1,60,1,326,1,9,1,149,1,34,1,3,1,588,1,207,1,273,1,445,1,128,1,1381,1,57,1,234,1,415,1,539,1,90,1,31,1,474,2,173,1,124,1,36,1,34,1,4,1,36,1,4,1,3,1,36,1,24,1,100,1,208,1,530,1,176,1,246,1,8,1,11,1,532,1,281,2,63,1,91,1,14,1,77,1,263,1,7,1,15,1,186,1,5,1,184,1,96,1,5,1,93,1,19,1,155,1,2,1,98,1,38,1,61,1,78,1,278,1,14,1,717,2,213,1,240,2,5,1,103,1,51,1,152,2,152,1,146,1,141,1,87,1,14,3,129,1,263,1,206,1,318,1,452,2,97,1,28,1,11,2,124,1,45,1,24,1,40,1,133,1,4,1,110,1,112,1,293,1,86,1,26,1,220,1,8,1,8,1,1,1,148,1,58,1,6,1,0,1,7,2,2,1,2,1,8,1,2,3,0,1,12,5,0,2,0,2,0,8,0,3,1,14,439,2,27,1,11,1,2,1,10,1,2,3,622,6,0,2,0,2,0,2,0,1,1,1,28,1,9,1,4,1,33,1,7,2,47,1,32,1,46,1,1,1,11637,1,0,2,0,1,1,1,6,1,4,1,1,5,3,4,5,1,10887,1,1,3,1,1,1,1,1,1,0,1,0,4,7,4,0,1,4,1,0,1,1,7,0,1,2,1,17,1,48,2,5,1,4,1,0,2,1,1,0,1,1,1,4,3,94,1,15,1,5,1,53,1,0,1,84,1,1,1,15,1,4,1,3,1,1,1,0,1,55,1,24,1,57,1,13,1,10,1,1,1,0,1,22,1,1,1,0,1,2,2,6,3,1141,1,154,1,37,1,6,1,18,1,1596,1,266,1,1,2,307,1,400,1,0,1,0,1,0,2,0,1,0,7,2,5,0,2,0,2,6,1,1,4,0,4,10,3,2,1,170,3,44,2,35,6,289,1,4,1,2,1,2,2,431,5,0,1,0,1,0,1,0,1,0,1,5,4,2,1,2,1,1,4,1,1,1,1,1,1,1,1,950,1,6,1,900,1,4799,1,15372,2,0,1,10,1,2,1,10,1,0,1,3,1,6,1,3,2,0,1,0,2,0,2,12,2,31091,1,0,1,0,2,14106,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,5,8,0,0,0,28,0,0,18,26,26,2,0,24,0,0,0,0,19,54,34,48,0,17,13,15,55,15,27,15,38,0,29,46,29,57,39,9,8,0,64,20,0,1,5,11,50,0,63,58,1,3,1,51,14,0,74,0,2,46,85,87,38,0,0,0,0,0,1,3,5,8,8,0,0,0,1,1,1,1,100,73,0,3,22,3,3,89,0,0,0,0,8,0,1,0,0,0,30,26,14,0,0,11,23,0,0,0,0,21,0,0,1,22,0,0,22,10,0,1,4,0,14,3,45,22,0,3,2,31,0,10,18,18,4,25,11,37,0,12,0,0,8,0,1,22,50,1,9,8,76,56,5,56,0,1,0,9,0,0,10,0,0,0,0,0,30,61,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,1,40,0,0,242,0,243,55,39,19,51,51,11,7,10,47,9,64,9,63,63,63,11,11,61,61,61,61,61,14,16,8,14,2,21,0,0,0,0,0,0,3,0,0,0,9,0,0,0,0,5,0,9,37,8,22,17,17,21,24,16,0,1,14,9,57,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,323,0,5,19,19,19,19,19,19,19,19,19,19,19,19,19,14,19,19,18,4,18,0,1,64,0,6,66,0,1,64,64,62,1,0,1,1,12,12,0,87,0,19,2,5,7,25,0,0,2,2,0,1,0,0,0,0,1,0,1,0,8,1,3,0,0,0,0,0,0,16,0,3,0,0,0,0,0,0,0,0,7,0,0,0,0,273,0,43,0,0,36,21,29,29,29,29,29,19,19,18,18,18,18,18,17,0,1,3,5,64,3,0,362,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,61,61,61,9,9,63,62,0,0,0,0,28,67,67,45,67,67,67,67,66,66,66,66,66,66,65,33,66,32,67,0,68,0,0,0,69,0,70,65,0,66,66,66,66,65,61,61,59,59,63,63,61,61,61,95,458,461,0,0,466,122,551,504,537,481,0,129,511,495,490,0,6,0,485,555,483,10,535,480,4,548,0,0,581,576,23,13,516,446,2,415,527,529,576,33,18,539,559,20,15,0,0,0,15,461,0,0,0,2,486,55,53,0,1,22,21,17,0,50,0,48,31,622,22,0,0,24,551,0,0,0,540,53,6,49,19,537,0,0,72,25,0,2,62,70,10,27,30,24,24,22,22,22,0,0,2,2,0,25,52,2,0,0,0,43,2,57,0,0,76,26,0,0,0,12,111,0,120,279,279,279,279,249,259,287,272,275,273,0,1,0,1,0,1,134,0,2,2,0,1,1,0,0,0,0,4,4,4,4,43,0,0,45,0,0,0,43,117,0,0,0,0,50,0,90,655,665,31,114,138,663,678,677,664,649,0,15,142,134,136,171,0,0,28,80,18,656,28,88,32,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,72,0,0,0,0,119,7,0,123,0,80,0,0,75,2,0,0,0,0,0,0,0,0,12,5,0,0,18,356,81,25,104,106,37,34,0,1,0,1,108,111,39,38,36,0,1,3,0,0,1,0,4,2,50,0,1,123,125,57,125,0,1,44,128,128,128,0,1,129,54,130,81,131,0,52,2,60,0,0,0,0,0,0,58,0,1,0,67,2,97,148,148,148,148,0,1,150,150,149,0,1,150,108,151,0,1,152,154,153,153,33,32,34,96,0,35,35,3,36,160,0,1,0,1,164,164,163,165,164,103,0,1,0,1,169,0,1,171,0,1,0,1,0,1,0,1,179,178,0,1,0,1,181,181,181,181,181,181,0,1,183,183,183,183,183,183,183,183,183,183,183,0,1,185,185,0,1,186,185,184,159,0,0,0,0,0,0,0,0,0,0,0,0,6,11,14,4,13,16,8,10,15,17,15,15,385,303,390,1,471,437,367,419,309,459,404,404,372,947,300,456,322,309,309,417,464,303,476,396,415,417,316,316,14,237,450,450,0,422,403,494,19,353,20,499,448,893,896,0,0,0,569,0,548,571,571,549,572,550,550,549,547,364,0,1,0,952,2,0,0,2,2,654,25,25,25,24,637,635,657,635,635,635,630,629,629,629,601,661,84,366,60,77,60,53,69,62,400,92,79,91,72,13,90,14,13,10,0,91,9,83,459,17,467,483,398,423,93,16,16,27,15,14,16,15,13,878,7,34,4,0,0,0,3,3,435,15,18,428,40,468,1106,0,1,1124,9,111,1118,134,131,5,140,15,110,49,28,27,462,908,516,4,6,916,1,6,993,509,979,979,979,979,979,979,968,979,979,979,979,979,979,978,978,981,989,980,979,979,977,977,977,977,975,978,946,785,980,32,988,48,979,979,978,0,0,0,0,0,5,1,6,6,6,6,91,61,190,1,1,4,80,66,571,74,1244,26,926,887,92,657,3,6,85,122,3,21,1055,14,20,86,79,3,3,0,1,112,88,651,29,124,88,146,214,3,696,233,36,31,129,678,158,29,29,578,1,12,1150,140,579,470,35,1,5,1,4,10,110,1,3,1,8029,1,212,1,175,6,14,2,366,2,11,1,165,1,24,11,3,3,430,2,9,1,8,1,57,4,0,5,8,1,1,1,1,2,1,1,3,1,1,1,0,2,1,1,2,1,2,2,7,3,4,1,0,1,4,12,10,2,1,1,0,2,0,1,17,1,1,2,17,6,0,1,0,2,2,2,4,1,1,2,3,2,10,2,4,2,1,1,4,2,0,1,0,2,19,2,4,6,0,4,1,1,3,1,1,1,1,6,0,1,1,1,0,1,0,1,5,1,2,1,5,1,9,2,14,1,1,1,3,1,0,1,3,3,0,1,10,2,47,3,8,1,13,1,13,1,371,2,462,3,18,2,50,1,3,1,1241,1,11,1,52688,1,61939,1,201,1,159,2,11,2,13,1,1,10,74,26,255,34,1,112,1,2,0,3,1,83,1,3,0,263,0,63,10,6,0,24,6,2,1,8,11,1,1,4,1,1,3,2,12,2,1,1,7,2,8,1,4,3,11,3,7,3,1,1,0,1,3,1,5,1,2,1,5,86,47,70,4,8,1,3,3,10,2,1,0,2,2,1,1,10,226,12,3,1,282,47,0,10,0,185,111,13,2,9,6,46,0,7,7,14,3,9,6,9,787816,2,0,1,0,1,3,1,0,1,3,2,1,1,6,1,0,0,159,1,0,0,14,1,0,0,759,1,546,1,0,0,0,0,1,0,0,0,0,0,4,195,1,0,0,197,5,0,1,1,2,0,1,0,5,0,2,0,1,0,0,0,0,1,0,0,0,196,1,0,0,195,2,0,7,0,4,0,4,0,2,0,2,0,0,0,0,1,0,0,0,197,1,0,0,195,1,0,2,0,4,0,6,0,1,1,6,0,0,0,0,1,0,0,0,198,1,0,0,199,1,0,1,1,2,0,1,0,1,9,1,0,0,0,0,1,0,0,0,199,1,0,0,195,1,0,1,0,1,0,2,8,4,0,0,0,0,1,0,0,0,200,1,0,0,203,3,0,1,0,1,1,1,0,0,0,0,1,0,0,0,201,1,0,0,195,2,0,6,1,3,0,6,0,1,0,1,0,0,0,0,1,0,0,0,202,1,0,0,205,1,0,2,2,1,0,2,0,0,0,0,1,0,0,0,203,1,0,0,197,3,5,4,0,4,0,0,0,0,1,0,0,0,204,1,0,0,199,1,6,1,0,2,0,0,0,0,1,0,0,0,205,1,0,0,199,1,0,3,2,2,0,1,0,1,3,1,0,2,0,0,0,0,1,0,0,0,206,1,0,0,195,3,4,1,0,1,5,5,1,1,0,0,0,0,1,0,0,0,207,1,0,0,195,1,0,6,1,16,0,0,0,0,1,0,0,0,208,1,0,0,195,1,0,1,0,3,0,1,1,1,1,2,0,1,1,1,3,1,0,0,0,0,1,0,0,0,209,1,0,0,207,1,0,0,0,0,1,0,0,0,210,1,0,0,195,1,2,4,1,4,2,3,1,1,0,1,0,0,0,0,1,0,0,0,211,1,0,0,195,1,0,0,0,0,1,0,0,0,212,1,0,0,199,1,8,1,2,1,0,1,0,1,0,0,0,0,1,0,0,0,213,1,0,0,195,5,0,9,1,3,0,1,0,3,0,0,0,0,1,0,0,0,214,1,0,0,195,1,0,2,0,3,0,6,1,1,0,1,0,2,1,1,0,0,0,0,1,0,0,0,215,1,0,0,195,1,4,1,4,2,3,1,4,2,0,0,0,0,1,0,0,0,216,1,0,0,195,1,0,1,0,1,0,1,0,1,3,1,5,1,0,0,0,0,1,0,0,0,217,1,0,0,200,1,11,1,0,0,0,0,1,0,0,0,218,1,0,0,205,1,0,0,0,0,1,0,0,0,219,1,0,0,199,1,13,1,0,0,0,0,1,0,0,0,220,1,0,0,195,1,10,1,8,1,0,0,0,0,1,0,0,0,455,1,0,0,14,1,0,0,105,1,0,0,0,0,4,229,1,0,0,0,0,1,0,0,0,0,0,4,456,1,0,0,14,1,0,0,61,1,0,0,0,0,5,0,0,0,1408,1,0,0,1405,1,0,0,1407,1,0,0,1410,1,0,0,1408,1,0,0,1414,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1411,1,0,0,1406,1,0,0,1412,1,0,0,1414,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1413,1,0,0,1409,1,0,0,1411,1,0,0,1414,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,488,1,0,0,14,1,0,0,1228,1,0,0,0,0,2,0,0,0,0,0,4,526,1,0,0,14,1,0,0,150,1,0,0,0,0,5,0,0,0,0,0,4,532,1,0,0,14,1,0,0,849,1,0,0,0,0,4,0,0,0,0,0,4,571,1,0,0,14,1,0,0,159,1,0,0,14,1,0,0,571,1,0,0,0,0,2,606,1,0,0,14,1,0,0,571,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,3,569,1,0,0,14,1,0,0,569,1,0,0,0,0,2,0,0,0,0,0,2,570,1,0,0,14,1,0,0,569,2,0,0,0,0,2,0,0,0,0,0,2,281,1,51,1,7,1,21,1,10,1,2,1,65,1,0,1,201,2,104,1,3,1,170,1,16,1,259,5,7,2,0,0,0,0,2,571,2,0,0,14,1,0,0,569,1,0,0,14,1,0,0,569,1,0,0,0,0,2,0,0,0,0,0,2,570,1,0,0,14,1,0,0,569,2,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,97,2,35,1,0,0,0,0,5,0,0,0,462,5,0,0,14,1,0,0,159,1,0,0,14,1,0,0,571,1,0,0,462,5,0,0,0,0,2,0,0,0,606,1,0,0,14,1,0,0,571,1,0,0,462,5,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1073,1,0,0,14,1,0,0,571,1,0,0,462,5,0,0,0,0,14,0,0,0,0,0,0,0,0,0,281,1,51,1,7,1,21,1,10,1,2,1,65,1,0,1,201,2,104,1,3,1,170,1,16,1,259,5,7,2,0,0,0,0,2,97,2,35,1,0,0,0,0,5,0,0,0,0,0,8,0,0,4,572,1,0,0,14,1,0,0,159,1,0,0,14,1,0,0,606,1,0,0,14,1,0,0,571,2,0,0,0,0,2,0,0,0,0,0,0,571,2,0,0,0,0,2,0,0,0,0,0,3,569,1,0,0,14,1,0,0,569,1,0,0,0,0,2,0,0,0,0,0,2,570,1,0,0,14,1,0,0,569,2,0,0,0,0,2,0,0,0,0,0,2,572,1,0,0,14,1,0,0,569,1,0,0,14,1,0,0,569,1,0,0,0,0,2,0,0,0,0,0,2,570,1,0,0,14,1,0,0,569,2,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,281,1,51,1,7,1,21,1,10,1,2,1,65,1,0,1,201,2,104,1,3,1,170,1,16,1,259,5,7,2,0,0,0,0,2,97,2,35,1,0,0,0,0,5,0,0,0,462,5,0,0,14,1,0,0,159,1,0,0,14,1,0,0,606,1,0,0,14,1,0,0,571,2,0,0,462,5,0,0,0,0,2,0,0,0,0,0,0,0,0,0,571,2,0,0,462,5,0,0,0,0,2,0,0,0,0,0,0,0,0,3,1073,1,0,0,14,1,0,0,571,2,0,0,462,5,0,0,0,0,14,0,0,0,0,0,0,0,0,0,281,1,51,1,7,1,21,1,10,1,2,1,65,1,0,1,201,2,104,1,3,1,170,1,16,1,259,5,7,2,0,0,0,0,2,97,2,35,1,0,0,0,0,5,0,0,0,0,0,8,0,0,4,904,1,0,0,14,1,0,0,635,1,0,0,0,0,2,0,0,0,0,0,4,911,1,0,0,14,1,0,0,638,1,0,0,0,0,2,0,0,0,0,0,4,912,1,0,0,14,1,0,0,262,1,0,0,0,0,5,0,0,0,0,0,4,1251,1,0,0,14,1,0,0,1073,1,0,0,14,1,0,0,1251,1,0,0,0,0,2,0,0,0,0,0,0,281,1,51,1,7,1,6,1,13,1,10,1,2,1,65,1,0,1,201,2,104,1,3,1,170,1,16,1,259,5,7,2,0,0,0,0,2,97,2,35,1,0,0,0,0,5,0,0,0,462,5,0,0,14,1,0,0,159,1,0,0,14,1,0,0,606,1,0,0,14,1,0,0,1251,1,0,0,462,5,0,0,0,0,14,0,0,0,0,0,0,0,0,0,1251,1,0,0,462,5,0,0,0,0,14,0,0,0,0,0,0,0,0,3,1073,1,0,0,14,1,0,0,1251,1,0,0,462,5,0,0,0,0,2,0,0,0,0,0,0,0,0,0,281,1,51,1,7,1,6,1,13,1,10,1,2,1,65,1,0,1,201,2,104,1,3,1,170,1,16,1,259,5,7,2,0,0,0,0,2,97,2,35,1,0,0,0,0,5,0,0,0,0,0,8,0,0,4,1397,1,0,0,462,5,0,0,14,1,0,0,1398,1,0,0,462,5,0,0,0,0,14,0,0,0,0,0,0,0,0,8,0,0,4,60,1,75,4,210,1,54,1,3,1,118,2,1,11,20,2,2,3,3,1,0,3,0,1,2,1,5,1,0,1,8,1,0,1,23,1,178,1,4,1,4,3,101,1,1,1,63,1,5,1,45,1,1,1,7,8,15,5,0,1,61,1,60,2,3,1,21,2,0,1,113,3,22,1,0,7,0,0,462,5,0,0,0,0,2,0,0,4,12,2,1,44,0,69,0,6,3,18,0,17,0,17,25,131,0,55,2,2,0,2,2,36,1,5,4,8,0,12,0,16,0,20,0,5,2,2,10,21,3,1,13,3,0,4,2,1,2,7,0,1,0,24,0,179,1,4,0,5,2,72,0,6,1,14,2,3,4,35,0,16,2,9,0,6,0,46,0,2,0,8,7,6,0,9,9,1,2,55,0,61,1,1,1,1,0,17,2,1,14,104,2,23,0,0,0,0,4,578,1,523,1,159,2,0,0,14,1,0,0,71,2,0,0,0,0,5,0,0,0,0,0,4,409,2,4,1,159,1,0,2,0,1,2,1,8,2,2,2,323,3,2,1,0,2,35,1,15,3,88,1,13,1,0,3,1,2,119,2,18,3,3,1,0,8,0,0,14,1,0,0,71,2,0,0,0,0,5,0,0,0,462,5,0,0,14,1,0,0,71,2,0,0,0,0,5,0,0,0,0,0,2,0,0,4,130,1,285,2,398,1,0,0,14,1,0,0,71,2,0,0,0,0,4,0,0,0,462,5,0,0,14,1,0,0,71,2,0,0,0,0,5,0,0,0,0,0,2,0,0,4,475,1,28,1,0,0,14,1,0,0,171,1,0,0,0,0,2,0,0,0,0,0,4,0,12,0,0,15,1,0,0,0,0,1,0,0,3,0,0,0]`

The goal would be:

  • Encode the vector above into a self-expanding Javascript snippet that's smaller than what I've provided.
  • Or, do the same thing starting from spec.json (3MB).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants