DEV Community

Cover image for 703. Kth Largest Element in a Stream
MD ARIFUL HAQUE
MD ARIFUL HAQUE

Posted on

703. Kth Largest Element in a Stream

703. Kth Largest Element in a Stream

Difficulty: Easy

Topics: Tree, Design, Binary Search Tree, Heap (Priority Queue), Binary Tree, Data Stream

Design a class to find the kth largest element in a stream. Note that it is the kth largest element in the sorted order, not the kth distinct element.

Implement KthLargest class:

  • KthLargest(int k, int[] nums) Initializes the object with the integer k and the stream of integers nums.
  • int add(int val) Appends the integer val to the stream and returns the element representing the kth largest element in the stream.

Example 1:

  • *Input:
  ["KthLargest", "add", "add", "add", "add", "add"]
  [[3, [4, 5, 8, 2]], [3], [5], [10], [9], [4]]
Enter fullscreen mode Exit fullscreen mode
  • Output: [null, 4, 5, 5, 8, 8]
  • Explanation:
  KthLargest kthLargest = new KthLargest(3, [4, 5, 8, 2]);
  kthLargest.add(3);   // return 4
  kthLargest.add(5);   // return 5
  kthLargest.add(10);  // return 5
  kthLargest.add(9);   // return 8
  kthLargest.add(4);   // return 8
Enter fullscreen mode Exit fullscreen mode

Example 2:

  • Input:
  [[9999,[5917,-7390,8688,8851,4070,1999,143,-4578,-7571,-1336,4778,-7132,2648,3507,9844,-129,7303,-1681,3351,8782,6505,3912,-1577,8845,-3458,5354,-804,-9917,-4504,-1524,3943,-1307,-1931,5847,-1457,4509,-3050,-6123,-7795,-3480,8390,-4121,-6830,7444,-7604,-6608,-8647,-5771,3520,-5580,3721,3693,-5280,-239,6947,6399,-4876,737,-9546,1416,-3314,5411,5851,-7496,-5436,-887,6303,-7848,604,-9441,2903,1090,-1978,9601,-3801,2575,-994,-6180,-2962,1510,360,-9244,242,-4357,-3399,-1691,-4284,-9882,9923,7216,1331,2337,2237,-9894,-2768,1328,-919,-2721,8436,4884,8107,5359,2703,1751,-9986,6479,-2951,-541,137,3338,8152,190,-1623,-9752,-4961,-7182,6367,4380,-2623,6265,-2700,-6791,1999,8505,-56,-1627,-2201,6071,-8489,9201,9042,-7680,-6884,-4369,3500,380,1146,-5186,-340,-9888,9676,-188,-9641,-7082,6049,2744,-8039,1062,6138,-2486,-5884,-462,7584,-8291,4185,3342,-5742,3900,-131,2516,3059,-5450,-3839,4345,5989,-9346,-2814,1465,8235,7044,-3375,-1461,-4704,-9121,7395,-2344,4067,6274,-2498,-4744,-8465,-2239,1985,8718,-6353,-7120,4975,36,3489,-9635,-3046,-8510,1222,7699,-6862,-6447,-8395,6402,6836,-9058,-3154,9107,-5803,-3109,1655,-4116,-6484,-2179,-481,7640,-8780,7990,6050,-9629,1264,-752,9037,4868,-2540,7061,9417,-7086,-9054,991,6086,-1416,4687,2543,-4171,1513,9666,-4342,8722,6390,6907,-4650,-4376,8478,-349,6730,-2246,-1111,3995,8104,-2258,4236,-9690,-6000,560,-176,7757,9654,-7355,6689,811,-7182,3495,-1277,1640,2385,-4900,-7537,-8527,3703,-8340,-1554,985,5782,-5088,-6378,8184,5387,5615,4506,-9440,-7123,695,1365,-1579,-155,290,3803,-5162,-829,1860,8106,6879,-3566,-8309,5938,-2784,-8236,-5678,9387,2036,-6100,1370,-9420,-7644,-4199,-3112,3564,-3390,-6380,8982,7937,7425,-1298,9396,-4522,-3305,-9077,6501,-367,-5327,-761,-535,1518,-9260,7604,-8755,-4785,4340,-3627,-4383,-9770,-6996,-6329,5765,456,-1510,-1494,8434,-3970,-5869,-4837,2457,-5029,3440,-1544,5177,7874,-1233,6581,2285,-7482,-4030,-7203,3284,-1621,1853,4626,-3438,8368,9215,3846,-826,4642,4428,7228,-3316,-707,4151,3098,-7840,-1095,-6909,4755,1806,-626,-5662,-7957,-8210,-8207,-2994,7421,3416,-6087,-5165,5259,7474,6479,3573,-3009,5253,-7240,-7349,161,-8870,5499,-2346,-1154,-6637,9466,8258,-3855,9473,5168,-2172,-1075,-4952,-1783,3207,6165,-5726,-1670,-9535,2726,-4390,7131,-3459,3389,-781,-5300,-1257,2175,-1292,-9970,933,-8177,8187,4336,8995,3825,-1879,258,-6379,-5503,4910,-4620,527,-6417,1349,-6815,-570,-72,3063,9828,4628,-7176,-8145,-2612,-5369,9332,-6919,-5123,443,8168,-7289,-4287,3961,8464,-5237,-3452,-6184,5235,5337,8287,-8451,-6311,-9053,5008,-2953,5422,-2688,-2697,-7834,-3245,544,-1117,-3546,5677,8167,7794,5329,7378,-1162,7094,-3975,1435,2686,858,838,-7292,-4856,696,-2361,7434,5785,-5749,-4911,9250,-1313,4109,-8192,473,-2602,1647,-9284,9960,5445,-2933,1265,6093,-4091,3809,7677,6515,-9519,-1561,8453,5842,-5240,9933,-5001,6782,3813,1083,-3118,-5883,-4972,-9130,-8425,6733,-1149,-7713,9998,-4435,-2321,-1317,-7831,-9012,1371,2086,-9133,-8541,-2602,-9662,4737,5480,1122,-3533,-2650,-7660,-4410,7274,-7321,-9152,-2590,1121,-5509,-7682,9117,7501,438,2548,8002,-9795,-6358,-9011,774,2265,3051,3079,1377,-6951,4279,1420,7445,-4884,-8816,-1562,9643,-295,8865,-9264,-9087,-8237,-1299,-1131,-4776,8945,1113,-1234,9563,9523,9909,8452,5247,-7117,-132,-9064,6966,1671,-6136,4450,6692,2207,2135,6285,-8775,-683,4655,5102,-3439,-3088,-2149,-6219,225,-446,7021,9447,-1322,-718,-5753,-1354,3196,4226,8668,6375,4970,-1491,-8392,-5623,9274,-4477,-3553,6262,-7761,562,-8122,107,-5612,-4742,5792,-4077,-8658,8515,4674,9865,-7795,3621,1491,-8357,-2945,-3060,-8706,-8441,-7131,-2927,-603,-4612,-5842,6376,-7500,3618,1355,-5690,-3647,-680,9765,8956,-7332,4096,-8905,9973,-5985,-4777,3852,4445,8701,-783,-7531,-7422,1763,-5907,2995,-1391,-5556,-7040,501,-4749,1326,-6159,3297,7849,6532,-2295,-6132,9844,3418,8688,2680,-8632,3946,7078,3749,-6638,-9558,1309,-5715,-2564,-4679,-2779,-8312,-9558,2715,-3128,764,-4301,-7144,-7688,-5468,-578,-4580,8557,2315,-8475,4664,8264,359,7122,4405,2344,1523,-3267,-7962,-6434,5761,4629,-145,-4810,1370,-6976,-5587,8104,-4030,-8552,-3482,-2280,-5895,-3661,9481,-2979,1906,-1552,-7196,1614,9696,-9187,-2558,8926,-1750,-5357,-3741,4722,7673,-7738,-456,-3917,5555,7549,5357,-1787,-730,-6993,9644,2448,-3912,-459,305,-4696,5446,-6736,-5988,6592,5169,-7889,2095,-4446,-8509,-6672,-4501,7218,-1525,-6989,-6456,-409,2953,2501,5664,-2319,3511,5269,2840,-6278,1958,-9600,-7101,7500,2775,4424,4895,-1454,-5431,7418,3374,374,3754,-4884,-6977,1558,3696,-3849,6334,9576,-8401,7098,4995,-6392,-5392,-6324,-4780,-6449,6887,-3007,-184,2405,-4557,5416,3527,-5334,2306,-752,-6382,4294,8712,-5228,-670,-5065,6915,8035,59,-2793,-5548,8571,5447,3765,8949,-4819,1450,-5522,-5431,-1743,1534,4704,-593,4536,2782,-9263,-319,-9911,4923,9856,1519,-2554,-3651,-3499,-2032,5476,8286,2897,1327,7519,-1748,-9112,3458,-824,9869,-2521,7824,-2631,1986,381,-1429,1134,-4867,-9410,-8616,-4830,-8784,889,-7421,9585,-3264,-8677,129,-2677,-7301,3252,2376,5289,-3577,-4564,4629,3974,-1315,-5120,-7611,-5126,-4262,3143,4953,8237,-8102,7113,7153,2681,-969,-3050,9877,9100,-5995,4359,-2427,6219,2013,-1339,-8798,-3915,-6593,-4508,-9261,2598,-7528,5339,-1000,6193,-7535,8679,5710,-6223,9126,-702,-3699,1026,-8381,6948,-4207,-6112,-4825,-6744,1091,9354,8811,1147,-6409,9704,-5063,590,8502,3605,-4567,-1626,9574,-2426,-7227,6596,-1802,6529,-5574,6350,-1677,-7193,-5181,8861,8680,7574,-5330,-1056,-215,618,7783,-5318,-3584,2797,7277,-3245,7137,-9776,-4759,-1553,-7667,2126,-6719,-8769,-7600,4171,-5297,-8959,-4309,-2330,6666,6262,-6666,-5249,754,5536,2926,8897,-8291,1981,-6545,-7889,4628,572,-48,-3854,3011,-7646,-2666,5559,-8602,7132,8360,-6273,-3581,-6087,5260,8975,-5344,4469,-5072,8965,-2131,-2968,1121,5761,1248,-9365,-1681,-6257,7420,4405,8412,4735,-4223,5349,7251,582,2110,8840,-6086,-1006,4270,2263,-3632,1820,-1294,-334,8496,-7478,-7066,8460,9628,4897,-4422,70,3201,-8844,-3044,3390,-4094,-5617,-8730,6243,-1546,-8411,5185,7118,8009,4385,254,-3439,-2858,-6897,2868,8643,-3378,9388,1560,584,-1932,-4587,-571,1596,4035,-4483,-2277,-4134,348,-3726,-4450,-9268,-3951,4174,4680,-6624,-3097,7748,7754,6729,2369,-9032,5842,-2126,2760,6603,-5855,-1882,2218,4994,30,6998,-3268,-6157,6102,-7898,5230,7011,-5823,4625,934,288,-1780,9324,-3511,6490,70,2419,-8594,9809,8171,5065,9330,-1376,2244,1389,-6977,-9247,-2497,-4740,3675,-3806,-7164,9424,-8942,-324,7343,2125,3843,-7533,-4563,8480,-2455,-6093,2282,-6999,-3266,6202,8996,6702,-9012,6972,3374,2274,-8310,-376,6885,3567,4759,7508,9053,1247,-2127,-5523,-8537,9687,-5081,1794,6197,-2641,1167,8246,1853,1498,-1814,-5168,1239,9965,4278,1094,3227,-9871,1665,-4206,9309,-6362,-7375,5808,-6840,-9130,-8704,248,7063,7330,-2023,-2099,-3353,-2629,7246,2866,2404,-4260,6795,8313,3280,4753,-8309,-1103,1670,-4779,-6032,-1824,-5315,-3759,7701,5907,-4227,-4166,-5030,-6728,-4935,7439,-2339,4116,3259,-4905,247,-5187,5535,-2302,6924,9126,-942,2422,5913,4369,1261,6158,8426,-9911,-5488,-3513,-9473,-4318,-5059,6554,-4613,7961,914,700,-869,-3530,-3597,-6922,6298,5132,9390,-8567,-364,609,2623,-5762,-1629,3970,-8113,2125,2266,-263,-1975,4464,3928,7627,9856,-9734,2421,-3139,2843,6737,-1694,-7351,1840,-7825,-7375,-7596,-1259,2575,-2485,1521,-8406,935,434,4045,7400,1768,-7141,-9056,-1914,4835,-7123,950,-5569,5793,8432,3442,7108,5527,-3727,-4282,-5078,-5144,9811,1401,-1237,2492,-1323,-9415,4767,-6498,-527,-826,282,9562,6730,-7306,8631,5126,446,-4049,3598,-9211,-6559,378,4604,-9929,3654,5445,-1295,-3839,-8181,6691,1914,-544,4294,3189,4338,3579,663,2193,-3973,-2790,6602,7989,-8439,-2549,-2568,-2920,-6188,4716,6501,-4652,-9617,9079,5952,-8910,-318,-166,958,-1352,-592,-625,-6081,1891,-150,-2925,-8641,8283,-5325,-1619,-3482,-4208,1973,-3430,1761,1821,-6084,1895,7450,9453,-7424,8083,2447,-8972,-5211,9942,1738,-6448,1022,1500,-742,9531,424,1343,7339,7222,-7290,8226,-7737,-2466,-4726,8787,-9603,4477,-1078,1780,-7842,7540,-4114,3925,1151,-2824,-3971,9283,340,-3369,3963,-5189,-2695,4144,-7822,-8383,6886,9887,9624,6254,4661,-7263,-9073,-1934,120,-5369,2861,1857,-7525,-4912,4195,-3431,4656,-6317,-7538,-1422,190,4272,8612,5264,-2986,3682,-8324,-252,-6725,3909,6838,-3231,306,1521,241,-618,-2716,-1071,-5718,8878,926,-7656,-4808,-7947,155,-3981,-9897,-8275,-7018,9625,2031,8011,-1598,-1626,2740,75,-2497,7376,-5122,-6694,528,7003,-9569,7195,9636,-1885,-2344,8211,5387,-7833,-4604,-3260,1256,2322,7645,-757,-649,5352,7782,1471,-6108,9130,3516,2756,-5670,-303,-6438,-4822,-9187,-3362,235,453,-2565,-9174,-2332,-5946,3292,-4261,8144,4257,9868,3055,-8111,-2609,-6339,-3878,-9541,687,5946,1867,-4920,7860,-5228,9282,3528,-2182,8348,-2957,-7259,2533,5620,482,5000,-9963,9165,-6050,1662,-5489,8718,-8270,-7428,-9400,7575,-4374,6414,2558,-2143,9091,2276,8819,2183,-4247,2065,1435,-7361,-9998,6583,894,-791,4423,4700,8303,-7417,361,-9078,-3359,-9995,9990,1551,-9865,9183,-2043,-860,-6842,-3328,1847,9327,3191,1296,-5182,9611,8328,-5981,2369,-4679,-9757,1536,-3544,4276,-703,7800,-8835,-4037,8743,-4791,-609,7200,-9314,-6056,7410,-7189,8137,2806,7029,4177,6283,-4563,-6574,2338,-820,702,8402,-1292,5185,5989,7527,-4846,-396,9089,-5980,1091,4884,-9135,-384,1260,8448,2436,5969,2281,2704,-4089,2062,5554,9199,-2985,-515,7851,-2412,5455,-9017,-4679,5926,1896,-2858,1517,-477,-9751,3863,2784,5454,3076,7802,-4238,8097,3338,4342,-2004,-7064,-3688,-1435,-2673,-5156,9173,9564,8111,-5318,-871,-4874,-8626,2116,-5739,3197,-2226,-2240,-3286,-9574,7313,-2141,-1815,-4498,5573,-9658,8913,-8230,5843,-5463,4525,-9601,330,9219,-888,-7943,2664,-9144,-96,-5387,-1041,-1655,2654,-2663,-8794,443,9618,9770,2544,628,8422,-1833,-5402,1539,8862,-8551,-1679,3287,7594,-433,-6987,6772,3452,2560,-3319,917,-2129,4209,-924,-9509,-5179,-9555,-9931,-6040,7690,-5280,7301,3978,1801,-7318,-1533,3275,-9722,4024,8891,7110,8152,-6540,4625,5429,9438,1655,4401,-3869,-5454,-4326,3757,7019,5347,7708,-1883,3108,-7426,284,9566,-5494,417,5494,2696,1686,1936,6662,4437,-3047,1029,-7413,3410,-8242,1122,-4867,-88,-8210,-2341,5508,-6850,-7946,1881,4117,1477,9342,-2775,-6332,6700,194,8056,5548,8184,-1849,9252,127,3834,-8577,-7911,2376,-1441,5976,6572,-883,5403,4991,3738,4694,-8981,-1798,4487,-8943,-3594,8286,-9189,-6137,4176,-7822,-7682,1782,9641,7997,-3498,-5376,4396,-5924,6510,-874,-4863,-4393,-6814,7336,-3983,-2393,9663,-6338,6984,1508,-6410,1714,-6863,-3719,-8733,-2460,-2788,4238,3875,-272,9494,-2396,-9962,-2254,-8497,-7302,8275,4676,2659,6856,-6453,-894,-4946,-7371,9060,-68,6989,-7440,-4042,-1638,3418,-2788,-9976,-1231,-7242,-4453,7459,8478,4220,1987,-7111,5595,2049,7296,-7765,-6008,-6106,-8285,1632,4803,-6813,-8274,871,940,1803,3355,-9420,5913,-1855,5291,-9993,7436,-3987,6445,-1019,-9331,2850,-3686,-5418,3479,9565,6491,-6121,3995,7517,2816,-4643,3910,-6046,1699,-9781,7798,4043,-2558,6616,5118,-663,-1162,-7952,7224,-6664,-4520,1155,-3577,-5351,7380,6019,-8732,-8398,4680,8794,-4686,7015,-5280,3591,-5885,-5999,-3426,-6095,-9945,7279,498,-6277,9288,6467,-7719,-413,-3192,8484,1280,2267,921,8972,3008,-7094,-1722,6646,3775,586,-6698,-6082,7767,8202,4216,6065,-9104,8650,3960,-8514,-20,-4149,5315,-6824,-2060,9960,5982,3190,4692,-4164,-2818,-8627,-5288,8174,-1393,-8317,-3033,2027,-1475,-136,-2548,2632,-2607,2163,-5243,751,-6159,9990,8515,-4965,1833,7794,-8345,-4587,-914,-2981,8761,-3242,1608,-1785,2713,-5707,7190,-4662,3563,-5153,8341,-9890,-3979,1107,140,7525,5399,1411,-3927,-9378,7619,-4378,-2539,1218,-2865,-3358,-4169,-2795,-8714,-2807,-1401,9688,5066,-2429,2420,-2612,6998,-2428,9504,7508,-2828,6104,2276,-6466,-35,7272,9621,523,-3783,194,9355,-4733,8418,7932,7486,-3526,2743,4916,5551,-1465,8481,-2770,5913,2456,-613,-7389,399,7582,-2302,2604,-9722,-2262,4046,757,6636,6189,-334,-6409,517,4197,4386,5582,1123,-9502,6877,-500,-775,-4989,7370,6009,-8068,9013,-1843,-4099,-396,7477,-3587,-1725,-3764,-5524,7603,-3569,444,-9076,3230,3571,-4861,-8701,-8493,2394,-4277,9908,-7188,-5282,7404,-5698,-6652,-3256,2670,-2366,-9976,-8397,-6894,-3015,9819,-2785,-311,4634,7277,-7980,-4224,9194,-7455,-5677,5160,626,-436,7885,-8835,5353,-1615,-7049,-7514,-7460,9125,-149,9564,601,-8434,2879,-8115,-704,-2061,9370,-7593,-9183,-7150,145,8468,-4243,-614,6755,-6825,9827,-567,6850,-6810,-3850,4361,-6879,-5419,-5096,5227,4226,4769,-8689,8138,-7034,4988,7334,2846,-4212,-2662,4574,-4200,-9805,-8757,5332,9442,9393,7546,-5918,-9190,-8039,-6145,-1333,-9450,-568,2713,-1507,-9932,-6205,-1804,5983,168,-8160,3002,5006,7396,5826,3483,-3793,4468,7143,2767,-5514,7205,-5133,-2832,-2995,-152,-5137,-6316,5207,-4744,3971,-8642,-6987,-9755,-914,7675,-8650,2675,6744,-6049,186,-5458,9710,-6624,5832,-8596,1587,9149,395,5588,-7482,-1377,-3371,-2453,7719,-6555,-1390,4460,-5949,-7421,-8573,1266,-4835,3588,-5696,-222,-4386,-3743,-1795,-4943,5758,-9988,-1722,9374,-6473,-5304,-8377,-8500,-7489,1089,-4214,-1901,8963,3937,7561,-2493,-7560,6930,568,-2870,5662,296,8012,-7981,3462,-505,-9708,-6744,9963,-6968,-4525,-8039,5462,1622,-390,2757,-6409,3991,-1128,6046,-4309,5632,9165,-9585,7207,-5201,-5253,7858,-770,-9523,3202,6613,-4464,-4529,-6529,6119,-7586,-8017,9356,-6699,-7201,9116,-3369,9469,-2673,-4199,-5148,-5921,2577,7292,6762,3081,-8423,7074,-5138,4181,1849,703,-2577,-8391,-9953,3772,9591,-2450,3633,-6711,-8063,-6136,-748,-648,2298,9238,6878,-2536,3113,6362,4161,-3041,-3518,-9741,-1370,1773,1441,9294,3331,-35,-6243,7037,-8470,691,-3701,5659,9511,-5078,3343,7030,618,9293,5105,622,-3576,6770,-1686,9529,-7032,-7678,-3464,4018,8528,8433,-1003,3442,-3936,3264,-4860,5142,-5426,-3064,4262,-2611,5031,-3246,8135,4161,-1638,992,-6042,2466,6082,-6172,-6530,2821,-3212,-4845,-1000,477,8828,-8549,-2120,654,3278,2530,-7633,4468,301,1542,3539,-9180,622,-925,6409,-6407,8362,-5847,-3607,-7378,-4765,-862,4121,-4957,-6557,-4672,4537,2200,3673,1287,2129,-6635,-1286,-5575,8539,1756,354,8565,-9882,1811,-5560,5037,1902,-9065,-5804,7428,-4375,8214,2982,245,-2045,6250,4758,-5494,4077,-7962,-6945,-8283,6733,2879,4662,-8235,-5153,-7781,-2832,-9113,9884,474,7783,-2554,-4993,8801,-6183,3615,7397,9208,-8624,8283,-5201,8338,9727,-3974,9303,-8931,3533,-4444,676,2632,-7164,3947,3854,7575,3012,1346,1972,9707,5480,-3860,5517,5898,5665,4646,1977,4753,9476,9102,1792,2450,5690,-3595,-123,-1780,-8917,487,39,-2775,-65,-8190,6243,-8231,-1724,3874,-4946,-5232,4942,1670,3716,-7728,-9711,-8210,-7956,-430,8703,4381,8298,1238,-2806,6372,6266,-5483,-3393,7050,4528,-1124,-9641,-2347,5681,-2488,-8494,229,2089,-3899,707,-7082,-2383,-5190,5440,-9978,9931,-9100,-1138,2822,4825,4191,-3928,2357,-815,-6411,-6731,-21,-4954,7092,3007,-3569,-2293,1886,-3302,754,1258,9006,-6278,7736,-5744,8350,6705,-9143,1772,4542,-601,303,-9959,8218,6452,-5248,-7032,4398,2864,-8124,-5128,9458,5398,2843,-4490,-346,7394,1845,8334,-8286,2900,3020,-6844,-2367,9230,-5059,2533,998,-660,3617,-4009,617,319,4013,5452,-2962,2006,1852,-5318,2365,-2493,8037,4271,7736,6934,-2001,-8100,7379,5676,2201,1120,-5128,-4011,5785,2050,3487,383,9252,-4246,131,8761,6843,-4685,9306,9625,6076,654,7468,-9404,4617,703,-2825,1485,1150,-4357,9311,9757,-3994,-5018,-3185,5686,-487,-6445,9253,6602,6554,-8580,1924,8267,9731,-9098,92,527,-6433,3292,6495,-7985,-855,-4934,3172,-5470,-9118,-7555,7469,1602,-7213,-9198,3838,4969,9865,-3630,9136,-5987,-7874,-7572,1214,-9660,-3114,9846,9996,534,-7867,-2958,5088,-9777,3534,-7191,-7563,-4095,8641,7047,-6712,-4163,2131,2651,1465,-1413,9000,3293,-8566,-1006,-7524,5973,-6435,4657,-8701,-5183,8645,-9283,3075,-6953,6987,-3225,-5676,-7899,5296,5674,5296,-7062,8910,-1943,-4092,7043,-3145,7614,-2923,-6733,-2314,-3050,-3784,-3148,1145,-2464,2438,-5329,20,7309,-7725,-5980,-2899,-1626,6654,1498,-5273,-5994,8923,-6741,-3796,-4740,-8793,-3448,9441,9328,-765,-9425,-1964,-1514,381,1305,-8948,-5151,9526,-478,3147,-5127,-508,-9381,-5030,7731,5128,8546,9638,6843,-57,-8025,8630,-7648,-8509,-3531,-3165,-1637,7616,9952,754,-8960,4381,702,-8155,-6513,-7163,1276,-3793,-9367,-6548,2600,8655,4989,7649,-9253,-9046,-8592,8867,-4507,-472,3960,3157,7160,3887,-4099,-5852,7717,-4746,1136,-7410,5417,6732,6261,-3092,1495,6989,3957,-5539,9387,-7232,-4812,8213,4201,-1921,-266,2370,-9608,-7155,-1568,-424,9701,-7083,-6451,1872,3987,-4845,-5135,1822,-8011,-6154,-3693,4128,9744,-8479,-4274,5937,3649,-6220,-3857,-7868,5648,-7643,-2157,5248,1576,803,5858,7219,-5043,-7030,-4876,-2064,-391,9978,6370,3498,180,-4752,-3551,-3724,-9012,-8315,-512,3319,-3789,2220,2003,-1903,-4236,2434,-2859,4609,-4897,1353,8411,-7449,-2931,-3097,-7428,-9723,6384,9084,-4836,3353,1602,-1358,-7975,4549,4065,-4128,9485,-6820,2327,2078,-594,4371,4082,6316,2974,6544,9629,-4724,-1494,4340,-2215,-1169,-2216,-6887,-9895,-8454,3258,4750,-5420,-6178,-9740,-1987,4508,-2638,-7211,5492,-9365,5108,-3136,-1587,-4485,-5631,-1395,2260,-9747,7558,6393,364,6537,-1476,-2773,-7633,6909,-8591,4594,7700,9605,9714,-3056,-2731,-54,6813,1613,178,-4119,-9985,3081,2770,149,-9335,-1123,-1394,-4701,6652,1229,558,-6336,8239,6682,-3965,8087,5519,-6234,-4347,6942,4268,5252,9772,2283,-1995,2667,2679,4006,7609,-8550,7654,-9682,8989,7108,-9085,4311,-3830,-1219,3664,-2475,-4239,-4545,-7103,5891,-8884,6770,944,1352,-7658,3598,-7796,2274,-3444,-5023,-4813,-6220,9090,5911,8274,-8354,-7703,6149,5921,1175,-1354,7588,-7012,5384,-9790,-1524,678,-1786,7866,3550,-7973,2956,-1556,-8851,-1474,637,-1833,4797,5833,-5120,9903,7925,8297,7089,-1905,-9520,2184,-850,7870,-4470,-951,1790,9506,8774,-3435,2144,1251,2442,-6901,2984,-6564,-2426,-547,-1779,-5,7237,-9091,8355,-6584,-3671,7091,-2192,-6885,-1124,3853,8081,8014,-6898,1588,8881,9467,-6414,-7921,5142,6325,9080,-8406,-5098,-1147,2078,-8997,-3383,6816,-3345,-8923,9316,2234,-345,-3904,-3891,-7375,8907,-890,1193,9026,-2001,2385,6392,-7836,-2817,-6498,3963,-1432,-2104,532,8316,-6550,2169,2675,-795,-7649,2928,-9981,-8103,1125,-42,-8525,718,6601,1501,-206,-79,2018,1938,-7388,-331,-1663,2951,2775,6459,4909,1868,-1594,1118,2726,7519,264,-5517,-4703,-9621,970,2558,-1307,-6682,9961,-3970,2125,8890,3177,-894,9705,-9389,-6594,-3164,-7665,5568,-8388,8470,-1898,-4781,-6330,-1373,-5647,-6023,-2309,5991,-5677,1793,3994,-7264,5111,-5437,-4724,-2129,-9807,-3758,58,9856,-3461,2499,9141,6029,-276,3289,-1941,5395,-654,6709,7849,-6266,-5226,-3535,-5693,-9574,6025,1568,-4144,-465,-1291,-2061,-6732,5905,-6514,-6191,1744,2901,884,-9198,8296,6629,9773,5894,-2171,2011,-1639,-3932,3206,-2988,-2748,3718,-827,7997,-9068,-3166,-6767,6446,-4138,8281,1893,-8190,2018,8595,7161,-6259,-4203,4351,-7868,-154,-6586,9515,9725,7,8608,-6470,-3059,690,-329,-4621,-1303,-3787,3793,-9184,3634,7965,-8649,1229,-4995,7387,4789,7062,-9776,-3814,-8532,9937,-9874,-6582,-803,-1539,4754,-755,-4410,4353,-8734,5678,-6713,9927,-7851,-9098,-7259,6527,108,-1964,-7724,1936,2783,-6841,4499,4907,-576,-9710,-1173,-8141,5766,1597,9555,-7105,7418,-9799,-220,-1390,3299,-9225,8455,2978,-5646,-2470,-2445,3150,8316,9410,-4126,9566,-7205,-9396,-3375,8212,2722,-5979,-8858,-8669,5513,8280,-3325,-6747,-5578,-3400,-1129,6218,6241,-1982,-1874,-9645,-1257,3999,7169,4992,-5132,-6391,2379,-2279,3448,-1955,-8394,-6521,-7910,6806,-9358,8062,1370,2623,-749,-2692,-324,699,7039,-2942,-1742,8077,1873,5734,-8645,-3666,-375,8092,-2754,9791,7311,-650,-8071,3369,835,-1646,-8655,1658,-1698,7387,9798,-3535,-4952,-4845,-1755,2854,2037,7500,7889,-2830,-8950,6173,634,-6746,-702,-7406,-1598,2937,-1071,-1380,907,7167,6144,2682,-1023,-3133,3060,4241,-5624,2860,6857,2030,1425,6336,4728,-8643,-1309,7981,6493,5054,5830,9035,1630,5093,-1085,5119,-5785,3503,6618,-4520,-9062,7280,4896,-3458,901,9097,-4845,6779,-7252,2519,4680,3647,9030,1731,4555,1574,4814,2957,7869,5643,6514,1894,-2491,7087,-9749,-4159,7606,-1194,5089,4687,755,-5705,7696,-1640,-4286,8261,4378,-8924,-9629,-6828,4712,-6328,4499,-6573,-6871,2073,6896,2490,7566,4079,2675,-8759,2949,-8835,-621,9259,2073,-338,-7840,2338,-5103,7447,-1035,-4459,-6443,-9200,907,5737,2825,2180,4585,9006,-4508,-6600,-2899,4964,-4857,-7346,6385,6545,-2971,-7898,-8717,4054,3396,8821,8886,1323,7749,-1762,1624,-7444,5526,-3932,9300,-4563,-5851,-8085,-2839,9459,-6194,6354,5225,-7242,9093,2138,971,9724,4220,7707,-4806,5630,1592,2369,-1629,-188,-33,9695,-6782,6561,-7995,-6007,-2311,-1746,1767,-3630,7124,7771,-3335,-8371,-7426,8165,-7171,-6168,-1037,8434,7695,4304,-1234,6198,-9671,6840,-3896,4038,4822,7212,-951,6788,-3921,-5537,-8024,-7008,-8722,-1508,-1889,-3006,7002,4899,4173,-6995,-1449,577,5147,-7958,-5309,-9679,-2685,4994,-7635,1305,9829,-4567,-242,3781,3004,4075,-8292,1865,-8434,7632,4381,-6495,1619,-3869,617,-6998,1878,-6685,5057,-5885,5116,9960,2019,-4639,-8636,5020,8517,8699,6104,8620,-9904,4229,-3237,-1791,-6396,7210,-3458,6754,8124,-2709,9179,4248,5265,-9939,3115,4045,-9040,5935,2101,-9115,8099,-6370,-5186,-1553,-292,1245,-141,688,-4569,1546,6597,7177,6199,-8438,7879,6540,9573,9939,9631,2657,1598,5544,-9891,1470,7385,-2165,6660,6035,-5958,-6713,-4951,9298,6533,-2537,7657,7348,-3745,1756,8180,5548,5905,3526,1916,4358,6101,3993,-1191,-491,4926,4278,4626,1757,4298,602,1696,8416,9856,-2691,7095,-4848,7093,-6560,-3507,2239,-9432,-5637,-7482,-322,-125,-5196,-5069,-179,-5832,-6437,4364,3830,9449,538,3399,-4428,5412,9277,-6720,-2319,7299,4834,-1587,-7380,8406,1275,-3238,-6225,679,5269,-973,-8022,-9842,9878,-2016,-231,-1966,7753,1111,4064,-2109,-5344,993,-9017,2386,382,3418,9815,323,2858,-7316,8367,-412,5951,-9664,4468,-7858,-5432,10000,-3130,-7724,-1041,9831,2913,-6267,8954,8635,-4483,-3208,4334,-8241,-3515,7093,2989,6913,3496,-3777,4421,284,-6098,546,3512,583,-5693,-6568,5738,3489,-7797,-4344,-1795,2485,1334,-9137,-8020,-798,2099,-1115,-9420,4060,1344,-7341,1905,4054,4692,-9446,-6228,-7954,9030,5224,-6641,-4802,1723,-5671,-9008,-8799,4988,-5784,4390,4168,6222,659,-668,-9955,-1346,1674,-1319,6779,5476,3170,-815,-9661,-8555,-7494,493,2764,-1237,3315,-867,-5393,-8815,5181,-1562,-2932,2016,-8601,-4103,1727,-778,-7688,9759,-9382,2652,-5386,-7531,-3478,5802,8499,4642,1392,8163,7399,7216,6013,3666,-3668,-2451,-2461,10,6729,696,-2811,-957,9420,9334,7344,-8709,-9369,-7210,3079,5139,8017,5671,5320,5625,-5700,-4511,2263,8436,8540,-7661,-2254,7292,-845,1917,9239,-1327,-861,-9512,-283,-6541,-2718,5950,3406,972,7583,-2015,-789,172,7863,1757,-6880,-3188,-104,1964,1000,4371,8297,-5605,9693,-3531,7164,65,7097,-9623,4404,8649,8540,-6485,6330,-6623,6153,-5556,5879,-1200,6434,-7714,-7802,-8076,5307,-1379,-3939,-2633,-1112,-9454,7229,-3886,-8616,7083,-7221,758,-4512,-8199,-2392,-5665,-5724,-8923,8860,2795,5772,8753,-149,-7784,4126,-5632,8925,132,-2350,8163,-4450,-5369,-2730,-4633,8968,-2999,8806,-7803,-1476,4090,5342,-4917,9577,-3068,-7427,3371,-3663,8203,2865,-9328,-2930,5407,-3831,6233,-3970,72,2224,9433,2808,1580,2793,2772,5914,344,-2897,914,-7829,-2535,7110,-1200,-1598,-9344,-9844,-8732,-9858,1240,-5158,-9194,-3495,-7934,422,-9447,-3850,482,8800,-5382,181,8239,3930,-5198,3429,4551,-9279,1425,7525,-6312,7180,-2421,624,-9880,-1332,1999,-1177,-5004,8050,-3272,2748,-6333,-6597,-1633,-2932,-5966,2086,3096,8881,1373,-5390,7386,1678,1577,-1333,-4964,6333,4568,-6329,1202,8483,-8586,-5440,-6124,-1089,-22,7048,3596,-5475,7162,1804,3877,6067,3999,-3565,-7087,1117,548,-1091,-4024,5058,356,-9616,5478,-9116,4768,-6084,-8608,-5438,4135,2166,9342,-7959,1018,8855,6816,8125,2702,-4182,-9826,-1326,450,-651,-3179,2756,6661,8000,3142,1309,2786,4010,-9304,-9742,1409,2696,-770,-9922,978,-3356,159,-5779,-1600,-8892,-1620,1448,-578,-2660,-4287,7714,-602,-1423,5319,3835,4328,4333,8068,-841,6187,-9764,1936,2893,1124,2733,-2791,-9614,6219,4670,8929,5031,-7512,-4215,-4485,-4759,-5060,329,140,-231,9587,4726,-3321,8503,8516,-6163,6440,291,8195,6248,-7793,-3355,-8029,8959,-4888,-9365,9366,6360,3712,7789,4399,-4153,-1872,-3096,685,-5500,9330,6026,9348,9718,-3675,9948,-5133,9097,1401,8504,1419,3261,-6335,9221,-9514,8738,-4580,2297,-9120,-3695,-7320,-3134,-5337,-8273,-4694,2880,-7328,6974,7275,-6107,-3396,8794,-917,-5018,1770,-8569,-1845,-1506,-5258,5945,-2725,9971,-4717,7443,-516,-93,4000,-1359,7311,4319,-3242,-4597,-412,-1925,-8995,-8788,3216,-2697,414,2378,-7714,8813,3267,9965,-9618,-1207,5308,2633,-359,3554,-3968,1824,6776,-2780,2708,9536,-3179,-4160,2672,-2911,-1053,-2538,404,9571,-9782,-4244,1162,2736,4828,1611,1522,7882,4125,1559,6872,3421,9848,4810,4029,6019,8655,7055,-1929,-1080,61,-7269,1173,-2101,-9402,-1967,6415,6513,2006,4204,2538,8678,-1314,3382,3783,-3952,5538,-9130,-44,8396,6827,4765,-9901,-4291,-8475,8953,3342,1358,1365,6568,-8850,-4494,769,-5021,-4566,-2439,-2952,-690,-1343,-7037,-7719,-6933,1095,6203,-6529,-6552,-1896,-9734,-8642,-6383,3707,-6291,-7017,-6222,-7820,-86,-6920,2851,2902,-3305,-4034,4082,-6960,9234,8221,-7464,5659,-7375,-6226,2864,-4941,8584,5790,-7905,9767,-2348,196,9380,553,-9104,-6991,-2512,-6217,-5616,2565,-1768,-105,5377,7294,-4187,4322,-8007,7947,-3293,-2520,5175,-7777,-8349,525,-1016,6867,428,5989,-5913,-5161,-6693,572,-3608,-3133,2731,8281,-5281,-9533,-7005,5060,4655,-9288,5494,2161,-4235,-9550,4723,3639,-6485,7607,-1847,91,-4009,-4591,7435,-6746,-7678,1135,3259,5488,-1644,-8484,-3590,1388,9795,-3121,-3266,773,1431,9417,1825,-7976,7035,-9946,4308,-8524,9940,-1896,9061,8060,1386,-3104,999,-531,7476,-5234,1952,-1652,2447,7174,27,-1279,3080,-2067,4046,-1492,-6089,470,1341,-7990,2359,6864,8223,-182,-9978,-9488,1503,-8235,2632,184,5380,-8166,4793,4566,-4519,-9736,6188,-256,4678,487,-5550,-1659,5244,5617,-4290,-9812,9009,8144,6425,7706,-6689,-3146,-355,-6085,5757,-1865,1985,3801,-5116,7777,5879,9278,8206,-6165,2785,6427,-9906,6644,-743,2470,-3968,3706,7091,-5394,-8174,-2669,802,-4300,-5696,-2950,4661,-1802,1891,-8922,9238,-3435,-3130,-984,8379,-5567,4249,-6052,1669,-5649,-6212,-1088,7078,-4552,-3442,3517,3866,-7457,8799,-8818,5523,-5816,-4640,-7578,-1640,-167,-4075,-459,-7591,-133,3695,3353,-679,-5767,-581,4818,-3625,9603,-382,-5722,9057,6228,-2577,2740,720,-5609,508,-7096,7779,3741,1079,6756,-8537,-2077,-97,-6446,-4613,-7354,8874,1539,1639,-7159,-1252,-7952,-2354,4103,-4255,7,6021,215,6176,-3377,-2209,-7266,-3711,-9340,-2425,-2546,-5201,1731,-1212,-3653,2740,5969,-7088,-2957,-4670,-9630,-4147,8900,1975,-3146,-3318,-3417,-7380,1366,-3445,-2656,4422,-6718,-90,5082,-9105,-3582,-618,-4266,1344,-6663,-6252,-187,-7570,-8069,-5116,-8251,7681,4183,412,5727,8661,-2326,7862,5699,2747,-1254,-9889,-8286,-8788,3562,-643,6534,-687,5515,2003,-7371,-5619,-7076,3642,-6947,9894,7987,-8820,-7994,1896,9523,7461,-7757,1133,-3709,8873,7525,-9683,-5124,-7971,8606,-6285,-4815,5403,-3188,1944,-269,-195,-9089,-1232,-2126,1497,-9282,-9827,3048,-6443,2605,7804,9047,-4656,-3175,5972,1010,5814,-7372,5544,9863,-2172,-1692,-4491,-2607,6806,-2028,1679,-6228,-8399,-9584,-2282,-5169,7312,6818,-8153,8010,8024,-8088,9248,3727,963,632,-361,4584,4477,6278,2984,-7180,-195,3047,-6741,-4451,8692,8022,3509,9611,5235,-7676,-3438,-164,-6143,-9078,-4825,2417,-3527,-5733,2785,2669,1722,8521,7800,7839,5250,1054,9684,-5794,979,-6952,-3372,1376,438,2732,1104,-5690,7528,5648,-8115,172,-7489,-9553,4023,-3826,-1128,-6415,-2919,7979,-3722,1272,5433,-9028,9942,8265,5482,-7110,4741,5335,-6226,-8187,2846,6599,1188,6430,9916,-6883,2491,122,420,-2189,-4613,4452,1541,-269,-8282,5750,-9659,-3453,9433,-3762,2045,6955,-5412,-5363,-5940,-2953,-1240,3215,2387,-1154,-8589,1697,3184,9544,-1413,-2535,-949,-1615,-2041,-369,-8755,-15,-7985,4295,759,-9743,1630,902,5582,-5698,-4975,-5363,-167,-5970,3236,-146,-2387,825,3338,-2443,-9529,923,-7234,3081,4092,2550,3850,7854,-8731,111,-1830,7180,1237,9258,-8756,-3990,-5575,-8371,-9603,1590,-4053,9544,7479,-589,9494,5445,4099,-1232,1456,5675,-8535,6887,358,-2057,-993,7930,5989,6225,3585,-6924,-5390,-8758,7868,1551,9855,-6348,2166,887,9127,-2484,-1528,-1089,-9930,1105,-7457,-2856,-94,-2489,9205,-8910,6089,72,9403,-8680,2715,-884,-6153,2817,6133,-1165,8664,-6339,5260,-1316,-5561,-4073,34,-1052,4405,-2667,-4288,9799,8241,1502,-6780,8334,-4249,-9324,-419,-4504,2671,6601,-4004,3157,-2508,-7796,-4125,-4113,5365,4045,5717,-5112,1729,-851,9293,5038,5171,7907,-8740,9478,1350,788,-3603,6293,-9123,-2608,-1357,3592,-3287,6950,-1604,-8773,-6480,8059,1262,-3578,3939,7744,-1223,-7887,-3000,-2418,4241,2140,-5676,5074,-3005,-7062,-6428,-8378,-1971,376,-8007,5931,5332,3200,3604,789,-2637,-9524,-4639,-8070,-6086,5096,-950,865,867,-8153,-6560,6956,5044,-2070,5176,-8500,-9008,4208,-9279,-4639,1346,1657,5877,-1643,-6259,7444,-384,-2327,-369,-8966,-3379,-8251,-9153,4879,-1235,3624,1868,-8170,-8835,-2760,-4935,1001,4320,7853,3926,7684,6017,2570,9544,2010,-7465,2429,-9928,-5321,7701,-418,-5518,6789,648,6044,6121,-3309,-9852,-6635,6905,7946,8581,6756,-8101,4212,6686,-6882,7287,1183,9024,7665,-1751,-6107,2001,2822,-1116,453,5759,3571,1,1403,1187,-1354,7864,-9790,-6967,5202,990,2890,-5212,-1495,5043,1036,4107,-1141,-7028,-1214,-1311,4880,2914,162,4425,-452,-9692,2782,5589,3294,-2565,7976,-890,-1408,3709,-7219,-2137,7098,8368,-4781,-2136,-6795,-687,-1026,3586,-5796,1667,-325,-9889,-6520,-2151,1092,2826,-5494,-9325,8825,3592,-5096,-8649,6737,4567,6322,1407,-850,751,9650,-1499,-514,3264,7418,7901,3364,-2993,-3728,1155,-5667,5426,-8288,-2357,-7212,-8761,104,8919,5467,655,9099,-927,-915,3638,-8102,1682,6551,4307,-2973,4322,8666,1592,-9310,8153,-1356,2735,-210,4132,-54,-6273,-4827,163,7901,7153,-1588,-1259,6350,-5532,2880,-7538,-8821,9578,3639,-870,-383,4315,-9526,-9558,2071,-620,-8343,-1149,-3136,-8248,-5376,-6263,882,272,6,-9934,-5673,8013,2607,6675,-6376,8243,-7322,6673,1706,3042,-142,-9175,9987,-6730,-1032,6060,-6107,9470,3496,725,6212,8558,8554,-2344,1750,5486,-7783,-2614,114,-2911,9821,7929,-9537,-2182,2230,-2442,450,6246,7941,3478,-5458,9521,5086,532,6758,5187,-8502,2569,-7553,208,8571,-6834,8265,7539,7059,-272,-9886,-4305,8680,-4928,633,8661,6921,-8151,-691,-247,1977,7414,-8849,-6831,-6962,-1218,-304,7909,-1171,5074,-6022,7296,7776,-6715,3492,-4612,3767,7391,-6484,-1540,4229,-5103,-2058,-7843,-1507,2745,-1491,-3614,3171,-2092,-1366,1682,3472,-9255,-3039,-7253,-5822,-6659,-3509,-1292,-9368,-9595,-5629,5919,3470,4997,-4239,994,8473,-9279,-4311,1266,-1948,5804,3254,3802,-3685,98,-658,5447,7054,-3398,-7909,6436,-3426,7530,-3785,3870,2503,-2394,2225,9195,4,-3644,9505,5484,2814,4858,1069,769,-1276,-5135,3940,8493,-3146,4730,1023,-1309,7664,-5567,5583,2371,5271,-5079,-954,-2465,8212,-5585,-1663,-1532,4305,5257,-3922,-4026,-2878,9595,8317,3348,6445,-2880,6343,8432,-2338,3851,-6980,-8984,5754,-4449,-2929,7828,7044,-4543,-152,-4487,2219,3641,-8436,-7193,-6442,-9263,-9156,8302,1208,7571,-5351,9157,-7079,-6763,2554,-7326,1315,8064,8133,-1987,8274,3469,-1725,-5923,-3841,-7683,274,1958,-5663,-5096,-3429,-6070,3481,-6244,-2835,-7550,-2062,-5231,-1893,6863,-876,120,4805,-5371,-7241,4469,-4915,-5481,5621,8303,-3022,-5833,2329,4437,7808,-9969,-1938,6740,3664,6412,-4277,8559,-9930,-1078,5474,-6315,7565,1094,-2345,-7460,3765,-9978,1730,2996,4856,-8777,3380,-2983,-3421,8799,8118,-8133,801,3951,7366,-1099,-2419,9450,8443,-865,-883,-9804,9203,8865,6962,-2781,8504,-7920,9058,-43,276,-77,-8186,-8169,-8095,2844,8019,2483,3586,5415,662,-2291,354,-390,-2083,-1750,-3142,5703,1557,7681,7206,9952,-6237,1801,4712,15,-4936,-8474,711,8973,385,3717,9471,-2630,-6343,5611,9738,-5952,-4110,4683,-1056,-3134,-5077,1558,-4326,-7580,5314,-9551,-9231,-5873,7917,-3622,-2093,8720,-677,5410,-7196,-921,-3093,8274,-775,4766,-4304,-3951,-6822,9092,152,-3004,-5838,8601,-9231,-8574,-7777,846,-6018,7144,3693,9736,-8923,-2923,6975,3605,-7988,-2461,4357,-585,957,5625,7370,-7466,932,3782,7449,657,658,-962,3253,-6674,-7791,7091,-8832,-5375,-1998,-622,9075,-3600,8234,3461,1331,7677,-8161,2218,-7547,1229,-9753,-1327,5362,-9431,-7189,3430,-477,-6356,6045,-9922,-464,-2876,-8665,-5165,-2822,6493,8738,8744,3684,-9150,-7615,9104,1771,-5289,6334,7712,-8306,-9905,-607,2922,9017,8496,5989,7595,-8461,6110,-9072,-3206,-4227,503,-9887,3850,2181,-2423,7938,5178,8770,-1774,4785,9403,-148,5632,-5731,7245,-9326,7015,-7632,-5090,-9502,-1287,-3417,-2128,2735,-1379,-2392,7511,-7172,-47,-8062,-8733,6381,-4714,-221,3439,3845,-7252,7540,-2101,8921,1529,-4407,7323,-7752,1021,5354,3480,4377,8768,-5842,-264,-6072,-765,-9579,8164,-5228,-1294,-6115,4281,-580,-4460,8636,-4617,-1538,8823,-6514,-3730,4571,3042,4451,-9354,-6449,-5655,-6523,9983,3657,5558,-850,2438,1285,-6460,-8696,3733,-8144,-7512,3158,5087,-8868,-4319,9236,125,6856,3732,3773,-9254,-3970,1818,-3420,9956,2491,8184,9373,163,2395,-2813,3953,-3638,2571,1633,-9588,-1768,-2011,-9154,-93,822,1020,5304,3067,5169,-156,1855,-2249,-1247,4714,3731,2256,6225,3421,9375,1845,-4982,2765,-4348,8783,-8508,-2553,5822,-5617,-5292,8553,2648,-7258,-2371,7280,-5458,-1575,-6984,-9551,8033,-9104,-75,6858,-2590,5557,2906,-9488,3682,-805,7141,114,4580,-80,-3823,-25,2756,1057,-5690,9186,2473,-1048,2104,5923,74,8498,1659,3187,-3878,623,2788,2393,-63,-4683,4800,-7942,8806,-8289,-1273,9900,7905,-4938,7891,-6220,7796,-6595,1751,212,-6628,7833,9528,-3696,-564,-1883,-7964,-2157,2660,7948,-5812,-6583,-4601,5799,4600,-8153,-7674,-9687,-2379,9401,-3946,3859,9809,9354,5914,-4567,-4029,-5284,-122,5172,-5483,4042,-9757,966,-3375,9599,-7992,-2131,-3657,-3240,3029,-52,4966,9472,8062,7445,220,-2984,-2196,6473,1070,-735,7804,-7008,1103,5134,-5884,-4726,-1485,-5525,-2668,8874,7277,6783,-5344,-4179,-2419,-4016,4935,5681,-4186,-4493,895,4655,-6292,5188,-6877,5981,-5634,-8801,-2261,-3326,8657,-133,-255,3695,6334,5256,4100,7616,-8504,-8739,1573,8447,-2598,-3982,6400,439,-8798,7020,3551,-5911,-4512,465,6947,-4037,8206,9498,9371,2402,-3548,-5301,-3106,3096,456,2279,6213,5050,-2995,-4682,8421,-2911,1663,2578,9069,-5191,4843,3214,-1679,-6153,6283,-8547,3989,8632,-4266,4650,-8932,-9206,4693,-6422,655,-371,-730,2888,587,6762,2973,3065,-9679,-3941,-7327,-4474,-1137,-2303,9017,8471,5191,1150,-2595,9629,563,6409,-4923,9728,-7839,-2278,1330,7632,-1919,1848,5325,-7007,-4530,-2785,-4068,-2553,-197,9579,8593,9054,4881,5561,838,-517,5784,2692,-620,-2181,-3196,1902,-2403,-5038,7072,801,-3657,-8722,-4784,-9991,-5205,3805,-5055,-8054,-7193,2886,3168,820,2522,655,-7178,-5731,-9826,-1162,524,-9374,-3186,5465,7881,-6156,-6375,-3685,9358,6189,3181,7586,-2408,-7877,3706,-2863,-2799,2707,2020,-5232,1258,9305,3748,1542,-4512,-1040,-1762,-1868,5534,-4768,-5861,-5033,9915,23,7118,3589,-2484,-546,1616,-2510,-7000,-9421,-116,622,-7226,6371,9974,-8831,3712,-4106,-4325,-3215,-7738,12,-4619,-762,4949,1366,-7209,-2647,9774,1895,-9352,-1433,-5203,-6639,1231,-4436,-7041,-294,2525,8996,5716,7724,-9582,-1677,-3563,-9160,-8596,-9635,-7820,1521,-5040,-5798,-8450,-6176,6861,-4520,3192,6819,5020,8889,3140,2976,-2753,2148,8382,-7084,7115,-2121,-2170,-196,-732,-4238,-3119,1303,-3067,-3608,-6131,-6950,9206,526,6221,786,4602,6707,-7962,-3149,-8868,-6339,-294,-119,-3804,-1803,7108,8302,-8268,3333,8704,7387,441,1771,-9527,-6550,-85,5534,5389,-1788,-5147,-3871,4907,-2572,5804,-4182,9563,1747,-2333,9416,3172,-8941,7507,-294,-7626,3824,6416,-4833,-7930,-1372,-2883,9601,2479,2027,-2741,1272,6732,-7302,2273,-5439,-854,-8110,-1164,-4358,-7331,3206,-3804,401,9606,-316,-7120,-8498,529,-9973,5662,1176,-312,-1923,-2138,1546,3406,6379,8996,1710,-6825,-4314,8411,5287,-1004,-9375,8477,2970,-9543,4852,-5203,-2344,-2003,3079,-5345,-7392,-4703,7036,-9304,8513,-5623,-3331,-6823,-8024,4896,-2879,-8240,5568,-3154,6208,-207,8050,-3603,9576,-5053,3876,-81,-2256,-8036,-7168,6542,-4491,3343,-9982,6770,-4951,-9946,-6530,1421,-237,-3663,-8503,-2089,7461,-3188,1522,-2511,-2109,3898,3009,-8081,1009,-1356,5646,747,6589,-6079,2851,4074,9225,333,7739,7746,-5918,-7240,368,4095,8308,7824,-1980,-4406,1320,1602,5018,1932,-4543,-5913,9594,8885,9285,2203,9875,-671,4061,-5742,-6490,-6485,-3839,1691,2518,5142,1647,-1215,-718,6544,-5152,-1682,-7483,6496,-745,7395,1817,1305,-3883,-5579,742,-422,4911,-264,6686,-2949,7180,1524,6590,-7081,3872,362,-8865,-2963,-3072,-620,2485,-3469,5145,7108,3237,-9167,-7485,2259,8783,2782,5607,-6754,-9667,2043,2097,801,9427,-7771,9146,3901,3324,6888,-9958,-4363,2787,9352,9111,-1088,5512,-52,-1764,3582,5187,9551,-674,-6021,-165,7137,8317,9963,-9987,-3153,2492,-5509,2614,3424,-2998,-8172,5021,660,-5345,3778,-2270,2334,-8302,7675,7601,4014,7640,9933,-8365,2284,6978,-4770,1857,-1559,3175,7566,-4281,-3495,-583,6275,8089,2596,-6351,3447,-9932,-1086,1368,-1061,5777,-7417,-9975,7000,892,-8181,-1693,3500,3586,-5812,-9871,5662,1541,4845,109,-476,9360,-4297,-4508,-7481,-5768,9445,-3058,6477,-8352,51,9841,8209,-1628,7950,2066,-2267,7842,5614,-7593,582,-7059,2964,-3551,-3572,7644,6105,1148,3885,7754,6266,-3031,-6881,9862,-8373,-3234,865,2309,-4247,-6460,7770,383,-120,496,4742,-8984,9539,7794,3520,-8301,-9970,6428,-1075,-7157,-8092,7732,-3924,7396,-174,7072,-6167,-9721,6591,7614,5330,-6064,-6990,6649,4856,-2346,6686,-3093,-2853,-8724,-5697,-5790,8155,-2394,1804,-5001,8774,-6641,-3165,7510,7305,-3394,-5857,-4160,7296,5959,5117,-6196,-3843,-6502,-2677,-4204,-9048,7350,7834,6413,4086,-1411,9516,-5457,-6675,7381,-7340,-4280,-74,2893,-1870,2231,5925,-8287,2454,4814,891,2325,-959,-6588,7019,-3861,-8550,-6198,-7575,-2026,-7683,9280,-354,-274,2869,-8038,-9005,5476,1495,1552,4930,5804,9923,8191,-6825,-844,-2619,-5529,6053,4645,-8813,3885,-6732,-3025,676,3336,-5857,-5045,4471,6503,4593,-3950,3832,9897,-5592,-3911,2702,-4270,1826,-6368,4399,-7449,-2053,-6244,3520,7935,5775,-2995,-8420,-5000,-5896,2324,-328,-8043,7075,-4790,-1820,-8220,-1699,9880,-5301,3913,-2331,-855,4892,479,-4943,330,-9614,4599,9267,2816,-4593,-2812,1646,-6391,5692,4849,9070,-5145,5316,-7503,-6462,4791,2446,-1175,2907,-8101,9527,8766,-6849,1648,-6217,7709,-9554,7897,-1511,5121,772,1607,-2860,2914,587,4171,7732,9214,7644,6532,6828,-1552,1149,-9127,5334,5235,-4401,-8326,-1922,960,-1682,-9892,-8,-9190,-6537,-7410,-2048,-8934,5094,1856,7450,-5067,2693,862,577,5798,-515,1780,-2671,2444,6938,-8160,5675,-3664,-764,-7172,-3553,1158,9749,5696,3767,7204,-8650,-79,7899,-3222,7005,-3449,5416,-4456,-6689,4445,-3314,1612,6640,3064,4821,-4643,-4059,-7782,-2344,6057,7087,6322,5557,8752,-474,9214,-8448,5356,3602,7953,4972,1618,-9802,4238,5328,-4207,-7618,8121,9256,1054,-1163,-7702,8710,4165,212,-6218,4799,2376,-106,-3046,-3087,7737,-3978,2359,-5283,-830,-9572,7339,-6820,-9292,8891,7733,4145,-6048,4900,1649,5378,-6292,-173,6693,-5380,1950,3019,-7208,-5895,6238,-4613,8602,-3916,-4407,1686,8284,281,-9813,-892,-3395,-5363,-5771,-7418,4592,-2641,4345,10,-5305,-4641,-8888,-4438,1190,5467,-6578,-9493,3447,-613,-5052,5970,215,3485,-3051,-9313,3463,-2153,2965,3294,4450,8586,8754,857,-4920,-2175,-3939,7209,2767,4761,-5642,2887,-8739,-8870,4895,2724,-5861,4968,8389,8007,4799,-9408,4602,-8777,4818,-3203,9018,7073,6194,355,-361,7578,-7937,-7719,-3574,-6310,-4808,5071,8008,8729,6006,-8048,-9368,3262,-496,5312,-5057,-1835,1344,3788,3349,7432,2609,-5202,4044,3241,-8130,-4991,-5842,3115,-9663,4810,-3579,-523,-4060,271,-1484,7782,4915,2361,-5531,6337,-2647,744,5371,3249,-4819,1589,6779,-813,-7162,-6641,1452,-4872,8336,6009,-999,-6055,4948,6115,9284,3051,2498,-7968,3967,-9644,5215,-1094,-1707,5901,9781,-2520,2450,1040,4521,-2015,4926,-7153,7226,6080,-1741,-3068,2288,7813,1954,-2288,4727,7271,8481,3243,-5331,-1541,1498,-5026,6061,-8180,-8049,1975,318,3391,6785,3686,-7988,4491,7580,4949,8662,1799,-3208,-9163,6729,7100,-2905,-1510,-535,664,1123,3513,412,-7818,-9254,-5380,1407,5788,-1336,632,-6817,-418,-4615,5962,9082,5010,-532,6953,-8735,4818,7345,117,6736,-8840,-1858,-6385,-4165,8879,6796,-2734,2369,-5541,-5676,-1875,-2583,-1940,-1150,1676,-10,-7825,-449,-7207,265,-9021,9588,-1678,-5580,5987,-6139,-3551,-1497,-2626,5286,9143,-5278,-3289,7835,6579,3354,9639,-5896,1840,-191,-1637,-5687,-1194,5001,7186,-90,4491,-9948,-3771,2765,6861,-6045,-2183,-1560,8820,6278,-9015,-9898,1255,4988,-9251,-1859,-3745,4379,7203,3968,57,-361,1467,-297,9080,9000,8227,5036,3056,-9191,4255,-7303,5385,4822,-2168,3426,9171,-4895,-4470,-2782,-4182,2453,3078,-7753,5948,-238,-9512,9409,-1053,-175,1203,-87,-2015,7915,-6196,-2862,3665,212,4811,2080,7152,5142,-5029,-5111,5278,-5119,-1363,912,-6710,7035,-85,5011,8018,-8609,-5067,8715,-8695,5021,-9570,-2282,-7112,857,-8439,3206,6363,7382,-9405,688,-8326,-2279,-9469,-3233,-5302,9848,4123,-5281,3138,815,-7816,5024,-7130,-6597,9723,9122,2729,-5157,-2785,-4497,6851,-478,8079,1325,1719,5483,-109,7997,1635,-5787,-2317,5694,-1287,4768,1077,-3216,-1871,-1856,5163,7981,7322,-9681,1117,-9266,2859,-2318,5408,-4375,-4152,-2091,6,9524,-946,-6325,577,-5348,814,-9742,-2546,8233,4649,-9535,-2070,1150,1050,-2392,198,-52,-8535,-8695,-6707,5133,1258,-6786,-1654,8789,-7735,6812,-3049,361,5702,68,-4515,-4878,8878,4742,-4757,9198,6877,-3345,9480,-5644,-6529,1934,6711,6678,-5196,9594,-8299,7241,-7221,407,-4357,2241,-715,4882,4602,8682,9393,2547,9143,-5726,-6476,588,8812,2373,-7770,5149,-3784,6029,2034,-5708,-8920,1962,9271,4463,-5666,5014,6921,-7028,-8494,-3810,-7690,-8586,-3203,-5189,8065,5284,-9588,8124,-8645,-3819,-9474,9171,-2984,637,236,4966,1650,-9246,5193,5261,-3510,6627,7400,-8377,-4926,-1043,6500,5165,-8430,-8665,-8460,1752,-7366,4771,8525,-5004,-5294,8645,-5197,-9390,3091,4522,885,4120,5186,-4965,9916,-9838,1999,941,-9060,-7242,9744,-1895,-8670,4316,9488,784,-6794,-3677,-7589,9539,4541,-2490,-647,8582,-3926,-9997,-4473,-2573,6071,-5399,-7581,798,-8653,-7787,8376,5963,-4686,-54,5684,-9385,3943,-6279,-2730,-5449,9606,5533,-4435,-4872,202,-4729,3476,-1923,8855,-8423,4187,-4479,-8028,44,6427,-6554,-7583,-1391,5996,-2984,-480,3007,1322,-1322,6387,1692,8402,603,-7114,6988,4885,4427,3170,-5716,6757,2568,5020,145,-6693,-5830,-4242,3634,-3692,1759,7847,-9370,7876,-9617,-4635,-122,8718,-5031,-1103,-9490,3892,8499,2353,-9079,-9167,3727,-6805,-8449,-9248,-9088,-1698,3497,4336,-9120,-8322,8716,1714,-5248,1911,7591,4318,-4011,282,-5209,3623,4964,-4713,5352,8948,8160,6852,-2245,2292,7146,-42,6613,-6507,-9007,8993,-9725,-8405,7502,-2229,3835,-5064,-4266,-8412,-2194,-9919,1699,-2851,-196,5841,1124,5841,-1647,5778,7152,7827,-7118,3289,-1874,-8351,-7553,-4152,-1317,6509,695,-4515,6818,9180,-122,-4228,3914,4811,-9264,-2638,285,-8024,4137,-5303,5676,2146,-4738,306,-4421,4313,-5930,-8953,-3632,1857,-5177,-1944,540,9115,4618,3476,-5120,-3805,-2277,-6547,-1616,1217,-5011,4630,9886,9282,8397,3795,-4680,-2629,1419,-7814,-5340,5118,3721,-4279,-7239,6815,2675,5880,1819,4747,-5410,733,9811,-7845,4904,6766,-1085,430,-2807,-9499,3647,1351,8185,-8938,1046,-4836,5331,-8637,-4161,8320,641,2359,673,4769,-7579,6194,5158,3139,3158,-7945,1647,-6242,-3899,1035,1959,-8763,2139,-5335,6923,-1252,-67,9615,-2884,-8316,528,-5010,-5432,-4391,-9958,-222,-4420,46,-981,8738,9057,7309,3837,-3631,6683,-959,-9634,1649,-4054,-5547,-8229,-7609,5714,6939,4640,2756,-9392,-5298,-6541,-1494,7194,-3088,6390,-175,-7980,-2152,-644,1015,4699,9266,694,2136,-678,8316,9251,-6879,3176,-5447,1338,4576,-6261,-2303,-5989,6351,1345,-8972,-7901,4509,-9196,6937,1867,-5057,3244,8377,-6317,-163,1146,1950,-2682,2316,-7724,6700,-2754,-8871,1163,8619,9401,-2053,-5747,2745,-4466,-3436,4255,-5889,9902,5335,2386,5335,-4685,-3882,-9448,-3186,1562,5089,-7118,-376,-2227,-3676,2356,4418,-5449,-7926,8099,2438,9114,-2131,7046,-7057,1808,-4941,7369,9444,-9951,-5490,-1480,-7223,9609,1733,-5468,-5645,3254,-8608,-2774,-370,9206,3577,-1405,2077,1422,-2734,1064,-530,-4804,-5357,-7222,9846,1690,6693,3862,6134,3118,3660,-422,-3710,-3546,-4565,-9070,3878,8792,7249,-4166,8143,2048,-1399,1337,8772,9793,-7626,-2638,-3920,6283,4686,-2180,9881,-8622,4457,5745,-4686,9491,-1343,-6754,961,987,-3674,-5956,-1964,-9633,-5564,-3419,-1650,1708,-1217,3006,-7593,1007,-8893,4600,657,8653,-2794,1573,-922,-7266,-4688,6662,9769,-823,158,-2679,-6593,7322,2378,9950,-2980,-8042,253,-5344,1831,2546,1161,2195,6613,-3333,5139,-3762,-3899,-1035,-2858,62,-6622,2016,2751,8211,7932,-3291,6789,2441,695,-2918,-7375,-6329,-353,-7112,9927,8896,-6939,-6107,-3390,6326,-8433,8368,4308,-8427,6491,6427,-4664,-4553,1110,-2223,4697,4459,-6867,3493,-1958,531,-6376,-2990,961,2919,8674,-6953,-2766,-2171,9786,8927,9767,-899,-7860,-9658,9791,5454,8432,575,-7132,344,-2040,2486,491,-3465,-463,7808,-2705,-7849,-2497,6075,1494,-6443,5850,-8772,5681,8865,-2038,2554,6361,2987,-1191,6675,-7878,1925,9461,-6449,1876,228,1249,9673,2507,4674,6581,-824,-9521,-5404,-9615,6090,8946,2145,2593,-125,-826,-2200,7076,566,1633,3510,8545,-4472,-5832,3815,6387,2374,-847,-7186,7052,3234,9634,9765,-8657,5730,4125,8488,4375,6733,9288,-3771,-1264,9271,-7115,-9573,377,-4785,-4378,-8426,-8868,6198,-4820,-9903,-2645,-5306,5959,7895,-5666,-8224,6949,8097,-4,8338,-1525,-9875,9594,-1297,-4931,7658,-1013,9726,2965,-658,3774,2507,-8315,-9690,9741,3053,-7783,6210,3690,4243,-7757,-7154,3846,-401,1879,-2380,-5206,1593,-1753,4587,438,-1133,-4553,907,9757,-7663,-8083,5474,7053,-3056,1433,-9929,-4214,437,110,-8376,-1964,-1427,3773,-8380,-9328,-3219,2338,2550,1158,-6278,8321,5376,9929,9664,902,-8328,-8700,7353,5033,-1727,-18,-8544,1735,-793,-459,588,795,3621,6355,-7454,3777,-5808,432,3412,-578,-5122,-6617,7825,7671,-5137,3986,1278,-6124,-1310,-4698,2186,8423,-4508,-251,-8055,-1517,4876,-9964,-7091,-7615,3907,-4108,-6193,6395,9991,6305,-3212,7057,2010,1588,-3103,617,-1882,-6558,9039,-5715,5409,-9774,6081,-7050,4207,-8228,-4034,1316,1811,-1070,-256,9673,2795,-4648,7120,3362,-8169,2274,8169,-2998,-8218,-8889,2314,3161,3257,6920,4862,-4594,9440,-423,2732,-1405,4353,8886,-2308,6192,6566,-6458,326,9675,4026,-6891,-4256,-5467,5504,7338,1385,1520,260,-3303,-8227,-9219,-6539,-769,1676,-4339,1903,-7695,-8463,1466,623,-6583,1005,-9649,1662,5974,-8844,2965,-3565,5884,3533,-2670,8656,6999,-145,8129,3539,9746,-3423,-2888,647,-7172,1444,-221,-3892,-6440,7836,-6560,-8831,-1454,-5120,-7006,-1191,-9852,-1984,-5424,-7965,1375,-2951,3466,3265,-7356,-7327,-9874,8953,-9952,-1148,-5113,-9170,-3765,199,-6785,5659,8733,4387,-3286,-4198,5858,9140,841,1115,3992,-8667,9161,-3270,2621,8900,402,3410,-8315,1713,395,7367,9366,-7143,6703,-1077,-9691,8986,-2271,4536,5260,-6808,-7003,-7782,475,-5325,660,1193,-4599,2905,7016,-8586,-6506,9290,7262,-6426,-8161,-8810,6592,9780,-4055,7055,4134,176,2601,-5065,8240,-7433,-6192,-7688,-6129,9261,-4073,-7515,-2870,-6866,-5832,5409,6330,-9993,-1781,-5834,-2997,-6680,-3486,8533,4630,-1411,961,-8014,2510,5926,5659,-2242,-9556,7865,4591,-8520,-7009,2230,334,-2057,-4737,-5149,4271,-1854,-6104,4857,-1907,-1519,6592,-2445,-1443,8984,-2519,5693,-9011,-6257,-6163,-4763,3185,1071,-1697,1841,5161,3894,-4690,2854,-4635,-8426,7495,-2467,6440,7083,-3194,1966,-9992,2201,6210,2009,7231,8085,-8636,-8707,7456,-4370,-8162,410,-6913,-229,-6382,-183,-4423,6545,-4798,9993,5415,9372,-315,-7184,-6846,-702,2913,8589,-1135,-6783,8777,-2059,8105,3855,-1822,-956,6736,-3512,1593,-5043,-1074,-8969,-6063,-98,-739,-7445,9554,1006,-8668,2954,2604,-1568,1504,-2463,-7982,-8598,-5585,5617,-8759,-5518,3884,-8058,-8971,-2853,2685,6172,-8999,5766,9512,-9250,5516,8481,7925,-5392,-6838,-5062,4393,-8825,8137,-1240,-4248,-9284,9129,-8637,-5105,6666,5509,6887,-5344,-1410,7534,-1530,-2754,7239,-7869,1789,-1234,6908,4722,-8160,-8205,-5931,-1306,-2194,123,-4763,6249,-8850,3776,-1005,-5790,2309,-6173,505,-3800,-3729,6750,-6206,-3834,-381,-6045,-9722,-4315,1403,-2718,-6413,7836,6867,-7658,-809,2153,-9,-7077,9431,-3257,198,-3003,1895,9968,-2939,-9738,5792,7594,-6682,-3352,9846,-5750,4211,9200,5659,-9798,-1032,-2881,3735,-5839,-9475,-4180,-3343,1656,-6236,2901,2837,-9375,-5447,-7065,4972,-1813,-3720,-7882,1145,3522,6742,-9779,-9172,-2128,-2043,8476,632,4324,-701,3916,3791,9970,-2570,8925,-7944,9801,8750,-158,9615,-5239,-1210,-88,-3450,-2363,-4613,6613,2210,-5014,5326,-7218,-7248,-9640,-8661,-1005,-8359,4113,8654,-2676,7769,-3003,-102,4612,6958,2809,2875,507,-8571,6150,-5782,4060,3395,2007,1914,-2673,-565,-7352,-7076,-5862,-7191,9209,-2355,-6007,6378,-6806,4748,-6190,6334,-7274,-1858,374,5521,-4921,7887,-8562,-3967,6817,-6007,-9665,3624,3658,-5917,-1664,-5875,6726,6068,261,-9738,4180,-694,-9164,990,-5338,7361,2147,6341,9427,-849,6876,-8549,-69,6529,1161,-3062,919,271,8253,8191,49,-336,-8940,7461,6995,2480,-7139,-9923,-3201,8640,9061,-5921,1529,7747,-8665,-6187,1361,1756,-5373,7523,4922,4106,1823,-353,-2480,5874,-3342,-7102,1662,-9152,6347,-9169,-5321,-2035,-7821,8287,3586,-339,904,-3490,-4233,-8540,-7671,-6601,-3847,9229,-238,-6346,-9714,-4693,3891,-2916,8749,-87,-3426,5414,9324,-5266,6676,-2774,-6092,6951,7968,2272,-2465,4888,2988,2108,-7791,794,685,4693,-2323,8896,5884,-1242,-7585,-6696,4272,-199,-4033,3270,-8782,4722,5090,-7724,-1134,8467,8880,-2898,2038,2507,1563,-9642,-2571,-3078,3982,3584,7023,1394,2305,9763,-4863,-3063,-538,4514,-9268,-3276,9025,9113,-9733,-140,7913,-3116,-3634,6376,3068,3005,5769,4079,-3489,6007,-3551,-9834,-525,-953,4237,3468,3659,3855,3841,6276,959,9371,-6684,502,7566,-7170,3982,6715,-3652,-9067,3048,3228,-1266,-2721,-262,5543,4484,5440,7509,-9714,-4996,7041,1995,6198,6579,-7496,-8977,9554,-2698,-5196,1347,5165,-6074,-8362,5984,9791,-8526,1499,1555,4389,-7836,-8845,-3703,-243,-2175,9729,-7466,9217,3089,9169,-2712,7668,8170,3227,-9301,8019,8473,4293,-5845,-3411,-8734,-7299,4137,-9006,2209,7730,-1632,-7307,-7129,7621,8757,-7124,4427,-6580,4235,-3196,44,-7426,3728,6234,115,791,4128,1547,44,338,3468,-9311,1784,-5083,6102,-2828,-830,-6747,8685,-5799,4754,8722,3298,6953,4724,4492,7622,119,-2269,-6025,5615,-3266,520,-4811,8074,-2028,-3002,-877,-1590,-5990,-6802,29,9022,-8104,7713,-4572,-7686,-800,7924,4454,5226,1256,-7889,-4066,-375,-5646,-8938,-6424,8726,6223,-1166,-8369,-7710,3203,855,-910,8040,-657,8726,-7563,-6649,-4555,9204,829,9645,5696,3656,-8541,-5699,9298,1923,1934,6376,5078,-4140,7559,-9710,9404,-5580,3113,7370,7575,-3174,-6673,8967,-8053,-462,-8874,-683,5852,798,2126,7207,8131,1462,-1865,3700,1572,-5974,-8302,4162,9396,2136,-4244,4425,-8655,-80,-6028,-9359,6134,-6497,-7600,4554,2202,5018,3162,-3961,-8781,-2269,9831,9918,8660,-5734,-9187,8569,-73,9227,-2047,2539,-9573,-1845,5502,8355,4884,-877,-4285,4925,-3511,1307,-4091,-8910,-2795,-7027,-6037,-4073,1165,6525,2472,6062,-7717,5012,2271,-7265,-8329,3261,-2431,1219,-1260,6707,-9644,-2605,2683,2754,-483,-709,1898,-1075,5999,5884,3723,8767,5846,3118,7220,3272,7515,-8693,-3190,2280,-236,2477,-4755,7723,8358,-8383,-7806,2273,9090,6413,5855,1268,8222,7652,-8522,446,1516,9635,-7379,-2421,3606,-2185,4626,9810,-6160,-3011,3946,9608,-9975,563,7098,7788,-6251,8081,-5928,-1822,482,-7980,754,2468,2727,6997,4031,7255,-3228,-7378,-4322,-9303,4214,2729,5730,2313,4123,-1724,8916,8954,9340,6718,5920,-647,-1636,3661,5711,-3629,-633,4739,-5544,-5530,-3396,8834,3516,-3771,-2799,-9505,-1036,0,-1191,6847,-7625,8533,8699,4153,-4893,-764,60,8012,6324,6435,7264,-2730,1691,8846,8004,-4528,-5753,-8153,-4792,6589,-8381,129,-1036,7870,-4794,6482,49,1167,-6772,22,2480,-660,2410,-5833,-4885,4678,9282,-1121,-9793,-7553,2222,-642,-7267,-4388,-6131,5374,2380,-9279,528,5295,-5047,-9653,-4393,9124,-3694,4245,95,-1948,-1917,-5053,-8458,-9913,-4139,7892,-3337,-2531,7372,-2674,5439,6865,-386,-6219,8572,-3857,-7187,-7239,466,100,-9076,7076,-3512,-7089,-4438,9476,-5254,4828,5912,-1469,-1677,240,7997,8626,-4815,6344,-7307,136,-8859,1853,4742,-7784,4213,-1193,-8906,-5495,2260,3966,-5403,8377,-642,-5001,4548,8339,6690,-3842,4451,2900,1831,-6299,-5632,-9641,3392,-3609,-4003,-7473,7697,5770,-1142,-1497,7600,-562,-7347,1384,-7271,6500,-9569,9052,6537,-6091,892,3215,-7421,6991,-3562,8480,6433,9805,-4211,3548,-4397,4458,6172,1427,-9971,6002,-9288,-6593,-8338,5807,-3978,-3567,-8363,5870,2224,-9623,5952,-2900,7290,-1764,-4371,-4801,-8640,1184,-9476,3200,-4911,4877,-3266,-8700,4387,-2988,744,872,2680,5227,4057,-1539,-4741,-3196,-1310,-4171,-5262,-9419,8947,3034,-8383,-1718,5884,1387,-3121,3752,3469,-7945,-8593,8084,-9096,-6098,-28,-4003,3154,8045,9671,404,4117,9964,-6396,527,-9540,-4607,3136,-1541,5459,8447,-4582,-3504,9616,-1171,136,1942,5709,-6606,-761,444,-555,-3840,1455,-9746,-3601,-9693,-3175,-8428,-6000,-9495,9330,-1164,1029,-5594,-8042,1678,3690,7070,2839,-5040,9951,-8745,-833,469,5280,-5938,-6711,-9370,1129,-9496,386,-7251,-605,-3584,3020,-9368,2690,-523,5727,-7116,-2122,6579,-136,-6988,-5658,-5671,7927,-7920,-7641,-6670,3386,5310,7384,-9150,8864,-9766,7536,-4564,254,-7180,-516,-4760,3927,-7790,-4193,959,-4099,4298,7241,6923,-7837,-5843,-3018,-4424,-2630,-5756,6136,-3921,-2538,3090,-8326,-8351,-6299,-2796,-4321,8409,3315,7223,1461,-9101,-230,-9090,6080,8943,9601,2014,4346,-1710,5595,5063,-8982,-2665,7031,-2682,-2004,485,311,-1140,1911,-4407,634,-1082,-2588,2559,-6789,6915,9323,-888,-1120,-5628,6886,4437,2928,-2639,708,4786,6838,1254,-113,-8848,-5992,-3037,-9143,-9098,6109,-5568,499,-4457,-6156,-9805,-386,7634,6228,6498,5483,-3393,-3091,-5467,-9662,9283,6215,-8512,-2454,-7445,2103,1958,3576,4627,-1574,1920,1557,157,-498,4381,3458,8802,6922,4602,1775,-9753,-8796,-155,6836,4319,2154,1501,-5126,-5690,182,657,-6074,-7711,4697,-6921,-980,9464,-4056,5067,-1531,-2185,-9372,6547,983,5950,-4399,-3017,6933,-8744,-6148,5128,4016,-7248,5294,9141,-8137,-497,2844,4584,-8866,-5522,-2042,6334,-6470,-839,2555,-4438,4862,9909,3767,9656,-9895,3846,-7770,5551,6021,-1978,9637,5373,-641,-3270,-7403,-5630,-7534,1590,-3976,-8000,-5978,-1469,5162,736,-1191,-9910,3990,6466,-3025,8684,-6433,840,5747,557,-1163,2259,9234,-5853,-7284,-7472,-9328,6187,-6356,-9458,4683,4505,2349,8918,9852,-3341,-5073,3689,-7501,-556,4857,3439,2687,-48,6150,-3290,-5732,4465,3714,-5064,4443,36,-8950,2199,611,-1479,-6682,-8574,8235,3786,9332,5303,-8411,-8815,-8453,6023,2910,5003,-7104,-9813,2511,-8764,3834,-8251,-5790,-7780,3843,7736,-9023,3883,6339,7672,-7576,9873,-2253,-5801,-1866,3563,8066,935,7938,-670,-4156,5471,5034,1398,-8856,-7919,5479,-8937,207,-7174,2254,-9318,9138,4167,-8328,7251,-5751,7643,-8097,-4801,1960,9438,-2939,-1025,-3839,671,453,8933,2411,-7964,-78,1878,-5352,5011,-4191,-119,7483,-9607,8538,6833,-6067,-1857,3954,7469,-8049,-9392,-9872,6098,-6653,3996,2242,-1631,-4585,6540,-5654,4369,8370,1447,3584,-7712,6340,-1690,2524,2313,1358,3714,387,1242,-3736,593,-6529,377,-8326,4198,6627,743,5190,-2131,-4871,-8671,8487,-1502,-9741,-5394,-5331,3406,8521,6292,257,-2518,-2432,5147,996,9101,327,4000,6781,-6706,-9857,9397,-3436,-9268,-111,2212,406,8353,-8355,4414,-8950,-85,-6867,1866,-4414,816,3884,-1667,6187,-7083,3750,-5000,5788,-9538,-505,9177,5648,-8091,-3099,-9762,-2304,211,-7725,7438,6718,-7118,-2707,8365,7709,-2791,1354,-2977,-9360,9634,6284,330,-6729,-9673,6129,-7405,21,240,-9556,-6512,-8633,4046,-5727,-5971,2350,-54,-8775,2643,2136,-6820,6361,-2097,6051,-1476,-2811,2000,-4442,3224,9784,6863,-4372,-6159,-199,3532,2739,8579,2913,-6286,-7404,-6212,5065,2340,7166,6162,-5043,569,360,-7030,-1143,6133,-3985,-2243,7279,6761,1921,9549,5839,638,3445,7718,4280,-4015,-7335,-3209,-1441,-997,262,4256,9365,-668,8390,660,9842,4221,2449,5932,9985,5681]],[8166],[1064],[8508],[6255],[1605],[-2106],[-3534],[4018],[9220],[5121],[613],[-5503],[543],[4440],[9140],[-6495],[9029],[-3536],[-2242],[1393],[7793],[4225],[-1181],[-1161],[-372],[5665],[3407],[-8827],[-1299],[241],[793],[-5001],[4923],[4020],[6537],[-7711],[260],[1301],[-7252],[-3866],[-3865],[9201],[8442],[4662],[2432],[-7055],[-750],[-5089],[-129],[-9148],[-1476],[7098],[3646],[-8668],[-1741],[-6016],[-4131],[-2320],[-4543],[1018],[-7365],[7914],[4915],[7594],[-4997],[-330],[3948],[-6611],[8601],[-7092],[-9964],[4283],[-5156],[9124],[-744],[4596],[-7322],[6075],[3443],[1672],[-2428],[790],[-6368],[-3068],[-6946],[-4902],[1951],[7109],[-6488],[843],[8872],[75],[2448],[8804],[3924],[5859],[6686],[-6585],[-1749],[-9378],[4803],[-258],[-19],[5012],[-8904],[-8905],[2298],[-5292],[7873],[-755],[8218],[-9564],[-5025],[7323],[-4934],[7880],[-3547],[1477],[-6833],[-7526],[-7233],[1175],[-2314],[-2840],[-4516],[1842],[-8536],[4574],[-5905],[-1872],[-7474],[-9153],[4497],[6380],[-6716],[-7831],[-6277],[256],[2515],[6042],[8056],[-9053],[1301],[913],[-8816],[-3162],[9288],[3367],[-59],[-1370],[1985],[1243],[-5848],[-3403],[-5471],[8135],[4518],[-5000],[-5808],[2333],[5385],[1637],[1252],[6699],[-5738],[241],[-7315],[6237],[4459],[-7562],[9918],[2326],[-3652],[555],[-2018],[8096],[6243],[-2376],[1849],[-9843],[9017],[-7834],[-7520],[-7250],[4210],[2436],[-768],[1327],[1070],[-3890],[-1226],[6679],[1300],[1112],[-9816],[-4133],[-8229],[8472],[-6328],[-7276],[9875],[-9531],[9866],[-4845],[-765],[8891],[2258],[2326],[-7246],[1116],[-4068],[9688],[800],[-6422],[-6854],[7135],[3517],[-1806],[5490],[1340],[-4241],[5758],[-6475],[-3809],[-3643],[-6694],[-7610],[-6877],[-3970],[-9229],[7639],[3952],[9931],[-4162],[788],[2948],[1885],[853],[2284],[3741],[4577],[-5905],[4349],[5919],[8437],[-1475],[9651],[6234],[-81],[-1095],[-700],[8102],[2808],[-5954],[4098],[2825],[-3630],[7949],[4121],[9406],[-5426],[-9863],[7103],[7803],[6022],[-115],[9083],[2631],[1739],[-3217],[6258],[7277],[-5664],[-1489],[4551],[-6394],[8594],[-5372],[5841],[542],[-6076],[-5081],[2851],[-2947],[-736],[9841],[7585],[-2342],[-1909],[-5735],[-3343],[7750],[-3670],[2272],[7968],[-3045],[-8229],[-7269],[-8542],[2101],[-2601],[9575],[2148],[3646],[4703],[-3749],[-8888],[8694],[-9693],[19],[-7623],[-4350],[-7128],[-1813],[-613],[-5244],[-5875],[5942],[3876],[8159],[-5977],[-1280],[6357],[-7530],[887],[845],[1232],[-2043],[-4218],[561],[-8373],[-6426],[-4322],[-4061],[-3003],[-8776],[4214],[1693],[-4387],[4453],[-9179],[5983],[-7971],[240],[7355],[-9743],[8354],[9679],[-9763],[3327],[-1294],[-7309],[9921],[-7072],[-973],[-8763],[9495],[-695],[-9228],[-6230],[7884],[-9856],[5666],[-3354],[-6681],[4040],[7426],[-2796],[2781],[8816],[9290],[-8561],[-3620],[-6307],[7215],[-5443],[8116],[-7230],[3313],[-9550],[308],[9080],[-1475],[-3830],[-2672],[3796],[-3654],[-3166],[6412],[-9577],[-2519],[-8868],[249],[8082],[51],[1368],[-3247],[4401],[-5114],[-2049],[482],[457],[-6435],[2347],[-1300],[1864],[-7453],[1727],[-1363],[-2773],[-1091],[-5959],[-703],[-1789],[241],[-4508],[-9657],[9060],[-3307],[-7015],[8418],[-6134],[-1623],[8144],[-6655],[5579],[370],[5979],[4608],[4487],[-6133],[-651],[4715],[6952],[-6809],[-3674],[-1606],[-6883],[4816],[-4825],[7192],[-7405],[-5805],[-9200],[294],[3265],[1333],[6345],[-3235],[-4010],[9129],[558],[331],[-3432],[-3555],[3961],[-1981],[1796],[-3070],[-8093],[-5280],[-5563],[-2742],[-753],[-1521],[-2536],[-9763],[-6425],[2797],[-2733],[8],[8550],[5062],[-8488],[-4118],[4816],[-4762],[-9291],[-7635],[-4277],[2214],[8467],[1395],[7421],[1248],[-5222],[-8928],[-5450],[-5884],[4995],[-7217],[-6036],[2782],[8214],[-5789],[4417],[-5254],[-1379],[-5086],[6580],[8739],[7248],[-8565],[5310],[-2175],[9253],[-3098],[2579],[8427],[-154],[-7202],[4664],[-7500],[1565],[-9142],[6167],[-2641],[5721],[1309],[-5400],[3841],[-6030],[2098],[8033],[-9857],[8288],[1717],[-3841],[8677],[-4140],[-3960],[742],[-380],[-5509],[-1715],[1590],[-5848],[-1394],[6328],[8282],[-5121],[-3489],[-8501],[-2879],[-6782],[-5498],[-6867],[-9597],[-7980],[-7272],[7579],[8340],[1762],[1328],[1533],[2665],[8785],[5056],[9483],[-1788],[8429],[-7175],[-9137],[7462],[-5102],[-6821],[4490],[7645],[-6657],[7581],[3613],[1187],[5047],[7254],[-4122],[-8637],[-7853],[-1428],[-9749],[1755],[8410],[-42],[-2227],[6895],[7049],[7221],[3651],[5292],[3319],[2427],[7625],[-3568],[483],[-9137],[6798],[-7270],[6697],[-4490],[4252],[6606],[-5478],[9799],[5963],[5518],[3652],[-5892],[8674],[4205],[1524],[-5166],[-6105],[-797],[7747],[-8865],[7260],[-5955],[-1823],[-1698],[9345],[-8849],[713],[-694],[-8355],[-7858],[9812],[-7978],[9862],[732],[-769],[8272],[-7086],[-9484],[-4583],[-5485],[-9870],[6963],[7391],[-2095],[-4960],[6966],[-393],[1207],[9607],[-3778],[-618],[-7395],[3474],[1217],[3408],[-9955],[5404],[8142],[2844],[6225],[-5315],[2811],[4041],[3980],[6827],[-8648],[5099],[9165],[-6018],[-7775],[9184],[3889],[9911],[-7412],[4861],[83],[-8313],[-9954],[6172],[2382],[4848],[-6771],[6316],[-6563],[2182],[7454],[3906],[-3083],[8834],[9077],[-4240],[3863],[-5219],[-3547],[9705],[4674],[-502],[3384],[2670],[-1178],[1498],[-7239],[-1593],[9900],[5449],[-8615],[-6288],[-6577],[2014],[-5211],[-9519],[-4369],[7067],[-5301],[-9524],[-4247],[-2498],[6452],[5620],[4059],[993],[-7552],[-5140],[-4917],[2338],[2044],[-5490],[3227],[-4363],[-7731],[7198],[-4133],[3616],[-8107],[-3683],[4178],[9559],[6747],[3911],[5312],[-5044],[6344],[8022],[-9200],[3725],[7175],[7670],[1845],[-8979],[-5715],[-6051],[-8014],[-5292],[-1051],[-1700],[-9327],[6331],[-8413],[-4029],[9086],[6250],[998],[-4386],[3987],[-6460],[8180],[-7824],[-7418],[2887],[5771],[-5241],[-1208],[-6045],[6220],[-6313],[2012],[-9634],[8884],[-4377],[7825],[7118],[-9521],[1050],[-1973],[5884],[-7594],[-4015],[4340],[908],[-1589],[4248],[7635],[1859],[9151],[-3180],[2568],[-1687],[-394],[-6759],[9407],[3568],[-2347],[8188],[-6563],[861],[-3962],[-3399],[3771],[4835],[3672],[4162],[-4373],[-5501],[433],[4131],[-4560],[-2090],[2206],[-5535],[-9099],[2967],[-4288],[-6976],[-4985],[-7939],[6840],[-7294],[8964],[-9605],[-1866],[-8977],[5667],[6968],[-985],[8008],[-9704],[-4907],[9908],[2012],[-1560],[7842],[-362],[-7194],[1131],[3290],[-3245],[-4537],[-7936],[4530],[-1115],[-6907],[-5818],[5332],[3638],[6624],[-4510],[-8669],[-7971],[3118],[-2404],[5066],[-5630],[-7289],[7933],[-7215],[8272],[5017],[-4390],[7460],[8510],[-2352],[-1786],[4799],[5727],[1581],[-605],[-3324],[318],[-5530],[-5764],[-1231],[-9988],[-9832],[-4895],[-2455],[5520],[-3860],[-7626],[-1160],[4462],[2376],[8718],[-3816],[-4123],[1162],[-1802],[6451],[2093],[-2196],[-394],[-3894],[-4067],[5270],[-5481],[5179],[8139],[9178],[1213],[283],[-7479],[3645],[-9771],[3784],[-2327],[1283],[3502],[-2697],[5628],[5492],[7612],[3150],[-2324],[-2058],[-703],[-5316],[-4143],[9503],[-2138],[5008],[6743],[2422],[1194],[650],[-5903],[9092],[2143],[-3316],[5866],[-6299],[4478],[604],[-4859],[8359],[-438],[-6011],[4153],[8062],[7996],[-4021],[-4573],[7654],[-8643],[5676],[32],[-8195],[-181],[3010],[-3372],[9034],[-3654],[8403],[6783],[-3184],[8337],[-2366],[7015],[5301],[1739],[9822],[6875],[-2202],[9342],[8237],[-443],[7124],[952],[7204],[1653],[4249],[-3987],[6898],[-5359],[-5376],[5175],[9366],[5141],[5687],[6730],[2284],[6152],[-2512],[-5261],[4548],[1442],[2452],[3618],[-3008],[-7476],[-185],[1272],[-5897],[-6864],[2283],[-2263],[-6408],[-3812],[-4933],[6096],[-4263],[-1053],[-3454],[8644],[1057],[-6751],[6345],[-6967],[5009],[5536],[3165],[-8958],[-2144],[-5395],[-1639],[4886],[-5501],[1073],[1439],[5315],[-71],[-6262],[6328],[1680],[-8546],[6741],[-699],[402],[8911],[-8825],[-7170],[-6354],[-1088],[-2221],[9286],[-2930],[-7523],[-4379],[-5760],[-2879],[-6957],[-7065],[-3423],[391],[-7377],[-6413],[2898],[4774],[-5454],[9973],[-9586],[-2958],[-2270],[-9844],[8394],[9563],[-81],[9096],[-7734],[-5658],[806],[-2755],[7585],[1571],[-903],[-8261],[8153],[1466],[-4855],[4668],[4956],[3713],[-8592],[8105],[-7873],[-4182],[3233],[7394],[55],[1010],[6376],[3228],[1019],[915],[7486],[3365],[1368],[6713],[8417],[-5191],[3393],[1172],[-7272],[5698],[564],[-4284],[8492],[-5040],[-264],[3432],[6496],[9348],[6524],[-3330],[1702],[-4551],[6128],[-859],[-9916],[591],[2798],[1881],[-9873],[7555],[3053],[4301],[7826],[5484],[1928],[-5235],[-3874],[-7843],[9298],[-9684],[9121],[4301],[4329],[-480],[-636],[-2498],[-1953],[-4667],[-7438],[-5404],[-7183],[-2541],[9426],[3183],[8385],[470],[2200],[7537],[-4753],[2765],[-8618],[-1763],[9100],[-5036],[-924],[-4451],[-9914],[9096],[3839],[-3370],[-6409],[-3138],[-8306],[-9668],[2356],[3303],[9778],[-5658],[8796],[3270],[7657],[9201],[6459],[-7134],[-67],[-6007],[2843],[-4339],[746],[688],[-7257],[8209],[-3183],[-6522],[6204],[-2931],[-1849],[779],[-7112],[-9344],[7153],[3493],[-7792],[-4275],[-1911],[-75],[2856],[6242],[-8249],[2817],[2419],[-7304],[-3651],[-2533],[-3470],[-4361],[3477],[-4538],[7088],[-1372],[-4666],[6587],[3728],[2770],[3761],[-4417],[7529],[7879],[-4467],[6114],[9836],[5096],[6676],[-4477],[-219],[1582],[6433],[7898],[5747],[-8259],[3928],[-5690],[-7339],[-9616],[8217],[-6781],[-5732],[-838],[9515],[-8811],[-7123],[-2929],[-5072],[-1997],[8853],[-4807],[9441],[-36],[2020],[-2236],[-9471],[9062],[-2108],[1743],[-7253],[676],[-3785],[7470],[316],[-3357],[9738],[-4485],[-2326],[8450],[2428],[8944],[-5840],[-5256],[-6836],[-6626],[-2691],[-7954],[-5994],[1592],[-7736],[-5970],[-848],[-9296],[-1446],[3051],[-5501],[7373],[7922],[-5428],[2342],[7594],[5665],[3850],[3068],[9895],[-215],[8535],[6439],[-7207],[2402],[1782],[-5909],[-7064],[-8306],[7627],[-9063],[-8600],[4077],[-4736],[8728],[5480],[1436],[-2114],[6436],[9112],[-255],[3635],[3563],[9646],[5673],[6073],[2714],[-2473],[-5990],[-4136],[-8991],[-7118],[8453],[9144],[-4947],[-2203],[3225],[-9801],[20],[-2783],[-9711],[-8974],[-7100],[-5975],[9107],[8936],[-3323],[6626],[6880],[3443],[-8913],[-4505],[-2148],[3770],[-557],[5074],[-5191],[-4143],[-2827],[-520],[-2250],[-6549],[8060],[8393],[-4200],[4308],[4100],[4463],[-6339],[-8312],[7920],[-9849],[-1732],[933],[-859],[6669],[5830],[-3579],[3163],[8694],[-1646],[8834],[-7349],[-7292],[-6929],[-553],[631],[-1259],[-7289],[7347],[5322],[-7807],[-6585],[3953],[7910],[-3350],[4674],[-2561],[73],[8064],[-543],[7292],[913],[-530],[9021],[-3068],[-9686],[-9381],[2954],[-3328],[-7801],[-6707],[-2661],[-1583],[1815],[3448],[3655],[8683],[1040],[6931],[1161],[8425],[4374],[3632],[1404],[4601],[482],[-3445],[883],[-8667],[-7690],[947],[7488],[5998],[3590],[2438],[-2783],[8879],[-3585],[-6016],[-2162],[9985],[-4778],[-7629],[-6555],[-1055],[-1356],[201],[-3776],[9573],[-1136],[9306],[9866],[-3087],[-2406],[-8242],[-5791],[4566],[-5720],[-6853],[-6063],[4794],[-8695],[3137],[-2370],[-5837],[9820],[8180],[5535],[7744],[-6501],[6867],[-1620],[9194],[4184],[6436],[-7982],[-2208],[4386],[1611],[9621],[8808],[-6881],[-296],[-2834],[-7420],[7430],[405],[-3501],[3537],[-3771],[5384],[-3001],[1517],[-6354],[-8623],[-6812],[-825],[1276],[6174],[-1942],[7705],[7650],[-7832],[7264],[-874],[9595],[-892],[1523],[-6297],[-2094],[8633],[-2101],[807],[-2742],[-5951],[-1254],[-402],[-9886],[2289],[-4596],[-1438],[-1092],[9418],[-9242],[-5444],[3466],[-2099],[-6106],[-495],[3710],[504],[-748],[-7896],[-6674],[-1622],[3449],[1805],[-5234],[-344],[9194],[9766],[1807],[-9087],[-6615],[5373],[2103],[-9104],[3645],[8959],[1214],[-929],[-7218],[-8740],[225],[9872],[-9166],[7430],[5830],[-3611],[5962],[-7775],[4074],[8559],[9353],[1521],[6711],[-1509],[-6548],[-9259],[-2404],[-4524],[-8524],[2942],[6429],[-5184],[54],[1831],[1703],[-2776],[-9460],[7461],[6785],[8834],[8967],[6560],[2180],[8871],[-4243],[-1803],[7757],[4642],[-3394],[3013],[6595],[4750],[8381],[-8109],[1351],[-6796],[-3809],[-7376],[-5186],[8017],[8286],[-1899],[-7555],[-9409],[-8725],[-371],[-2679],[-2670],[-6024],[6877],[8527],[-9431],[-1026],[2145],[-257],[4209],[-8148],[9447],[6693],[-2432],[6496],[3726],[-4539],[1078],[1570],[9456],[-8668],[7569],[-8796],[3976],[-8195],[962],[-9648],[9903],[-5843],[5193],[-2642],[-6754],[7137],[7397],[1012],[6064],[-5107],[-73],[2787],[3760],[2875],[-423],[9645],[6444],[8468],[-6011],[-6817],[-6930],[1243],[-5999],[5787],[7728],[7027],[5802],[7429],[8143],[-9493],[4500],[-4319],[-5217],[-4416],[-1841],[-2612],[-6789],[4010],[-667],[6973],[-265],[622],[-7076],[-1027],[802],[-5338],[-4213],[-4819],[3214],[386],[-7152],[-7622],[-5834],[-2850],[3064],[797],[-5044],[-2535],[-691],[1675],[47],[-3007],[-735],[-1470],[136],[1436],[-8334],[-6568],[7609],[-6987],[-9139],[-1201],[-9129],[-3950],[9907],[6975],[-4850],[4278],[-5906],[7927],[4307],[7972],[-5640],[-8836],[7416],[163],[-3083],[9279],[270],[-9924],[1885],[6023],[3826],[-1399],[-989],[4493],[-2601],[-8166],[2551],[6950],[-3250],[-9300],[5223],[5997],[9799],[-9388],[3650],[896],[8233],[-4889],[7165],[-8192],[-1601],[-8114],[2456],[-2664],[418],[-5211],[-6371],[-106],[-8926],[-3670],[-3773],[2919],[6570],[8328],[-3640],[-633],[-9119],[2435],[1099],[-8059],[5999],[9011],[1155],[-6841],[7039],[9685],[2717],[-2857],[-8248],[1265],[-3855],[8063],[8551],[-6030],[-5037],[5330],[9881],[-3856],[-959],[-986],[3618],[7902],[52],[3594],[3016],[-7366],[-5259],[-5020],[7494],[-1188],[-6695],[-4341],[1125],[-1807],[-7339],[-6735],[-6111],[2830],[5566],[-7467],[-3048],[1992],[9570],[-7527],[-61],[6599],[6305],[2363],[-6867],[-5764],[7318],[2414],[1385],[-2016],[9935],[3062],[4695],[2682],[1038],[-8572],[5428],[-4277],[3486],[-5136],[-5114],[-8453],[6117],[3157],[9606],[-1329],[6405],[8953],[5585],[-3046],[6274],[8384],[75],[4896],[9676],[-5941],[-3603],[-3736],[-6602],[-8802],[-1275],[-5862],[-2328],[-2782],[7633],[-7028],[-9377],[-3244],[928],[8475],[6803],[147],[-3386],[5457],[-2726],[9380],[-474],[-266],[-3431],[-4126],[-6468],[7787],[-4620],[-7092],[-3350],[4006],[8587],[-9289],[614],[1146],[1962],[-8137],[-2466],[-3391],[-1016],[-877],[-4605],[7602],[-4125],[-8434],[-1416],[-8979],[-1529],[-425],[7604],[-620],[-8157],[9593],[-5100],[6555],[-6896],[-1312],[9142],[2390],[6542],[-3202],[1586],[-1338],[-7670],[-30],[-2247],[-7026],[9901],[-5207],[1987],[8821],[-5442],[-917],[806],[-2976],[9430],[5354],[-9313],[6759],[-7934],[2927],[-7482],[3396],[-9698],[-1471],[-1244],[-5555],[-5641],[-5737],[-1910],[5366],[9351],[8334],[-1808],[-6905],[-7261],[4963],[-3095],[-2182],[5958],[-8823],[-5590],[-9033],[-646],[-1617],[8576],[1720],[6581],[6083],[-3221],[5285],[3628],[-5836],[-735],[8717],[9181],[-6408],[7221],[-4517],[620],[2876],[-6106],[3918],[-8395],[-9241],[-9576],[4047],[-5657],[186],[3997],[3618],[4318],[3972],[-7672],[9253],[-4104],[-7112],[3392],[7546],[6915],[-5796],[-8429],[-2082],[-4709],[-2890],[5826],[342],[-9717],[6843],[-7660],[8961],[-6540],[-7698],[-8438],[8941],[4507],[5493],[-3822],[32],[-6586],[-5261],[-4600],[4549],[5189],[5589],[-4326],[8015],[8083],[9385],[1805],[-5287],[-3300],[-7693],[4866],[3291],[-3906],[6317],[-5719],[5073],[1150],[-1863],[7754],[-5245],[9705],[2736],[-5487],[-5511],[1978],[-2983],[-6304],[3646],[-5061],[-4147],[-4649],[543],[4152],[3953],[-6572],[2637],[-7393],[-8790],[3128],[-3743],[4915],[-9802],[-4245],[8124],[1023],[-6918],[-1409],[189],[5667],[4358],[7381],[1245],[2438],[-5135],[4401],[5271],[3671],[4606],[1556],[2566],[5587],[5569],[1332],[-5574],[1751],[-4737],[-8225],[7698],[9632],[-2534],[-3848],[4989],[4210],[2378],[6730],[395],[-9624],[5150],[6135],[-8669],[7560],[6134],[-4102],[324],[-8576],[3076],[8614],[2944],[6285],[4563],[5133],[4323],[-6972],[-4311],[1590],[2983],[-9448],[8296],[-5044],[7524],[-5525],[-6877],[-6307],[2547],[-9833],[-489],[-9347],[-8979],[794],[-2545],[8910],[-7986],[-1042],[-6368],[-6098],[7841],[-1841],[7563],[2316],[1406],[-3473],[-6927],[3741],[-2254],[-2632],[-6644],[3504],[-2141],[3194],[1131],[8911],[1389],[-2105],[6437],[8215],[8380],[3544],[-8468],[1149],[1562],[7880],[6291],[-2722],[4894],[3949],[-8882],[5467],[7174],[-7783],[-5291],[4566],[2337],[-7951],[-1889],[-8298],[3616],[364],[8761],[2180],[-3385],[-9921],[284],[1315],[-5040],[3746],[-9172],[6021],[-2648],[-8853],[1794],[7876],[3696],[-2981],[-1449],[-1783],[6354],[-7316],[1796],[-4968],[-7692],[-1718],[7782],[6308],[3012],[7747],[-897],[-5237],[-4799],[7339],[2242],[-2486],[-7661],[-6197],[-6262],[-820],[4799],[-9062],[-5636],[-9455],[-2731],[6587],[1263],[3287],[-5973],[9461],[6309],[3303],[7854],[295],[3427],[3162],[-1477],[1715],[-5971],[651],[3631],[4324],[-1768],[734],[-8462],[7812],[8912],[-7589],[3965],[-9318],[-5891],[-6640],[4920],[912],[-240],[-7638],[-6180],[-7635],[-5157],[-364],[-6065],[6325],[-8966],[8047],[-4600],[7131],[-7907],[4580],[7084],[26],[-2858],[-7274],[-7949],[6722],[-8929],[-8322],[-5187],[-8741],[7175],[-4932],[1391],[-4274],[-3925],[-8621],[4012],[-8563],[2516],[3586],[-1603],[7025],[-6136],[-3319],[5100],[-2142],[-2128],[707],[2198],[-4386],[-142],[-6506],[-1804],[3700],[-7770],[276],[-8824],[-6108],[-5419],[2169],[546],[3022],[-7634],[6602],[3480],[-3583],[87],[8596],[-8034],[-6856],[-4591],[-5426],[-890],[-6083],[4033],[-837],[-1028],[-9193],[-4447],[5041],[7505],[4556],[424],[4663],[7779],[7473],[364],[3800],[-1230],[-909],[-7484],[4158],[-7394],[5587],[2097],[-2608],[-9889],[-6404],[-5620],[1073],[7509],[9016],[-9856],[7189],[-6033],[-8190],[5849],[4093],[-7701],[2971],[1189],[3648],[4924],[9888],[2863],[4702],[-4258],[-663],[672],[1148],[-5662],[-9338],[-6792],[6386],[-7778],[-1943],[2191],[-7748],[-302],[9278],[4707],[8586],[5030],[2176],[8201],[866],[8249],[109],[-9140],[-6647],[7620],[-6464],[-1210],[-3701],[-3910],[-7289],[-9993],[-766],[4940],[3427],[8137],[2094],[4027],[3523],[7252],[9407],[-5205],[-5205],[-3859],[-2864],[297],[-8286],[918],[181],[8281],[1731],[-3302],[4912],[-6209],[5308],[-5525],[-8626],[5810],[9746],[-486],[-5526],[175],[-1833],[-9114],[2669],[1822],[3736],[4062],[-7155],[5698],[6856],[-24],[-9373],[-1831],[-4065],[-432],[-4548],[-649],[7354],[7451],[-5205],[7882],[-5542],[-9813],[-165],[2732],[6182],[2480],[6450],[7634],[6730],[684],[-8935],[-1013],[-1554],[-5676],[8745],[6954],[-2655],[-3538],[8158],[9896],[8174],[-1968],[-6958],[-9349],[6401],[-2804],[-60],[4001],[-6302],[8586],[-3798],[2670],[-239],[-4354],[-6328],[-7967],[9870],[-3425],[-5824],[-1199],[8276],[9162],[-8656],[3829],[424],[8187],[7301],[-1761],[-7114],[5427],[9979],[5398],[-1793],[-8077],[-3990],[-5748],[5147],[7259],[3764],[4207],[3991],[-9057],[8293],[4465],[8373],[-7383],[3463],[5073],[-403],[415],[9254],[-8525],[4777],[3336],[6370],[7041],[-7707],[-1438],[5214],[845],[-9565],[-7323],[-7836],[8299],[1927],[3234],[2695],[-9567],[9586],[3531],[-7097],[-1169],[-3802],[4721],[5929],[2385],[-8193],[-8189],[-2013],[591],[4175],[7587],[4260],[-8564],[9309],[-9935],[4173],[6415],[9442],[7620],[7783],[-8786],[1862],[8442],[-3273],[4404],[2047],[6420],[6799],[-8883],[2460],[-4910],[1596],[1504],[-8952],[9532],[3914],[-4202],[-7489],[-7336],[-4435],[5977],[3472],[-6119],[2516],[4700],[-7384],[7441],[-1978],[3512],[9762],[-7614],[5230],[-6001],[6443],[365],[109],[7783],[-5296],[6300],[-4501],[7365],[1499],[2683],[-5590],[6439],[1582],[4307],[2035],[2185],[-4399],[-608],[-2789],[-3887],[-5374],[-672],[-554],[9653],[-8955],[-6111],[-4926],[3355],[6234],[2428],[9089],[553],[4238],[6322],[-1036],[3612],[682],[9296],[-5465],[-2661],[8059],[-3382],[6299],[7403],[1684],[-268],[1184],[654],[3777],[8662],[-1301],[-1679],[-7714],[-9449],[-6251],[2774],[-1731],[2338],[-1540],[-6925],[7810],[-3684],[-6612],[786],[389],[4350],[-5410],[818],[-1581],[-9574],[-4582],[-8183],[-8666],[9752],[-9612],[-7992],[9613],[-1966],[-1299],[9931],[1004],[-1433],[7965],[270],[2983],[4004],[7871],[-9383],[6978],[3816],[231],[-6103],[-7108],[3524],[2957],[3352],[3409],[-5884],[3265],[-32],[999],[-6125],[1071],[4002],[3945],[6162],[6605],[-6906],[-843],[-4064],[9857],[-8649],[6998],[9231],[4920],[9243],[700],[5606],[7871],[-3496],[-412],[7518],[6224],[6725],[4860],[6243],[7384],[3034],[2374],[6250],[4284],[-2314],[-2140],[2496],[9254],[-7422],[-4200],[5762],[9132],[1192],[-3817],[-9907],[-9446],[1285],[9610],[9715],[-1901],[-1620],[964],[1603],[-2831],[1774],[7373],[1174],[-2318],[-4807],[-1135],[7238],[4287],[-2703],[1276],[8077],[-3139],[8318],[1775],[-4297],[9369],[-125],[222],[-7930],[9328],[-5078],[4457],[5065],[-9728],[-2974],[5878],[-5723],[-8872],[1528],[9061],[-3773],[-6075],[7119],[8936],[9474],[-3806],[-7958],[7353],[-9316],[7860],[-2675],[-3398],[3409],[2765],[1798],[-3563],[-1745],[2667],[1124],[-6129],[2911],[6602],[-5555],[-9774],[8937],[-32],[6572],[9869],[7332],[-7822],[-355],[-5797],[9215],[3812],[-5382],[6874],[-280],[-6620],[-2672],[-7873],[3860],[7615],[-8256],[-3325],[-8185],[6646],[7518],[6543],[-7348],[-3955],[-1684],[-47],[-6521],[2821],[-9372],[-1243],[4499],[1612],[-7643],[1314],[6402],[9484],[-9253],[7673],[7959],[-7351],[-9530],[1219],[8540],[3471],[-5810],[4130],[9781],[6736],[-9778],[-2031],[3509],[-8120],[6378],[-1043],[-3376],[3705],[-1267],[-9263],[689],[-873],[-4478],[-6293],[1289],[-662],[-7638],[-8867],[-9207],[-9438],[-9841],[6051],[9957],[2189],[-9046],[6224],[3031],[-803],[-2924],[6031],[-4977],[8278],[-7604],[2195],[-944],[-6385],[7849],[-4857],[1046],[9467],[-6026],[-2248],[9278],[6798],[-9994],[-3183],[4745],[-1505],[-1406],[-7159],[-6993],[-5043],[7261],[-6864],[6717],[6801],[-3310],[-5567],[-4330],[4559],[-3958],[8876],[-6346],[9489],[2398],[5659],[4685],[-9307],[2228],[5087],[-7129],[8465],[-7737],[4203],[-719],[811],[5068],[6158],[-4770],[-1604],[-216],[2059],[5103],[3355],[-9925],[2109],[2530],[-6915],[-212],[2539],[513],[-5103],[3720],[-3795],[2128],[4836],[9395],[8526],[8192],[-4831],[-5285],[2604],[1141],[5271],[-1384],[8717],[-6936],[-2115],[-1212],[-4621],[-5448],[8267],[-9709],[7784],[2407],[1238],[-722],[4708],[-988],[-6840],[-4154],[-6148],[4273],[4265],[-2030],[3771],[-6600],[-6662],[-3735],[1935],[6839],[-4319],[-3223],[5867],[-5866],[-9240],[2971],[-2372],[-9079],[-1301],[-6171],[-4935],[9453],[3575],[-3966],[3293],[-7172],[2480],[5859],[2698],[-6394],[-8347],[-8710],[-8384],[-9296],[-7196],[-2111],[5168],[-5356],[-2829],[6317],[-5945],[3863],[-963],[-9809],[-7574],[-2656],[5048],[9622],[-838],[7842],[803],[-4836],[-8996],[-8566],[-6816],[-7850],[-5784],[-2088],[-5808],[-367],[5314],[-3507],[-9389],[-5977],[-9052],[5893],[8719],[-8311],[-9936],[3605],[160],[896],[-787],[122],[3386],[942],[7147],[-7139],[2131],[6461],[-5769],[8108],[3542],[7468],[-6578],[8366],[6608],[8495],[-3086],[5902],[8715],[3964],[1980],[-6715],[-7036],[-9767],[-2110],[540],[7966],[-9431],[-2864],[3049],[-3582],[3949],[1339],[4644],[-8581],[1163],[-8321],[-124],[5861],[6982],[-8563],[1549],[-4480],[199],[-1133],[-4734],[4359],[1255],[9495],[1669],[1541],[9956],[-6004],[7904],[-6188],[7039],[-2274],[1711],[-7577],[8540],[-2374],[3662],[8913],[-6046],[2835],[-7880],[-803],[4709],[8936],[1013],[-7027],[1940],[-9848],[-5823],[8150],[-6548],[6813],[2601],[7882],[-2033],[9975],[-3587],[-1832],[-8870],[-6876],[2361],[9423],[5793],[-1183],[220],[-3046],[2209],[-7303],[-6136],[-8779],[2075],[-8230],[-4561],[-7439],[-6920],[8800],[-1908],[3798],[-206],[-992],[-8088],[3174],[8988],[-655],[-2957],[-1636],[-6884],[8162],[4346],[8478],[-8591],[8967],[4058],[-3693],[6524],[-7987],[-8425],[8466],[-3387],[6347],[6656],[5178],[3613],[-2332],[7589],[5428],[-2963],[-6038],[-909],[5788],[-5264],[-98],[-1968],[9678],[8743],[4529],[-6202],[-7424],[-9374],[-2401],[4026],[6799],[-8642],[3437],[337],[-2874],[-3139],[9709],[6662],[-2264],[760],[5364],[7639],[-4800],[8808],[7971],[5718],[5839],[2677],[-3854],[7949],[8106],[2782],[-3544],[8353],[-8126],[3470],[-5425],[-3348],[-8788],[-1367],[6580],[-7577],[-4345],[-343],[-1589],[373],[618],[5421],[-2864],[9304],[-2796],[-8132],[-2804],[-9947],[1307],[1024],[5175],[3547],[8207],[676],[6220],[-9001],[-3409],[2182],[3621],[1454],[1997],[9927],[-4145],[7265],[-2444],[-5321],[8442],[6832],[982],[-4090],[-4217],[-7868],[-813],[-7258],[-86],[9091],[-7208],[9130],[614],[1092],[2685],[-8632],[-8919],[2367],[6038],[5375],[-375],[-7455],[-9450],[-5948],[6521],[-393],[4931],[-2346],[-1389],[2664],[-2532],[-8312],[4863],[8649],[-479],[-5654],[-4503],[4971],[5044],[-1100],[9182],[-7608],[8981],[-857],[1955],[-3455],[9019],[8152],[1854],[1581],[2322],[-4363],[2485],[9756],[8223],[-9613],[-8346],[-2003],[3432],[5221],[-6120],[3233],[-5289],[8830],[4573],[4496],[6433],[-1308],[9910],[5250],[9541],[-2614],[-4995],[3697],[7936],[6204],[-3059],[-8531],[6426],[-5765],[8482],[-1642],[-3],[6740],[1277],[-1171],[8767],[3310],[-8073],[-9579],[1998],[8362],[9505],[5286],[-3909],[-3196],[-1778],[9157],[1421],[-3923],[-7574],[7196],[5715],[-9060],[9047],[-6847],[-3970],[3236],[-4711],[2947],[843],[-9058],[-519],[-3098],[-9185],[7029],[-765],[578],[-7418],[3047],[-3637],[-6469],[-5255],[6558],[5316],[-2516],[7389],[890],[-5659],[-4878],[-3893],[-3398],[9881],[3955],[-536],[6556],[-3627],[982],[3055],[-4219],[2128],[7115],[149],[-9215],[1079],[7813],[7403],[-6442],[8959],[6770],[-1546],[-8483],[-4881],[286],[8029],[586],[-2816],[3772],[3953],[1377],[1702],[6778],[7327],[3144],[3136],[-8634],[-5981],[-4048],[-3547],[-7108],[-1091],[3585],[-2158],[-1529],[-2282],[2250],[-6881],[9598],[-4006],[-4474],[-8972],[2082],[8043],[-2681],[-934],[7034],[-1279],[692],[7553],[8511],[2548],[9354],[6331],[-6277],[9035],[1183],[-617],[5766],[6539],[5739],[636],[8061],[8424],[1056],[-3068],[-1340],[6103],[1979],[-9999],[-5874],[-6585],[609],[-674],[5643],[-9571],[-6072],[4339],[1439],[7184],[4974],[-3423],[4948],[-6030],[-3525],[-3282],[8813],[-9406],[-3309],[9788],[2318],[-6900],[427],[9205],[-3173],[6627],[4462],[-9277],[8891],[77],[7634],[5395],[7231],[-3822],[-914],[5731],[8045],[616],[2637],[1673],[2415],[3264],[-6945],[3542],[-1718],[-6626],[-3260],[-4300],[9760],[-6674],[-9708],[-2126],[-9659],[-4874],[4056],[-1808],[1365],[-916],[-6587],[-5948],[-1299],[-8006],[750],[-2711],[3687],[-8985],[-8365],[9746],[8986],[6876],[-7833],[8836],[3543],[-9796],[8804],[-6913],[-4409],[-7022],[672],[5662],[3334],[-6021],[-3804],[9628],[-9153],[2929],[-2876],[8857],[-9396],[-6746],[8190],[-2439],[9833],[-4557],[-7706],[-3096],[4226],[1927],[-9986],[-104],[6276],[-9943],[4878],[1711],[-6271],[-8299],[9466],[-8257],[4729],[278],[651],[-931],[-6664],[2853],[9177],[2240],[-9152],[-9251],[-7724],[764],[-6612],[867],[955],[8715],[7725],[-2527],[1022],[-3508],[6995],[6942],[7286],[-8469],[-7520],[-1121],[-6229],[5793],[-1425],[-5145],[-992],[-1373],[8984],[-1087],[8466],[6163],[-7088],[-8053],[5334],[-7300],[4620],[-7993],[3205],[-974],[4403],[-9333],[175],[-3527],[9998],[-2944],[970],[5544],[-9950],[-2662],[547],[7357],[8714],[-6885],[4742],[2197],[1802],[7964],[-33],[-7938],[2312],[-3424],[-4215],[2110],[-8888],[1508],[7323],[-7637],[9341],[-84],[-6129],[-8909],[5097],[831],[4295],[858],[9039],[7656],[-8840],[701],[-6275],[1129],[-5953],[-3077],[-9045],[-9298],[-2015],[-3846],[1467],[2036],[6929],[3031],[-7974],[-118],[2338],[7202],[9528],[6155],[-5004],[-8335],[-8087],[4110],[-4021],[1750],[-5238],[-6770],[-4102],[9626],[-8947],[-2115],[2707],[-6170],[7977],[-2938],[9832],[-5467],[-4740],[5934],[-222],[9150],[-4230],[8601],[-6960],[2644],[472],[-7458],[-3839],[-7344],[-6868],[-1976],[9395],[-1563],[2781],[5411],[-9166],[8312],[-1052],[-8428],[-8629],[-3403],[7104],[-9491],[-7282],[5933],[-9737],[8221],[1877],[-828],[6353],[9781],[8291],[2929],[-441],[902],[-890],[8029],[-1921],[-8271],[2012],[7188],[5286],[8315],[545],[-4886],[9099],[-736],[-100],[6642],[7099],[9476],[6807],[8919],[3256],[3884],[-9277],[5498],[6189],[8501],[-549],[7195],[8557],[-8278],[-3337],[-9413],[-3595],[-963],[-4716],[-4495],[-2297],[8044],[-6081],[-509],[-1015],[-9265],[-2122],[7245],[-1502],[-1100],[-1669],[-4106],[4629],[-8622],[-988],[-9795],[2311],[39],[9980],[5175],[-1298],[-3901],[-2916],[9741],[7791],[9598],[-2603],[514],[-5344],[7402],[2168],[-4320],[-8299],[2399],[6156],[-7184],[-541],[1791],[-8300],[5400],[9220],[6836],[7477],[3330],[2751],[-9923],[4773],[-7150],[796],[2777],[-5985],[-3725],[7022],[-3920],[-7640],[2731],[-8521],[-2003],[-8632],[-9626],[-9531],[-5567],[-8429],[3260],[-8017],[-2545],[7767],[1601],[8112],[-1173],[8284],[-1016],[5441],[-1059],[-2275],[1108],[-6116],[3751],[-5637],[-2795],[-8904],[7962],[-6841],[-2040],[-557],[42],[-5200],[9392],[5621],[-7515],[-1056],[6021],[7750],[9182],[5537],[-9641],[4118],[4648],[-8398],[-8303],[1334],[-6327],[468],[4871],[-1680],[4133],[8062],[-9437],[4166],[3623],[-352],[-3398],[5216],[-3697],[-1511],[2142],[-860],[3649],[619],[1668],[6581],[-4632],[-5716],[5068],[2383],[3513],[-9925],[-5750],[9507],[-3241],[-703],[-74],[8001],[-3294],[-3263],[8614],[-9829],[8101],[2904],[-1842],[-3000],[276],[3496],[-5279],[-1968],[4869],[-1098],[-2908],[1454],[-8390],[3049],[1111],[-1049],[-1157],[3927],[1385],[-3450],[-9989],[5118],[-7389],[-3025],[2295],[3808],[3180],[-5767],[-71],[9866],[4903],[4539],[-6803],[-5354],[-9015],[5593],[-3255],[-4219],[-4560],[5896],[7535],[4524],[-1490],[9132],[-2508],[8555],[8683],[-9444],[-7316],[7569],[-7627],[8676],[-7357],[-1114],[-5394],[-5241],[9959],[980],[-1889],[4495],[5516],[5426],[-2850],[-4733],[8317],[5271],[-8932],[-5300],[-3400],[5706],[-3828],[1135],[4037],[-7567],[816],[-1117],[-4655],[9946],[-3525],[4889],[-2503],[4418],[-1672],[-148],[5162],[6303],[-7599],[-7234],[9948],[-9528],[4205],[-1035],[9664],[4264],[-578],[5245],[-3677],[6273],[7881],[5883],[464],[-2514],[5082],[-4549],[-4780],[7999],[5206],[1305],[6214],[3988],[3345],[-9323],[-5823],[2570],[-3023],[4185],[6993],[-6255],[8810],[-8630],[-229],[5059],[408],[-7970],[-9219],[-5922],[4782],[-6490],[-9063],[7386],[-176],[5398],[-6930],[5095],[3621],[-7590],[-2124],[3045],[2481],[8792],[-7169],[-3088],[-4273],[-4156],[698],[9254],[2798],[7844],[-103],[-621],[-6719],[-5571],[-7484],[-7977],[3969],[-1213],[-7980],[5341],[2701],[-5012],[3817],[-5450],[3828],[-8717],[-2503],[-1203],[1939],[9147],[-8583],[-9350],[3307],[1552],[-7742],[2829],[-2815],[7744],[6228],[4617],[9713],[6122],[-978],[6972],[-3879],[-4606],[-210],[-4344],[-681],[-388],[7958],[-7436],[-9156],[4042],[9421],[1277],[5216],[-5431],[2882],[107],[9638],[4507],[1821],[6606],[674],[-5373],[-1994],[5878],[-4583],[-6078],[-7389],[-4044],[1915],[930],[9939],[-4513],[117],[6103],[6332],[7795],[5326],[2951],[4322],[-7485],[863],[-4688],[1237],[-3943],[-96],[9440],[8204],[9431],[-3330],[-7328],[4907],[-3519],[-7367],[5398],[9436],[-1547],[449],[8073],[8197],[-3439],[8093],[-9890],[4902],[3957],[-3890],[1053],[-934],[4248],[7806],[-4798],[-794],[2565],[7927],[-6290],[2681],[5586],[7169],[-7583],[7092],[1908],[-5279],[-1555],[7089],[1402],[6376],[-9339],[181],[-2028],[-2687],[560],[4058],[4589],[3399],[-2118],[-5437],[-958],[5587],[1755],[3193],[4741],[9103],[-5619],[-4331],[-7737],[1646],[9952],[-5374],[-2061],[-8421],[6131],[2187],[-8766],[-5268],[-7494],[-2288],[6568],[-2687],[9427],[-1299],[-8347],[-9776],[-9258],[6050],[-3678],[6443],[7856],[7375],[8458],[-3437],[-5084],[-5472],[-8727],[-730],[-138],[-8149],[-2956],[1483],[-7801],[7233],[-5042],[-4799],[1059],[3702],[8451],[-6525],[6495],[4659],[-4026],[2662],[-9464],[3501],[7181],[3462],[-903],[2937],[-723],[-3387],[-3932],[-5952],[6580],[5099],[4199],[-5873],[6720],[-3965],[-529],[1634],[-7555],[-2937],[5288],[5384],[-7856],[-1618],[-3724],[9297],[9229],[6164],[8150],[6307],[-1281],[5138],[-9251],[-5213],[-280],[-517],[-722],[-5039],[9253],[-1392],[4162],[-2630],[3023],[8082],[-1427],[8023],[4330],[-4902],[3775],[-7499],[158],[-2554],[5049],[-4625],[1039],[8300],[8598],[-480],[6512],[-7079],[4371],[6365],[-7648],[-7884],[1651],[-3877],[-570],[8886],[-1664],[-8855],[2009],[-8539],[2868],[-6439],[-6906],[-3029],[-7755],[-2636],[5555],[-7315],[-1642],[-1655],[-4150],[3124],[2830],[-6038],[-7510],[-2557],[-4195],[-8522],[-733],[5817],[2685],[1936],[-6775],[-2267],[103],[-9777],[6318],[687],[-4995],[4517],[9744],[-9939],[8290],[-3365],[-9991],[4844],[-8852],[7852],[7330],[-6399],[-7983],[-6225],[-8245],[-1791],[-8358],[4986],[-5051],[6582],[1159],[-3316],[-7982],[-6774],[-4277],[2541],[9109],[9846],[1101],[250],[4834],[-452],[1191],[-1509],[9418],[1609],[-8976],[-5951],[4521],[-2395],[2561],[6778],[218],[8198],[-947],[7188],[2400],[-7147],[182],[9844],[4865],[-7678],[7600],[-7865],[-3665],[-1245],[-2310],[6220],[-3377],[-2702],[-6430],[-2303],[-280],[-1964],[6239],[8952],[-8149],[4502],[-5438],[7644],[2857],[-3996],[1317],[-2290],[-8849],[9745],[4149],[-2333],[3606],[439],[-2194],[-4075],[8539],[9346],[-6820],[-5095],[-137],[7589],[4540],[8785],[-3556],[937],[7435],[-8046],[8296],[8572],[5361],[-8524],[6515],[2309],[-4731],[-3971],[2232],[6931],[-7612],[4064],[-5635],[-3125],[-1449],[761],[2515],[-6100],[7623],[-7612],[-9599],[645],[1638],[-3097],[9228],[-9894],[-4572],[3852],[-3406],[2395],[-5693],[9573],[-4898],[-5676],[6558],[7066],[3651],[4394],[9912],[-3908],[-5682],[7977],[-9828],[-4213],[4179],[-3484],[843],[329],[7771],[-826],[6239],[-4055],[3682],[-4614],[1192],[-7136],[1521],[6358],[-3135],[-3417],[5506],[1890],[-7843],[933],[6104],[-4747],[-569],[9713],[4246],[-9371],[-9931],[-5140],[-9535],[-7649],[-6709],[1041],[8114],[-5193],[-7676],[1468],[7290],[8110],[-6248],[2375],[3528],[9024],[-5261],[-3389],[418],[-2720],[2421],[-2284],[8896],[-9861],[3576],[-2512],[3439],[4340],[-482],[-9156],[1890],[9627],[6967],[4404],[4647],[-8079],[-1327],[7901],[-5150],[3339],[-1954],[-6445],[-5193],[8071],[-7771],[9135],[5185],[2964],[-8568],[-2456],[3032],[3818],[-3465],[-3228],[1885],[-7466],[-691],[-6645],[-2970],[1556],[4615],[-4438],[7041],[4380],[5761],[3630],[-7875],[9878],[-6591],[2242],[4558],[-5193],[-5276],[-4925],[6084],[-3419],[6415],[3008],[9338],[-5717],[635],[-8359],[5487],[4709],[-9022],[-9560],[4278],[8210],[8257],[-3982],[-2586],[-8532],[6604],[-675],[-5608],[-7171],[-1335],[-7964],[6626],[4027],[6671],[1516],[9464],[8138],[-6050],[-8815],[-2827],[249],[-8526],[-7632],[-7104],[3570],[-8165],[4702],[-8521],[-6552],[3129],[-9544],[-1192],[-5046],[-4418],[-1699],[4614],[3339],[4439],[-9068],[-4347],[-2659],[3931],[9645],[4377],[4523],[-7221],[-4045],[9242],[-1520],[-3908],[-320],[-4699],[-200],[-4758],[-1720],[1491],[-2646],[-3718],[-1150],[-308],[4007],[-1869],[-8093],[-8671],[-2321],[3373],[-732],[-7927],[4046],[2403],[-4687],[7324],[3541],[-1402],[-5826],[-3849],[5848],[-110],[9435],[8671],[-8645],[5417],[1038],[-7023],[-6004],[7745],[9243],[-1000],[4311],[-1740],[3290],[-2292],[-9663],[7475],[-5430],[2836],[4220],[-4912],[-6527],[-4131],[-3364],[2813],[-1106],[-9958],[9553],[1535],[9386],[2893],[8167],[9281],[-6387],[-4046],[-349],[-9636],[6359],[8377],[2154],[7820],[127],[892],[-8096],[-2968],[9535],[-5384],[-2054],[-9756],[-678],[-5803],[9647],[-6483],[2224],[1003],[5390],[5114],[-657],[5555],[-8325],[1983],[-9611],[-9653],[4325],[2940],[2860],[-8140],[-6212],[-7113],[-1009],[-611],[5833],[3092],[8367],[9158],[-5964],[-4164],[-4505],[7049],[-2290],[-8724],[-1162],[4240],[4237],[7036],[-3840],[6180],[-2084],[4746],[-3955],[-7956],[-9174],[6762],[5785],[2500],[-6417],[3259],[3200],[2636],[-4952],[-6085],[-28],[-3650],[5519],[4776],[8724],[2921],[-2491],[2744],[-9499],[-2441],[-2528],[3624],[-4322],[5206],[4774],[-8924],[-6778],[-1084],[4099],[8418],[-9091],[-3058],[-1468],[-6744],[4454],[-5974],[-7662],[-6573],[-1867],[3212],[-928],[8116],[4496],[-7297],[4459],[3001],[-3781],[-6797],[-1208],[1581],[2537],[5947],[-2188],[6582],[-6699],[-4249],[9537],[-4958],[1293],[5659],[-1136],[-4330],[5992],[2097],[-3455],[2929],[6128],[4765],[4076],[-7607],[-1936],[-6476],[-7080],[-5262],[8915],[9788],[-7136],[9867],[9840],[8906],[-1556],[-8121],[-4199],[5344],[-9429],[-8936],[1961],[1933],[2925],[8340],[-8392],[-8574],[1512],[6255],[-5735],[-459],[1091],[8277],[-2344],[2180],[-9603],[3165],[-3265],[5835],[-7548],[-4893],[-8987],[4442],[-2947],[8706],[7109],[4033],[9521],[-7661],[271],[-7556],[9541],[-9254],[1822],[3678],[3421],[-6974],[8088],[-2627],[7927],[-896],[1873],[-1609],[1394],[1938],[7610],[2826],[-8554],[3339],[7394],[-6902],[443],[-2863],[5754],[-1959],[1624],[-5420],[3192],[6964],[-1996],[8907],[757],[-7259],[5331],[8617],[8175],[3464],[2891],[-6806],[-9752],[-2359],[-9889],[7562],[-2214],[6691],[-1483],[-1109],[5964],[-8621],[3964],[-9757],[2806],[8856],[7757],[-8427],[-4237],[2362],[-6822],[-3027],[8706],[1189],[4726],[4177],[-6625],[2739],[-7260],[-4265],[9819],[-868],[-6411],[-315],[7481],[-4314],[345],[7103],[1093],[9991],[-7122],[-328],[-6751],[-9482],[-9897],[-2993],[4208],[2340],[-4891],[-4936],[7068],[2462],[-429],[995],[-9468],[4543],[6311],[641],[4149],[-164],[6207],[4252],[-3179],[5229],[8788],[1523],[3937],[-2165],[-3555],[-874],[-1009],[-1027],[443],[-8857],[-1503],[-9849],[4899],[-1547],[-7081],[-6590],[-8955],[-8386],[4004],[-5277],[6222],[-9625],[-3517],[-21],[-7465],[420],[842],[-9035],[1680],[-4106],[2139],[-8937],[-2295],[-3567],[1333],[-1461],[9157],[-8178],[681],[4127],[935],[-5538],[4998],[7769],[-5121],[8411],[2971],[-9562],[5961],[1175],[4474],[1556],[-8898],[8446],[-7935],[-3569],[-9766],[-9689],[2082],[-2989],[-3341],[-1799],[-3953],[-9732],[-8023],[536],[2131],[-7273],[-3655],[9989],[46],[2836],[357],[-9572],[-4079],[3721],[1849],[8066],[1283],[3267],[5186],[-6266],[-6375],[-9082],[-823],[-929],[-5610],[-8347],[6156],[69],[9791],[-8159],[2642],[8055],[3617],[6161],[5515],[-1829],[-523],[3645],[3098],[5318],[2347],[-2397],[754],[-5727],[8863],[4762],[-3709],[4043],[-1541],[6353],[4810],[-7216],[-7627],[-8589],[-9465],[-8871],[-2653],[4869],[957],[8472],[-985],[1440],[-593],[-733],[363],[-6772],[3323],[-7071],[-4178],[6030],[3983],[7767],[-5657],[-4503],[9877],[5131],[3323],[6442],[4965],[-5709],[-6748],[3240],[-6931],[7446],[2553],[982],[-9437],[-315],[4835],[9810],[4830],[4373],[-5127],[1094],[9707],[-1671],[-218],[8260],[-5126],[-9629],[5913],[-8545],[-4282],[7186],[-3905],[6008],[7993],[4566],[4921],[-9814],[5896],[-9553],[-1432],[-9668],[6899],[7666],[5955],[-585],[2938],[-745],[-5953],[-857],[-1565],[9728],[-9179],[6583],[139],[5459],[-3439],[4279],[5596],[-5389],[-2760],[8312],[8986],[7922],[-8671],[6718],[6114],[8450],[-5590],[-209],[5553],[5917],[2633],[105],[8057],[-7135],[-7912],[9297],[6251],[-8860],[3945],[-6410],[-8691],[-8823],[2493],[4563],[-2751],[555],[-2677],[75],[-4454],[-7621],[5149],[-6492],[9619],[-4362],[-5762],[-2460],[9072],[6500],[1426],[-9011],[-3755],[5804],[8139],[-358],[-4650],[-309],[-1667],[5927],[3707],[2585],[736],[6130],[7159],[667],[-8221],[3163],[4676],[-4021],[9360],[406],[-1490],[8071],[-363],[7894],[8584],[6752],[-4616],[7000],[-322],[4108],[-5705],[6648],[-3471],[8394],[-956],[3391],[7700],[-6620],[2787],[-6524],[-2901],[4651],[-8077],[2117],[-8702],[-6129],[-7520],[3737],[-9754],[-9000],[-7461],[5089],[8076],[8492],[-2156],[-2253],[2172],[4271],[4430],[9448],[-2734],[9947],[8294],[412],[-691],[-8205],[504],[-5725],[6348],[-7594],[-4491],[174],[-1464],[8291],[-7164],[7727],[-4007],[3512],[-5345],[6314],[-6335],[3410],[-2710],[4768],[-7199],[-5794],[-1570],[6849],[-7091],[-5617],[9163],[-4312],[3978],[9411],[-1605],[-7783],[-8490],[-7629],[-5929],[-8855],[2580],[-8012],[9362],[-1990],[388],[6870],[-8161],[5401],[-8977],[-3503],[-3934],[-6350],[-6244],[8972],[8525],[8056],[-4227],[6050],[-7011],[8930],[-1397],[4436],[-9318],[-8756],[9667],[2661],[5392],[-1568],[8048],[8041],[-7420],[5588],[-8693],[5778],[7872],[8552],[4747],[3035],[9438],[3979],[-6031],[-8882],[4203],[2159],[-4471],[1189],[8272],[-8908],[-6618],[8615],[1783],[-6086],[2109],[-4672],[8629],[8477],[5982],[-288],[-4641],[722],[4329],[-5457],[-8290],[-9426],[-9874],[8139],[-7517],[6571],[-8187],[-7243],[-585],[5507],[-6577],[-199],[-6991],[-566],[-6015],[-4356],[5999],[-6131],[-62],[-3030],[1623],[8850],[6615],[8328],[-8813],[6678],[-5733],[-5918],[4723],[8960],[-7570],[-6777],[443],[-7184],[2165],[-3652],[7341],[-4426],[6186],[7608],[-8780],[-6696],[3663],[6169],[-4857],[4666],[1859],[-5413],[-9831],[1339],[-846],[-4798],[-6892],[8829],[3768],[9546],[-7895],[-1810],[2646],[-4288],[-1782],[2530],[-3843],[-8868],[-9091],[7371],[-5722],[85],[3814],[-982],[1646],[7575],[3329],[-2598],[-8078],[-7868],[-5573],[-3979],[-5565],[4817],[-5083],[-6185],[9509],[-4240],[7467],[8463],[-884],[-3866],[8263],[2215],[3415],[-6149],[-6674],[-4292],[5735],[-2394],[5889],[8463],[-8330],[3619],[-7259],[5821],[4740],[8284],[4760],[-6759],[-6940],[9396],[190],[1974],[9482],[423],[1507],[-2369],[-4943],[3086],[8765],[-8318],[2985],[-2601],[-4876],[7783],[9498],[-3968],[-1085],[8],[4006],[-5016],[-8489],[-7285],[4231],[2498],[-583],[6784],[-9201],[1387],[1910],[-4475],[6137],[-880],[-7238],[-148],[-8536],[1447],[6524],[9068],[3148],[6155],[-8701],[9032],[4449],[-1883],[-5013],[2124],[-4513],[-5198],[8423],[-9909],[9574],[-5786],[-14],[-4929],[755],[4748],[4180],[-9785],[-9738],[-6942],[159],[-3590],[2479],[-9347],[-1645],[2356],[9101],[-6246],[-9924],[9714],[-3086],[3153],[-1210],[6575],[-4743],[1569],[-2741],[-7307],[-3310],[8952],[-7688],[-7443],[4471],[-7221],[-5089],[-9137],[-8863],[6518],[-1710],[-2413],[8727],[-2409],[-2442],[-1913],[-7255],[7161],[6640],[6303],[6133],[-5034],[-5006],[-5868],[3545],[871],[4588],[1690],[-2153],[1136],[759],[-3496],[7335],[-5259],[3657],[-9278],[5689],[-7673],[-7553],[9805],[309],[-8672],[-1219],[7015],[5238],[2145],[2637],[-7260],[1622],[32],[8044],[2167],[4001],[1598],[-2410],[9123],[-6476],[1247],[-3767],[-8910],[9348],[1858],[-931],[-7109],[2630],[-5720],[942],[4700],[552],[-7795],[-3075],[-3706],[8660],[1379],[-1529],[4195],[63],[-1080],[-5934],[-4473],[-7249],[4003],[5649],[5141],[-2879],[4141],[3628],[-1312],[-2274],[-5648],[-2242],[-102],[88],[-8057],[7608],[-2014],[4154],[7010],[2874],[5622],[5093],[8080],[-836],[2141],[-1031],[-6373],[-9399],[5054],[2389],[-3500],[-9532],[-8477],[-4312],[7388],[-7996],[9852],[-1544],[-4343],[851],[8315],[-259],[3359],[-7397],[6718],[-6716],[9340],[-149],[-2253],[-5397],[-4625],[5375],[-1076],[-7684],[-1531],[-9311],[-1232],[3580],[-865],[-1287],[799],[5442],[2161],[-3091],[435],[-3793],[-7370],[6717],[-9569],[1847],[1898],[1086],[-1837],[-1777],[913],[5381],[1551],[-5764],[7965],[4935],[-2566],[-6695],[3857],[168],[6265],[8383],[8673],[-1910],[-7345],[7582],[-9661],[7984],[-8875],[6875],[-9337],[6354],[4886],[-7088],[-2396],[-7625],[-1583],[3260],[7107],[745],[3700],[9339],[860],[2724],[-5803],[-4124],[3974],[-2922],[-3175],[5891],[7876],[4004],[391],[5281],[6267],[1676],[2959],[-4087],[1171],[-5021],[8923],[5054],[4597],[-3039],[5955],[9855],[-8303],[-3290],[9056],[1002],[6814],[-5685],[-8162],[1357],[831],[3924],[3524],[7278],[-7846],[-6135],[7671],[-3358],[4846],[9513],[-4834],[-4020],[-632],[9085],[-1350],[5216],[9957],[-8938],[-8067],[3033],[1808],[-97],[-2855],[-3816],[-5336],[-2509],[-1654],[1973],[-8754],[118],[-2726],[9086],[-9405],[-2714],[-9092],[958],[4848],[6],[4777],[9177],[-3309],[-5744],[-7228],[-7829],[-4843],[442],[640],[7887],[9735],[5375],[-2195],[-2356],[-6581],[2292],[-1078],[3739],[-3763],[647],[9976],[-2099],[3068],[6726],[-3744],[2216],[-9640],[69],[-9622],[3341],[-5161],[-177],[-4141],[9872],[-6887],[-1557],[9434],[-531],[-7659],[-1356],[8020],[5387],[8573],[-1219],[-7929],[-7930],[-3932],[9759],[1540],[-1305],[-2536],[4660],[3545],[6469],[-5407],[-27],[-4722],[6552],[-8990],[8390],[-1089],[-5757],[-7085],[6369],[1759],[-2684],[-8820],[-2698],[3687],[-2312],[-9149],[5862],[-3230],[7967],[9797],[8550],[7756],[-1118],[-8709],[4243],[4414],[-3573],[-9762],[8682],[-738],[3611],[-4591],[-2694],[4706],[-9688],[-292],[-2396],[-7003],[6240],[-3608],[-2204],[9128],[7193],[-161],[-440],[-8592],[2567],[-3601],[7914],[2088],[3192],[1319],[-7955],[1038],[4098],[4609],[2865],[-7366],[-6574],[-9417],[703],[6850],[258],[-3718],[7018],[-1000],[6165],[-5923],[3062],[2413],[-2915],[4677],[7197],[9912],[-8206],[3862],[7561],[-4986],[-6353],[-405],[8889],[1996],[-8154],[-2103],[-5816],[8292],[9598],[-513],[-9447],[6665],[7445],[6344],[5590],[-6385],[-9890],[-4735],[4328],[5567],[-6693],[5639],[-2007],[7158],[-6035],[-3710],[-768],[6165],[8616],[-2948],[-2518],[-3363],[-3757],[3903],[-3680],[4346],[-8041],[2506],[3165],[-3237],[-8891],[-8509],[6719],[8652],[-7702],[-9995],[499],[-529],[2213],[-7283],[-4957],[4998],[-2429],[-5782],[-6593],[-1421],[-7114],[-2971],[-750],[-3937],[-9439],[-4744],[4046],[6134],[-9306],[7945],[4264],[5777],[955],[-7485],[-8507],[1990],[185],[-6248],[-7195],[4752],[-4660],[277],[6844],[3263],[9788],[5341],[-1184],[563],[5209],[5835],[-5864],[-5131],[-7689],[103],[4445],[8338],[2190],[7684],[-8754],[9639],[7032],[-5629],[3194],[-6421],[-4871],[-6610],[6519],[510],[-8787],[2549],[677],[3823],[9397],[-7866],[-7640],[170],[6971],[-1707],[6821],[-8954],[-324],[877],[6119],[4004],[-3872],[3291],[-358],[8952],[2555],[2237],[3096],[-8032],[5053],[892],[3078],[-637],[-9350],[-3193],[-9186],[7786],[1672],[-5791],[-1128],[-2014],[5088],[1034],[-87],[-3459],[-4928],[1464],[-2834],[2272],[-6158],[-551],[-346],[-944],[865],[4170],[9090],[-9049],[1500],[7137],[-9442],[-6254],[-6643],[9261],[2012],[9151],[1477],[-4614],[9182],[-2680],[8095],[-8211],[3715],[5774],[-2709],[-2622],[-5606],[1745],[-2277],[3363],[-2859],[-7809],[4652],[-2863],[-2573],[-9197],[-8429],[-7287],[-3155],[3654],[3876],[688],[-9423],[8708],[7644],[2767],[-948],[-7824],[4667],[-4430],[-9109],[3450],[552],[8629],[-4856],[-2976],[5444],[-9593],[4002],[-7355],[2922],[-3049],[-9336],[-9558],[-8362],[723],[2228],[6183],[592],[-4273],[6539],[6836],[2197],[598],[-5774],[1465],[-5521],[6891],[2044],[172],[-2989],[-5292],[-1224],[9941],[-4446],[7669],[5206],[-9104],[6331],[-5545],[-7978],[-9722],[-2468],[4808],[-4663],[5518],[-8339],[2452],[-2151],[-7444],[-3683],[-1486],[8696],[3510],[9449],[3995],[5636],[-9873],[751],[-8387],[-4638],[1265],[1559],[6907],[8028],[-5],[-9924],[-9807],[-4335],[9268],[5923],[8758],[1756],[-4516],[7439],[-4268],[6205],[5866],[6447],[562],[-2323],[-6410],[1909],[-7249],[-4282],[5206],[-1882],[-6231],[-2972],[2763],[-4977],[-2672],[9007],[265],[9942],[-3627],[-3729],[3875],[5518],[-9643],[4399],[8231],[-4196],[-9606],[8766],[8954],[1073],[3283],[-6244],[-8078],[-6146],[5925],[-4931],[-179],[4876],[-1708],[8917],[4363],[7262],[-7879],[-5866],[-55],[-8706],[-2269],[-4898],[-6198],[-4537],[-5333],[-919],[81],[-8352],[-6022],[2958],[5374],[-441],[1189],[4871],[-572],[-7755],[-2799],[-4577],[7761],[9724],[-650],[8980],[-4879],[768],[3592],[8346],[-5768],[-1306],[289],[-2572],[7242],[55],[1645],[343],[-893],[-976],[4495],[-7230],[-6841],[-2855],[-8090],[-6492],[-6454],[8892],[-724],[-2688],[616],[-4445],[1503],[-6032],[2250],[-3832],[-2495],[-6322],[-9566],[1349],[-8697],[-1322],[1253],[9454],[-3295],[-4107],[8126],[8592],[-2862],[8895],[2958],[-283],[-2880],[-650],[-5714],[-1256],[-2771],[-2009],[-3977],[-2713],[474],[717],[-8353],[-313],[-3765],[7030],[-6723],[7396],[-1671],[-3912],[6845],[-985],[-5530],[7804],[3514],[-8791],[4167],[-6798],[-4034],[-1286],[8978],[1492],[3813],[9062],[-4958],[-174],[-4742],[1490],[-2987],[7623],[1994],[214],[372],[-7869],[8777],[7732],[-3991],[7212],[-9252],[-2418],[6347],[7996],[9679],[-7677],[-4373],[-5754],[3573],[-5656],[5141],[7908],[-9588],[-6903],[-944],[-317],[5779],[588],[-1748],[3782],[2411],[6384],[236],[660],[-9601],[2442],[3448],[501],[964],[9625],[-5176],[-7799],[6951],[-9878],[-3490],[6313],[4503],[-9303],[-3453],[8176],[9334],[9057],[2497],[6332],[-2193],[7088],[5755],[-5200],[-7198],[703],[-2312],[-5131],[-4834],[7514],[-3999],[8901],[2352],[-2730],[9657],[6914],[7056],[3429],[1045],[9766],[7656],[7674],[-8901],[5724],[3884],[9086],[8639],[-1045],[8433],[-252],[-4557],[-8045],[6234],[-7735],[1210],[5715],[-1239],[4590],[-9635],[109],[1565],[-4392],[5322],[766],[-3566],[5658],[-6884],[-9342],[-5661],[7737],[6702],[779],[-8729],[-7351],[-8464],[663],[-8960],[9800],[-1215],[8623],[-8280],[-6698],[6696],[3668],[-8309],[8288],[-3293],[6617],[-6612],[7742],[-396],[8686],[8104],[-4494],[-5666],[-365],[3825],[9929],[-9729],[5913],[8684],[5023],[8729],[-8364],[5426],[-131],[-7003],[-8890],[1965],[-7134],[-4259],[4532],[7755],[-3309],[5893],[-1695],[9761],[-4185],[-3029],[8360],[-4691],[6233],[2976],[7224],[-1524],[7626],[-259],[-4577],[8697],[-2152],[-2707],[8979],[6428],[7527],[6275],[-579],[6856],[-5282],[2872],[6084],[-4739],[7251],[-9109],[5448],[-3135],[3288],[2852],[8258],[-5009],[-9990],[2279],[-6063],[4881],[-3113],[-6837],[-8283],[-1300],[-3728],[-3525],[-1535],[-1976],[-2088],[9427],[955],[9083],[-7381],[-5108],[-8091],[-4141],[-8610],[1266],[9227],[-9628],[8797],[6241],[-5668],[5561],[-1883],[-7147],[-18],[-6466],[-8390],[5466],[5711],[2148],[-9026],[-5238],[-3609],[1117],[6070],[2059],[-933],[-2380],[-4825],[-7034],[-9819],[5406],[8835],[-1666],[6448],[6009],[-413],[872],[3310],[-1631],[8767],[-2465],[-789],[-9220],[-6503],[-8892],[-2587],[-4953],[6495],[3073],[8402],[-259],[-725],[3461],[-6334],[-6422],[-885],[8701],[9298],[-163],[-7961],[2004],[-5910],[8092],[-6489],[-4147],[-7378],[4713],[1558],[-6335],[-5600],[6081],[586],[437],[9753],[7646],[-9233],[9738],[1206],[-7550],[-8669],[-5122],[-3967],[2168],[3304],[-5422],[-7439],[1331],[7989],[-8410],[9281],[8707],[3706],[-4337],[7827],[-9904],[5685],[-3888],[4138],[2715],[6170],[3275],[-3272],[-4246],[-4736],[3112],[-7617],[1136],[-6565],[-5706],[-730],[-9971],[-8155],[-8882],[-4768],[7044],[-8247],[3654],[3073],[8066],[-4580],[-8282],[-5093],[5201],[9341],[-1151],[-3798],[8595],[-2553],[2065],[8168],[-4676],[5599],[5936],[-783],[-3357],[1184],[5952],[3407],[759],[-2084],[-405],[-386],[-1917],[-1843],[2281],[8878],[-7605],[617],[-3454],[5231],[-9444],[-209],[-8995],[2838],[7433],[-9916],[9103],[-9702],[3195],[-642],[9353],[7963],[2725],[-982],[-615],[-2397],[-7527],[-2414],[152],[1967],[4703],[-2251],[-679],[-6931],[-2112],[-8078],[-9749],[-2197],[6921],[6732],[7818],[4003],[5976],[6339],[9665],[4385],[4317],[2874],[3267],[4620],[5148],[7044],[-5709],[-7206],[-4697],[-3854],[1289],[-2564],[-922],[3214],[-5940],[-2481],[-7922],[4692],[-9340],[-6742],[-872],[-2560],[6807],[1163],[6600],[-2190],[-510],[345],[9777],[-5520],[-9711],[6959],[-4094],[6603],[5921],[1135],[-6782],[5784],[-1388],[9675],[6671],[4878],[2137],[-6997],[8463],[-1923],[1907],[6060],[-1354],[-1469],[6765],[-6302],[-9894],[2170],[-2199],[1497],[4253],[-6639],[-1383],[8],[6988],[-3915],[7148],[20],[-2161],[9503],[9608],[-7816],[8972],[-7733],[1133],[775],[7084],[6404],[-7101],[1301],[-9823],[-3074],[6683],[7652],[3497],[-307],[9132],[3067],[7052],[-8120],[8722],[4708],[-4279],[4000],[-4559],[-1959],[6607],[1831],[-8970],[1714],[2539],[-9732],[-1427],[-1670],[-4902],[7217],[8813],[-493],[7051],[4678],[-9279],[-2535],[6404],[5582],[-7405],[-8608],[9712],[-5969],[8594],[-2853],[820],[8299],[4257],[-5256],[-5665],[-1087],[2312],[901],[-8162],[1812],[1646],[-320],[-9706],[-6743],[3974],[-9789],[7276],[-26],[319],[4045],[8092],[-455],[5956],[-8164],[-818],[6602],[4409],[-6679],[-724],[-1441],[969],[-6280],[6849],[6212],[9499],[-6565],[8240],[8161],[6857],[-8643],[8947],[952],[-7467],[-9193],[218],[9630],[-2606],[2335],[-9523],[-2647],[28],[660],[4438],[3663],[8163],[-593],[7540],[-4823],[8028],[-2615],[2389],[6911],[2411],[8967],[9643],[6775],[-2907],[9302],[-1899],[-7435],[-5792],[-5106],[-8068],[-2843],[-2610],[-1755],[9660],[-3761],[8643],[5247],[-7388],[-1236],[-8742],[-6140],[3205],[-5134],[7139],[5436],[5154],[-2125],[-2822],[-9709],[-5232],[5628],[-9396],[2963],[6946],[-4540],[1369],[9470],[-6239],[5537],[1953],[6484],[2405],[9930],[-6584],[210],[2561],[622],[-9521],[-3911],[-3676],[6996],[-9453],[9650],[-4115],[-2872],[7800],[9433],[1905],[-839],[-6459],[7665],[-3419],[8626],[6125],[7053],[-7913],[-4536],[779],[5890],[-7635],[-2689],[-7049],[-6310],[-4894],[-6615],[-5368],[-9261],[-5638],[-6736],[8626],[6210],[9904],[4819],[-5788],[-5605],[5322],[4107],[4739],[1538],[398],[-8220],[-1212],[4202],[-6584],[1230],[-3077],[9797],[6203],[-6849],[6132],[1589],[-4504],[9175],[9800],[-4024],[-4504],[-9504],[-9694],[-8363],[-6921],[-2692],[-4726],[560],[-7287],[-3327],[5657],[-8358],[-4138],[539],[-1817],[-3517],[2449],[8576],[-1278],[-150],[2217],[-747],[-6470],[1276],[-4573],[-8298],[9632],[-5371],[-9843],[-2181],[4466],[9913],[5867],[-7818],[5688],[5287],[-2769],[1628],[9991],[554],[9450],[-1351],[4150],[-4214],[6401],[-4693],[4952],[5503],[-6833],[1749],[9415],[-9649],[3045],[-7827],[-763],[-223],[8089],[5503],[-2294],[2969],[-1133],[-1698],[-6381],[-6146],[-599],[-5762],[6671],[-394],[-6859],[8237],[8133],[6239],[-7640],[942],[-2964],[-8503],[6761],[-8335],[-5253],[-4761],[7517],[1934],[9898],[-6687],[3121],[-1411],[7948],[-5365],[4585],[-3940],[8591],[6380],[4043],[942],[-9820],[-1827],[7750],[6377],[4638],[-745],[8001],[9212],[3274],[2769],[-4149],[-5586],[1487],[7152],[-5119],[-9508],[-5837],[2126],[9308],[8824],[-4483],[4253],[3206],[4365],[8238],[-6602],[2141],[-6024],[7938],[-3145],[-4321],[-2402],[2307],[5102],[-5840],[3558],[-8256],[-4252],[-5978],[-7376],[-7657],[-4560],[7007],[5066],[6222],[6520],[-151],[3729],[1250],[4383],[2122],[-5103],[5590],[6652],[3724],[1875],[9590],[9093],[8747],[431],[1071],[-4464],[5598],[2341],[-8111],[6622],[-9876],[-1780],[4877],[9798],[1675],[-5172],[8711],[-5007],[-6600],[3163],[-6119],[4737],[-2433],[-2106],[4495],[2320],[-8828],[5066],[-7604],[-401],[-3339],[674],[6747],[-1874],[-2549],[-5643],[7557],[-5718],[4019],[1342],[7795],[-5598],[-4672],[348],[5498],[-1834],[-646],[-4835],[788],[-6509],[-9895],[-1436],[-7773],[-2466],[-6834],[-2877],[-1358],[-1968],[-3590],[6546],[-6316],[3946],[-3249],[6521],[8526],[5525],[5037],[-3752],[-7647],[2459],[-4064],[4590],[1080],[-4698],[1008],[-6949],[9386],[7194],[6983],[7002],[-9226],[2617],[-8872],[873],[-8637],[205],[-824],[-1012],[-6825],[-7239],[-795],[-1751],[9773],[-2386],[-4674],[8971],[-2978],[3723],[6213],[-4493],[-7913],[-1181],[6357],[5529],[13],[-9211],[4215],[1989],[5830],[4317],[5000],[4194],[1056],[3934],[-9502],[-6597],[-6571],[8097],[-8219],[-706],[-3791],[1646],[-1246],[5123],[7949],[-3827],[-7160],[5195],[1484],[-1749],[-9714],[-9708],[-160],[1361],[5340],[3838],[6222],[-6609],[-8876],[-7826],[-8040],[9858],[7099],[-9600],[7909],[-7622],[-168],[1476],[-5625],[5072],[6343],[-4622],[9450],[-7884],[7348],[4818],[-4544],[3566],[-1628],[-7780],[4643],[3338],[-4924],[-4219],[-604],[-5032],[8187],[-5439],[9853],[1922],[-5806],[7460],[-752],[-2146],[8334],[6276],[8995],[-3817],[7127],[5331],[-401],[-1173],[-552],[8304],[6063],[8930],[-7080],[7393],[8817],[2055],[5787],[9182],[-740],[4825],[2157],[-694],[2403],[6214],[3659],[3778],[-9150],[-8477],[6708],[-4113],[2793],[-1824],[-6948],[9208],[1267],[-1998],[-2928],[-8309],[8098],[-8514],[2534],[-2562],[-2163],[3490],[-6589],[8737],[304],[-3798],[-7296],[4568],[-3707],[3609],[-4483],[4556],[-2065],[2098],[-7072],[-7602],[10],[-3036],[7711],[8373],[7470],[-3140],[870],[-5136],[-2202],[6026],[9883],[2448],[-7554],[-8368],[4447],[-8950],[-9354],[6192],[849],[-9463],[-7176],[-6385],[-3523],[-9328],[4985],[-4286],[3527],[-5309],[-3214],[943],[-8877],[-1778],[2401],[7494],[-1147],[-4694],[-7238],[2737],[-3717],[-4722],[-6820],[1696],[-9994],[9542],[3890],[-9710],[-1697],[3017],[-785],[5794],[-1715],[7138],[-4988],[-5252],[-5461],[1160],[-2939],[2774],[688],[8901],[1613],[-988],[-9477],[7688],[9674],[4399],[9669],[6172],[2052],[7469],[2249],[5021],[7079],[163],[-7429],[53],[9621],[7680],[-5032],[8482],[-9718],[2042],[1738],[-2866],[-6506],[-3545],[4895],[1393],[4370],[-9862],[1881],[-331],[6261],[1061],[6169],[-9569],[5829],[-1275],[7659],[4805],[-3535],[-1720],[-4198],[-2266],[-8508],[-5149],[1160],[-6191],[-5071],[-5119],[156],[9974],[5356],[-4564],[3607],[-8014],[-4179],[5729],[2621],[-6131],[6356],[-6726],[-5120],[2714],[4881],[-2014],[4606],[1530],[6474],[8791],[-1251],[-9460],[-7199],[-8903],[8821],[8501],[1463],[734],[1734],[2190],[-404],[-4896],[7878],[4892],[9863],[-6956],[-4817],[-569],[-980],[9734],[9933],[4870],[-318],[-9310],[-1034],[-5563],[595],[470],[-6628],[-4533],[-6951],[-9302],[-6132],[4956],[364],[9760],[-2115],[-1779],[-5891],[152],[-2994],[5002],[-653],[3953],[3045],[-849],[5135],[-3883],[-5708],[-7761],[1478],[-2094],[3961],[-3296],[-5327],[6457],[-3998],[-8746],[1566],[-1988],[-4198],[-6899],[-4810],[7959],[-6070],[-6004],[-1682],[-8032],[-5942],[5060],[-2693],[-9111],[2710],[-2121],[-6219],[-4466],[8751],[4408],[8741],[-5549],[870],[-6922],[-1582],[-3550],[8905],[7308],[1958],[-1011],[-591],[2712],[5755],[688],[4905],[-9272],[-8668],[6888],[5933],[5074],[9704],[5196],[-8148],[-6585],[-1462],[7974],[-3316],[-9339],[3135],[-7529],[9964],[3957],[5610],[-6192],[-5055],[8379],[-764],[7034],[8884],[8021],[-6411],[-723],[-5238],[9410],[7032],[-8807],[-3243],[4723],[7390],[5004],[-1395],[151],[6709],[3995],[-4321],[-4546],[-7078],[3241],[808],[-7693],[-8564],[4827],[-3189],[-3123],[7361],[3606],[280],[3665],[-6455],[-9620],[9948],[8320],[8740],[3635],[8537],[-3485],[2931],[-9225],[1081],[4955],[-6450],[1070],[-9880],[6813],[-6563],[4890],[783],[-8780],[4583],[6031],[-9184],[4011],[-7056],[-629],[-4293],[4057],[-1480],[-9407],[-3497],[2742],[-2804],[361],[-1741],[-5181],[7142],[-3184],[1743],[-3138],[268],[7697],[437],[-1717],[-2009],[6489],[819],[8085],[7876],[4942],[-7358],[3657],[-3980],[-1547],[8833],[1900],[-1456],[3872],[7016],[42],[-9376],[9418],[-3836],[5145],[9803],[-9053],[7466],[-42],[-5165],[-8629],[-1118],[1767],[5572],[5182],[-7121],[3867],[-2084],[5497],[-3739],[202],[9545],[-435],[-2889],[-2816],[2863],[566],[-814],[-1651],[-4079],[3286],[-9912],[-4358],[-8304],[6837],[-802],[-8498],[-9293],[-237],[4475],[-8765],[-9131],[1599],[5488],[-2296],[7467],[4295],[-5099],[-1305],[-9040],[-2325],[-4268],[4310],[6308],[-8236],[-6561],[6718],[2540],[3053],[1002],[2536],[-7160],[4874],[4577],[7785],[-8657],[1956],[-1213],[7745],[-460],[2225],[482],[9276],[-3140],[2718],[-9074],[9261],[-4314],[4554],[-5056],[7905],[2206],[6916],[-6420],[-6170],[-6802],[-1389],[7233],[-2329],[-7531],[9370],[-9178],[8677],[-4756],[3919],[7721],[-2474],[5856],[-3047],[4913],[-6222],[136],[-3515],[-1469],[4984],[-5356],[6861],[-4337],[-3818],[-1937],[-5060],[-134],[-5393],[3089],[3195],[9462],[-3121],[4755],[4589],[9283],[9185],[-6270],[9059],[-5346],[9426],[-4437],[9926],[-5506],[-7425],[1490],[-8294],[9747],[8342],[9662],[7355],[4101],[-1442],[4618],[3074],[3369],[-979],[-8733],[2920],[7238],[-9858],[-5412],[-8930],[2004],[-1057],[-9157],[-8341],[693],[8051],[-3795],[-117],[-6585],[-7970],[-2297],[-7235],[-9374],[3573],[6917],[5347],[-9463],[-8593],[-7458],[5527],[1621],[7024],[2154],[630],[4015],[-1093],[7524],[5668],[4263],[-1827],[9012],[9562],[6027],[-8163],[1330],[468],[-9511],[937],[9119],[-1934],[8760],[-3163],[9151],[-6929],[-2281],[2480],[-9093],[-9158],[-1220],[-8818],[3475],[-6831],[-8567],[-8587],[8071],[4236],[3486],[-5933],[5891],[8962],[6983],[-5831],[5549],[-591],[-9469],[6262],[9645],[4003],[8234],[5348],[-3336],[3936],[6217],[-4383],[-7973],[-8161],[-5525],[8963],[-2769],[6735],[1910],[1712],[-770],[-9231],[-7149],[9584],[-8510],[-1732],[3908],[6573],[-804],[-1950],[819],[2139],[6030],[-6381],[3301],[-3041],[8243],[-2098],[-3379],[-5631],[-5469],[-8081],[8732],[2690],[3099],[9086],[3798],[-3805],[2082],[5722],[-2628],[8061],[7093],[6312],[1218],[1945],[-2082],[66],[7425],[2251],[9895],[3373],[1069],[-3528],[2388],[1973],[-1292],[-6113],[-3127],[-8962],[9138],[-9204],[1920],[-8244],[-7497],[9748],[-883],[-594],[2633],[9584],[6356],[-4961],[9009],[1666],[-4639],[3460],[7828],[-4265],[-3018],[-6454],[-3856],[5857],[-6210],[3775],[-4134],[3360],[1157],[-2721],[3324],[7732],[3671],[-1391],[287],[2797],[-9634],[2713],[-5706],[-9150],[2190],[7275],[621],[-1569],[-9085],[7688],[7159],[-764],[7246],[6305],[6915],[1282],[-7738],[5972],[6436],[6439],[-2878],[6521],[-8689],[-1711],[-1603],[-5509],[-8088],[-8328],[967],[9028],[-2425],[4556],[9031],[-9072],[-2816],[661],[-2797],[1281],[-161],[-1253],[165],[-2079],[-8427],[4630],[5125],[-8623],[1719],[-2548],[-9100],[7754],[-2878],[6963],[2187],[1676],[-1929],[3294],[7453],[6549],[-7512],[4165],[-4114],[-1129],[-310],[6962],[1504],[8888],[5890],[-5939],[8725],[8018],[8988],[-3705],[1834],[-740],[-7315],[-3213],[4507],[8617],[-5494],[5346],[5749],[-7532],[6043],[-7064],[5093],[-8228],[210],[5500],[3017],[-3494],[7226],[923],[3149],[8710],[478],[1329],[-8444],[-5878],[5515],[-5022],[2745],[2568],[-4459],[-7949],[585],[6879],[-8290],[1833],[-1581],[-3586],[-3579],[4901],[6286],[3064],[-9070],[-9851],[2374],[-8395],[-113],[-6339],[1653],[-9049],[4192],[2867],[-1359],[-7109],[980],[-3540],[9000],[7372],[8997],[4752],[7980],[8148],[9488],[-8142],[7757],[-7807],[-3561],[5123],[617],[-6965],[7307],[-8844],[7389],[1184],[-5714],[9312],[-2247],[-7443],[5649],[3624],[8562],[3149],[-3462],[-1527],[6540],[-551],[-9940],[2460],[-7235],[-1602],[-5139],[-6248],[4501],[-7636],[6115],[-137],[-9574],[-7572],[4869],[1673],[-5839],[4650],[4082],[1176],[-606],[-3607],[9654],[-7186],[8102],[6477],[9598],[-8608],[-4519],[4982],[-7333],[-4610],[-3305],[-7004],[-5675],[5646],[6788],[-8736],[732],[-2697],[-7207],[-358],[1627],[1697],[9571],[-1453],[2013],[-8600],[-4472],[566],[-9381],[9899],[7144],[-2473],[-1597],[-940],[9945],[5410],[-7338],[9820],[4368],[7041],[2411],[5210],[-1705],[-915],[-2017],[-1678],[5018],[-2711],[9351],[6050],[1862],[1077],[-4515],[5928],[5006],[-2748],[-332],[728],[-476],[3073],[-9854],[-4038],[-9380],[-5649],[-5120],[-9976],[6500],[-6159],[2420],[4572],[-1633],[7619],[5192],[5406],[8220],[-1087],[-7695],[8253],[-858],[1723],[-7000],[-3249],[4877],[5460],[9061],[-2566],[-1683],[4282],[-3163],[-3515],[-2957],[9406],[-9226],[1207],[3497],[-4302],[-1293],[1961],[6386],[-7889],[-7233],[6617],[-4756],[9793],[2430],[-2405],[-4599],[8194],[599],[2243],[-2657],[-3412],[-374],[3844],[-9445],[-2535],[-4811],[-1836],[4480],[-1283],[-9888],[3940],[-1736],[-9281],[8326],[7213],[-2581],[4509],[4751],[8370],[-5581],[-7427],[-4437],[3833],[-2416],[-2830],[-6890],[-3231],[-3917],[5818],[-7038],[-5238],[-1381],[7549],[9366],[167],[2118],[1980],[-4798],[2636],[-782],[4791],[2026],[-2125],[-3652],[3831],[319],[-9638],[319],[7220],[-3625],[-3962],[6740],[2675],[-9337],[614],[-1672],[7380],[-6398],[267],[-1602],[425],[-7064],[-4481],[8006],[-8470],[2893],[5488],[-556],[-7318],[-3991],[-5953],[-3977],[5177],[4029],[6971],[8395],[-593],[-5844],[-5694],[2193],[714],[4899],[1552],[5112],[2069],[2378],[2412],[-9041],[2599],[5874],[3857],[-9343],[-7623],[5047],[8421],[9756],[-8277],[-7451],[285],[-8904],[931],[-1572],[-8819],[8817],[-7882],[5279],[-7522],[-2219],[954],[1499],[4772],[6931],[7339],[-2069],[4152],[-9300],[9486],[5045],[4690],[-441],[4885],[3178],[-7774],[7809],[591],[-9980],[-3492],[3664],[5546],[4954],[6618],[8931],[-3115],[-3970],[-6778],[-9607],[9184],[76],[-9132],[5522],[9675],[9609],[3008],[6584],[-7317],[-9495],[9016],[-3792],[8232],[-1200],[-1579],[6902],[8358],[-8520],[7216],[-8617],[-332],[9139],[3630],[1019],[1366],[6158],[-269],[-5141],[-4651],[4537],[5225],[-6966],[-9386],[-2581],[9040],[2069],[-8439],[6306],[-3886],[-7194],[-4715],[4579],[696],[6410],[7088],[-8273],[-3035],[5966],[-7155],[-2483],[-7384],[8504],[3035],[-3565],[8524],[-8458],[-62],[6723],[1243],[-2498],[-8003],[173],[3940],[4951],[-303],[2712],[5787],[-7630],[4694],[346],[-7666],[-8180],[-1516],[-2253],[4092],[3193],[1926],[-3928],[5038],[-2994],[-1366],[-437],[-7252],[2721],[109],[2143],[-3927],[-6900],[6650],[-4492],[8670],[-80],[-9095],[6372],[-9865],[-2637],[-3050],[5052],[-1344],[804],[-5573],[7144],[-8625],[376],[-190],[5996],[238],[-112],[3626],[-877],[8092],[828],[8274],[2714],[1229],[5064],[6639],[5437],[-5541],[9177],[-58],[-3231],[-4476],[5377],[-3800],[8031],[7854],[-1065],[4370],[890],[-382],[1452],[-542],[-9156],[-154],[5109],[-7767],[-4373],[-3022],[-6613],[-6152],[6221],[-3096],[-6560],[-9848],[-9015],[-8553],[9337],[-5000],[-5816],[-6659],[-4738],[-7847],[4624],[9568],[-4260],[-3851],[-164],[-8886],[8575],[8772],[5250],[2243],[-8899],[7321],[-9850],[1989],[-224],[-1103],[5128],[705],[-7842],[-2666],[317],[3001],[9202],[8974],[-6314],[-7975],[-7908],[-2516],[-301],[-9264],[2836],[-9915],[-347],[4142],[9185],[-1510],[-1460],[1963],[2277],[-9033],[-4032],[2579],[2625],[4179],[9135],[410],[-2168],[-9381],[632],[-2099],[5878],[-441],[-5445],[6158],[1448],[-637],[2498],[5304],[4934],[-8743],[7039],[1947],[7763],[8079],[-5441],[5803],[7744],[-3063],[2716],[-8424],[-9270],[4324],[3764],[520],[-5018],[9413],[-397],[-2143],[6235],[-7788],[1930],[-7894],[5230],[4482],[-2258],[3209],[9602],[1043],[3482],[-2649],[2686],[-942],[1851],[3198],[-7815],[-2289],[-13],[-2525],[-9138],[-3896],[-5460],[8494],[6944],[-2990],[-677],[-8933],[-5995],[5684],[135],[-1091],[6654],[4963],[-5443],[6610],[-9838],[-3784],[8635],[-2363],[-6264],[1468],[106],[-9750],[6805],[-1053],[2672],[8801],[-7422],[2159],[6460],[1539],[-9548],[-1034],[5931],[-2918],[-516],[-6685],[6789],[-1011],[5482],[9324],[8248],[-9411],[-6450],[1013],[8506],[9719],[2771],[-119],[-1506],[-6021],[-242],[5177],[1010],[9920],[-9874],[6357],[3722],[-8314],[7860],[2259],[-3290],[-3208],[-4935],[-7127],[-7064],[-90],[-9239],[735],[8060],[4866],[-636],[6458],[-6375],[2715],[-466],[7402],[9062],[488],[-7269],[2003],[-3200],[-8275],[-8264],[8988],[174],[-4863],[5903],[-115],[2360],[912],[-9835],[1869],[-312],[3089],[2459],[2758],[-2029],[6723],[9766],[6554],[-113],[-6304],[-9817],[-6377],[4830],[-5198],[-6531],[-7213],[-6933],[9245],[3898],[5792],[-6814],[39],[7697],[-7098],[3572],[-2499],[6734],[-9614],[2592],[1725],[1239],[174],[3752],[7863],[9787],[7879],[9684],[-4870],[3025],[9765],[-7054],[-8613],[-3587],[5381],[-3859],[-2677],[8374],[-2728],[1350],[-3061],[-8865],[-9968],[-1268],[-7634],[6849],[-8957],[2146],[4422],[-8350],[3635],[4067],[-621],[508],[-1847],[-4290],[7344],[5912],[7767],[3225],[7988],[8823],[3569],[4621],[-6429],[-2936],[31],[-8429],[1675],[5546],[7182],[1338],[1464],[2796],[9065],[-2602],[9752],[4995],[-8987],[8297],[1157],[-3220],[-8270],[2126],[-4805],[-8115],[-5601],[4282],[-3167],[-106],[-1663],[9518],[8906],[1930],[5236],[6122],[5564],[2786],[-9430],[-5704],[-2244],[190],[-3512],[6117],[724],[8305],[8518],[9588],[6303],[-6513],[6365],[6198],[2790],[2267],[-3590],[-5412],[7977],[-8942],[875],[-322],[9239],[7780],[-8924],[7906],[-6844],[5600],[393],[3944],[-1599],[-2850],[-7169],[8321],[7513],[-87],[7962],[524],[-1052],[1212],[8378],[-4292],[-3879],[-8939],[-8187],[-2406],[-6189],[5606],[3531],[3885],[-3676],[9110],[6191],[-3546],[-8503],[4772],[9487],[1148],[6079],[-1940],[2970],[-2820],[5350],[-9311],[669],[3175],[240],[9310],[3053],[6158],[2462],[-216],[6754],[3799],[2914],[-2564],[-61],[4199],[8715],[-881],[1393],[-1548],[4689],[7957],[-8157],[-9855],[-5717],[-7330],[-6748],[-453],[-7933],[5644],[578],[4430],[5291],[-7713],[3535],[9495],[-769],[633],[-3436],[-954],[6573],[-3000],[8180],[-17],[3808],[-2959],[-1648],[-5735],[-6399],[9344],[2206],[1736],[-1681],[-4128],[-7771],[5369],[5832],[4124],[1097],[-6398],[-1573],[-7651],[5650],[-4302],[5959],[8139],[-1559],[-4822],[5480],[-2713],[-7230],[-7901],[-635],[-2522],[4311],[-6068],[-1872],[7304],[-1597],[-5030],[-253],[3427],[-5444],[-9521],[1404],[-9079],[-4913],[-2980],[-8792],[-4586],[-7193],[-8421],[-7067],[-2166],[-7211],[4074],[-21],[6367],[-7208],[-4196],[-9762],[6933],[1805],[664],[4494],[-9028],[-402],[5656],[-555],[-9534],[1803],[842],[6654],[-6757],[-8856],[-2287],[-8588],[1177],[9326],[3142],[1781],[-9342],[-1098],[-9801],[-1934],[-7545],[3213],[6968],[7896],[-9085],[-5983],[-6425],[-181],[9025],[5971],[4074],[4802],[-2048],[5391],[2258],[-1356],[9007],[8407],[3643],[3228],[-3813],[-9438],[6308],[-341],[-8162],[8302],[3566],[-9851],[5949],[-4497],[-8824],[-3662],[-4844],[9757],[-1619],[9571],[6559],[-520],[-5195],[3336],[-792],[5812],[5395],[-5435],[-325],[8313],[9585],[-7050],[-4006],[2102],[-5690],[801],[-1446],[-7390],[4315],[-5350],[-3467],[-7345],[-6988],[7457],[-5709],[-3604],[-3600],[-5960],[-3132],[6640],[-7677],[1316],[8544],[8999],[-8127],[-1207],[5270],[-8400],[-8894],[-50],[-9858],[2632],[-9498],[-7230],[9034],[-8455],[2683],[7982],[-6788],[347],[7764],[3443],[3129],[873],[7753],[-3737],[-3381],[-4745],[8932],[3679],[953],[5429],[745],[2264],[1938],[3876],[9860],[-9958],[9508],[3944],[202],[933],[-939],[7928],[1101],[-871],[5264],[6004],[-6502],[-3136],[-8805],[-5035],[7177],[9176],[-2683],[-1722],[1946],[7321],[4869],[-9003],[-5815],[4374],[3632],[-8001],[8366],[7162],[6973],[3167],[-5403],[-3194],[-8295],[5559],[-7614],[-1270],[4908],[-3063],[-3355],[-9395],[-9129],[-8176],[1647],[9778],[-7593],[6860],[-3238],[8771],[3902],[-6037],[9839],[-8184],[7769],[-8814],[1171],[-5428],[2244],[-1638],[-1178],[6640],[-4072],[-7040],[1898],[-4215],[7270],[-4961],[6647],[-4892],[8928],[5840],[3053],[-6496],[5658],[-8398],[5255],[-3298],[-8250],[-6296],[-4497],[8778],[3719],[-7064],[4479],[-1873],[-4212],[-1510],[-4567],[2503],[-4287],[840],[6409],[4052],[-1964],[7727],[-690],[-5085],[6302],[8803],[-2389],[2928],[-9385],[-3662],[-3362],[-2487],[-9649],[-1349],[-114],[-818],[-7302],[9654],[-8526],[1030],[-1606],[-3915],[2307],[-2514],[3066],[5909],[9825],[-5825],[7188],[-2227],[5165],[5166],[-541],[4299],[-6969],[7019],[5220],[9023],[-3960],[-3416],[-7703],[5576],[-9702],[926],[-8492],[-6739],[-656],[-5115],[-5904],[2152],[5832],[-6477],[7509],[6949],[4285],[-1245],[-5083],[206],[-2397],[2560],[-2207],[3252],[-9344],[-4313],[-7638],[-6487],[4546],[3621],[5642],[-6769],[-8445],[1578],[-3540],[3841],[3391],[7509],[6893],[-3938],[5821],[9714],[-5964],[2614],[-8334],[-6550],[-7380],[7629],[3793],[-6820],[-7628],[8646],[7376],[-7249],[-5487],[2719],[-22],[-2105],[9173],[-2664],[5331],[825],[583],[-3691],[-6651],[5301],[-5130],[-609],[-298],[9034],[-852],[7946],[-4859],[-4897],[-6563],[-5402],[7227],[7947],[8315],[-870],[-5137],[-2980],[-5204],[3624],[-5101],[-6679],[-4698],[-8112],[-8927],[2468],[2571],[310],[9588],[1390],[9179],[8340],[1707],[3820],[-9663],[-3967],[5166],[9948],[-7987],[4720],[-8395],[-1691],[-3054],[-6911],[1054],[4685],[-680],[5753],[-8583],[-3437],[8609],[5956],[-6216],[-8391],[699],[-7476],[9792],[-2736],[6971],[495],[6841],[360],[-668],[260],[1505],[9262],[26],[6691],[-1720],[8846],[791],[-3912],[6367],[5311],[6502],[-6243],[2528],[-4999],[5369],[-4520],[8621],[-2075],[-24],[-4041],[-2588],[-454],[8882],[-6487],[9481],[-9125],[-9320],[9727],[8501],[-9228],[5319],[2909],[9621],[-9973],[-8560],[-6674],[2113],[-4316],[6468],[7390],[7462],[5174],[1863],[-5190],[6837],[6622],[-3447],[8265],[-7221],[-27],[-7398],[-2271],[3278],[-5073],[6305],[-7654],[9575],[-9767],[-427],[-8602],[-3734],[-8943],[-3177],[-2545],[4049],[-8911],[-8703],[4816],[9329],[308],[-9254],[-7820],[-7174],[-4529],[-482],[9182],[-2528],[1495],[3660],[-8854],[-7337],[-7496],[-5283],[-5652],[51],[-2700],[-3584],[1143],[-4836],[-7161],[-3866],[7223],[-9227],[5817],[-8780],[-5908],[87],[6880],[5021],[8212],[-8062],[-5572],[-7675],[7358],[7169],[2331],[7315],[5236],[6381],[-1591],[-4300],[-8301],[-8167],[-1289],[6258],[4178],[-5082],[95],[7648],[7952],[-7919],[1317],[-8549],[2813],[211],[3984],[1683],[-8464],[-7049],[-5123],[-7577],[-3144],[7082],[-4985],[3529],[-8167],[-1255],[4161],[-8781],[8660],[-2242],[-1008],[985],[2286],[-2091],[-536],[-7284],[6528],[9146],[8221],[-3955],[6527],[-2866],[4133],[955],[-464],[586],[7595],[6888],[-3932],[571],[-3494],[2832],[8292],[-7403],[-3151],[4400],[3288],[-3763],[7616],[-9733],[8894],[8020],[4472],[6476],[7768],[-2415],[8517],[-2862],[-8344],[-1688],[5006],[-779],[3158],[3888],[-1400],[1717],[5159],[-1493],[6229],[628],[4648],[5285],[-9113],[9836],[-3357],[7948],[-3858],[-2245],[6331],[-4432],[-8739],[-9026],[3929],[768],[7516],[-5785],[-6309],[7742],[-9664],[-5207],[8853],[-3904],[-9383],[-2238],[-2309],[2531],[3624],[-6636],[-4366],[-9597],[-8946],[542],[-3262],[4916],[-2664],[1809],[-2271],[-4864],[-394],[-459],[-6967],[490],[1518],[-1428],[5087],[-1746],[9740],[2654],[1298],[-4189],[-4542],[3527],[8748],[-2590],[-7948],[-714],[4069],[-4445],[5607],[2466],[-6577],[5819],[-1012],[865],[6097],[5738],[5532],[-8688],[2436],[-1596],[2362],[-8921],[-8127],[424],[-4901],[-8742],[8994],[2862],[-8762],[-4596],[3616],[583],[1961],[7207],[-3825],[-1971],[-7453],[6783],[6065],[-2895],[553],[-8213],[5904],[878],[2212],[-8974],[5393],[-4790],[6242],[9388],[7771],[2783],[658],[-7558],[4790],[9557],[-526],[-1922],[3886],[-9584],[8990],[-5817],[-5182],[-3536],[8674],[-790],[-1157],[-4169],[2598],[-3366],[-2015],[4936],[-7549],[8474],[-9664],[2735],[-341],[-103],[3898],[-1654],[-6744],[-3653],[6938],[5359],[-1070],[4830],[8814],[-3788],[8871],[6947],[2228],[2355],[-4941],[2803],[4530],[3581],[-2500],[1102],[-9068],[-5708],[-1799],[-7730],[4747],[6400],[4739],[2048],[-4910],[2795],[-1364],[-7715],[2510],[-7201],[-2420],[5598],[-7472],[1312],[7493],[-4579],[-2760],[4217],[4395],[-8599],[9725],[3228],[5921],[5667],[-7548],[-3545],[970],[800],[1987],[-5244],[-9034],[-8233],[-1321],[537],[4724],[9186],[1207],[-5143],[5296],[9986],[4303],[3557],[-7968],[-1116],[6782],[-4600],[7626],[5610],[-4441],[3689],[236],[4591],[-8157],[-3704],[9958],[8778],[5005],[1451],[5181],[7573],[1805],[-2403],[3375],[2442],[7062],[198],[-1837],[-9176],[-3057],[-6512],[68],[-9698],[8000],[-6846],[4452],[6922],[-7304],[840],[6193],[-8023],[-1140],[1280],[1690],[3872],[-3453],[8736],[-2372],[2904],[-2560],[3520],[6703],[-7009],[-913],[-3110],[7108],[8490],[-2684],[-3754],[1659],[-2989],[9458],[5933],[4830],[3439],[-5427],[-821],[-6746],[-1508],[4736],[-364],[21],[-3599],[-2211],[-7742],[4018],[4105],[4463],[5368],[3907],[5839],[3436],[-6811],[-2771],[7918],[497],[-1543],[-46],[5937],[-8448],[-9191],[4980],[2060],[4973],[9328],[9428],[-7635],[-2764],[9705],[-1287],[4798],[-737],[7579],[8290],[3152],[-6772],[7835],[6377],[343],[-1908],[3336],[-7052],[-448],[-732],[-5660],[-4745],[7464],[4847],[-8097],[348],[4035],[-5390],[-9696],[3998],[-9737],[2637],[-1229],[-9359],[218],[-7113],[-1283],[2193],[9803],[-607],[-1980],[3985],[-1218],[8744],[-6432],[-3087],[-1979],[9247],[-4231],[-80],[-8600],[-8684],[-3691],[1504],[9741],[8888],[-2502],[-9232],[-7369],[2722],[8971],[-4198],[-2000],[-1089],[2345],[2300],[-1213],[9178],[2980],[-6607],[-2535],[7676]]
Enter fullscreen mode Exit fullscreen mode
  • Output:
[null,-9995,-9993,-9993,-9992,-9991,-9988,-9987,-9986,-9985,-9982,-9981,-9978,-9978,-9978,-9976,-9976,-9975,-9975,-9973,-9971,-9970,-9970,-9969,-9964,-9963,-9962,-9959,-9958,-9958,-9955,-9953,-9952,-9951,-9948,-9946,-9946,-9945,-9939,-9934,-9932,-9932,-9931,-9930,-9930,-9929,-9929,-9928,-9923,-9922,-9922,-9919,-9917,-9913,-9911,-9911,-9910,-9906,-9905,-9904,-9903,-9901,-9898,-9897,-9895,-9895,-9894,-9892,-9891,-9890,-9889,-9889,-9889,-9888,-9887,-9886,-9882,-9882,-9880,-9875,-9874,-9874,-9872,-9871,-9871,-9865,-9858,-9857,-9852,-9852,-9844,-9842,-9838,-9834,-9827,-9826,-9826,-9813,-9813,-9812,-9807,-9805,-9805,-9804,-9802,-9799,-9798,-9795,-9793,-9790,-9790,-9782,-9781,-9779,-9777,-9776,-9776,-9774,-9770,-9766,-9764,-9762,-9757,-9757,-9755,-9753,-9753,-9752,-9751,-9749,-9747,-9746,-9743,-9742,-9742,-9741,-9741,-9740,-9738,-9738,-9736,-9734,-9734,-9733,-9725,-9723,-9722,-9722,-9722,-9721,-9714,-9714,-9711,-9710,-9710,-9708,-9693,-9692,-9691,-9690,-9690,-9687,-9683,-9682,-9681,-9679,-9679,-9673,-9671,-9667,-9665,-9664,-9663,-9662,-9662,-9661,-9660,-9659,-9658,-9658,-9658,-9653,-9649,-9645,-9644,-9644,-9642,-9641,-9641,-9641,-9640,-9635,-9635,-9634,-9633,-9633,-9630,-9629,-9629,-9623,-9623,-9621,-9618,-9617,-9617,-9616,-9615,-9614,-9614,-9608,-9607,-9603,-9603,-9601,-9600,-9595,-9588,-9588,-9585,-9584,-9582,-9579,-9574,-9574,-9573,-9573,-9572,-9570,-9569,-9569,-9564,-9558,-9558,-9558,-9556,-9556,-9555,-9554,-9553,-9551,-9551,-9550,-9546,-9543,-9541,-9540,-9538,-9537,-9535,-9535,-9533,-9531,-9529,-9527,-9526,-9524,-9523,-9521,-9520,-9519,-9514,-9512,-9512,-9512,-9509,-9505,-9502,-9502,-9499,-9496,-9495,-9493,-9490,-9488,-9488,-9476,-9475,-9474,-9473,-9469,-9458,-9454,-9450,-9448,-9447,-9446,-9441,-9440,-9432,-9431,-9425,-9421,-9420,-9420,-9420,-9419,-9415,-9410,-9408,-9405,-9404,-9402,-9400,-9396,-9392,-9392,-9390,-9389,-9385,-9385,-9382,-9381,-9378,-9378,-9375,-9375,-9374,-9372,-9370,-9370,-9369,-9368,-9368,-9368,-9367,-9365,-9365,-9365,-9360,-9359,-9358,-9354,-9352,-9346,-9344,-9340,-9335,-9331,-9328,-9328,-9328,-9326,-9325,-9324,-9318,-9314,-9314,-9313,-9311,-9311,-9310,-9304,-9304,-9303,-9301,-9292,-9288,-9288,-9284,-9284,-9283,-9282,-9282,-9279,-9279,-9279,-9279,-9268,-9268,-9268,-9266,-9264,-9264,-9263,-9263,-9261,-9260,-9255,-9254,-9254,-9254,-9253,-9251,-9250,-9248,-9247,-9246,-9244,-9231,-9231,-9231,-9229,-9228,-9225,-9219,-9211,-9206,-9200,-9198,-9198,-9196,-9194,-9191,-9190,-9190,-9189,-9187,-9187,-9187,-9184,-9183,-9180,-9179,-9175,-9174,-9172,-9170,-9170,-9169,-9167,-9167,-9164,-9163,-9160,-9156,-9154,-9153,-9153,-9152,-9152,-9150,-9150,-9148,-9144,-9143,-9143,-9137,-9135,-9133,-9130,-9130,-9130,-9127,-9123,-9123,-9121,-9120,-9120,-9118,-9116,-9115,-9113,-9112,-9105,-9104,-9104,-9104,-9101,-9100,-9098,-9098,-9098,-9096,-9091,-9090,-9089,-9088,-9088,-9087,-9085,-9079,-9078,-9078,-9077,-9076,-9076,-9073,-9072,-9072,-9070,-9068,-9067,-9065,-9064,-9062,-9060,-9058,-9056,-9054,-9053,-9053,-9048,-9046,-9040,-9032,-9028,-9023,-9021,-9017,-9017,-9015,-9012,-9012,-9012,-9011,-9011,-9008,-9008,-9007,-9006,-9005,-8999,-8997,-8995,-8984,-8984,-8984,-8982,-8981,-8977,-8972,-8972,-8971,-8969,-8966,-8966,-8960,-8959,-8953,-8950,-8950,-8950,-8948,-8943,-8942,-8941,-8940,-8938,-8938,-8937,-8934,-8932,-8931,-8928,-8924,-8923,-8923,-8923,-8923,-8922,-8920,-8917,-8910,-8910,-8910,-8906,-8905,-8905,-8904,-8893,-8892,-8889,-8888,-8888,-8888,-8884,-8874,-8871,-8870,-8870,-8868,-8868,-8868,-8868,-8866,-8865,-8859,-8858,-8856,-8856,-8851,-8850,-8850,-8849,-8848,-8845,-8844,-8844,-8840,-8835,-8835,-8835,-8835,-8832,-8832,-8831,-8831,-8827,-8825,-8821,-8820,-8818,-8816,-8816,-8815,-8815,-8813,-8810,-8801,-8799,-8798,-8798,-8796,-8794,-8794,-8793,-8788,-8788,-8784,-8782,-8782,-8781,-8780,-8777,-8777,-8776,-8775,-8775,-8773,-8772,-8769,-8764,-8764,-8763,-8763,-8763,-8761,-8759,-8759,-8758,-8757,-8756,-8755,-8755,-8745,-8744,-8740,-8739,-8739,-8735,-8735,-8734,-8734,-8733,-8733,-8732,-8732,-8731,-8730,-8724,-8722,-8722,-8717,-8714,-8709,-8707,-8706,-8704,-8701,-8701,-8700,-8700,-8700,-8696,-8695,-8695,-8693,-8689,-8680,-8677,-8671,-8670,-8669,-8668,-8668,-8667,-8665,-8665,-8665,-8661,-8658,-8657,-8655,-8655,-8653,-8650,-8650,-8649,-8649,-8648,-8647,-8645,-8645,-8643,-8642,-8642,-8642,-8641,-8640,-8640,-8637,-8637,-8637,-8636,-8636,-8633,-8632,-8627,-8626,-8624,-8622,-8616,-8616,-8615,-8609,-8608,-8608,-8602,-8601,-8598,-8596,-8596,-8594,-8593,-8592,-8591,-8589,-8586,-8586,-8586,-8586,-8580,-8577,-8577,-8574,-8574,-8573,-8571,-8569,-8567,-8567,-8566,-8565,-8562,-8561,-8555,-8552,-8551,-8550,-8550,-8549,-8549,-8547,-8544,-8542,-8541,-8541,-8540,-8537,-8537,-8536,-8536,-8535,-8535,-8532,-8527,-8527,-8526,-8525,-8524,-8522,-8520,-8514,-8512,-8510,-8509,-8509,-8508,-8504,-8503,-8502,-8501,-8500,-8500,-8498,-8497,-8494,-8494,-8493,-8489,-8488,-8484,-8479,-8475,-8475,-8474,-8470,-8465,-8463,-8461,-8460,-8458,-8454,-8453,-8453,-8451,-8450,-8449,-8448,-8441,-8439,-8439,-8438,-8438,-8436,-8436,-8434,-8434,-8433,-8430,-8430,-8428,-8427,-8426,-8426,-8425,-8423,-8423,-8420,-8413,-8412,-8411,-8411,-8406,-8406,-8405,-8401,-8399,-8398,-8397,-8395,-8395,-8394,-8392,-8391,-8388,-8383,-8383,-8383,-8381,-8381,-8380,-8378,-8377,-8377,-8376,-8373,-8373,-8371,-8371,-8369,-8365,-8363,-8362,-8359,-8357,-8357,-8357,-8355,-8355,-8354,-8352,-8351,-8351,-8349,-8345,-8343,-8340,-8338,-8329,-8328,-8328,-8326,-8326,-8326,-8326,-8324,-8322,-8317,-8316,-8315,-8315,-8315,-8313,-8312,-8310,-8310,-8309,-8309,-8306,-8302,-8302,-8301,-8299,-8292,-8291,-8291,-8289,-8288,-8287,-8286,-8286,-8285,-8283,-8282,-8275,-8274,-8273,-8270,-8268,-8251,-8251,-8251,-8248,-8242,-8241,-8240,-8237,-8236,-8235,-8235,-8231,-8230,-8229,-8229,-8229,-8229,-8228,-8227,-8224,-8220,-8218,-8210,-8210,-8210,-8207,-8205,-8199,-8195,-8192,-8190,-8190,-8187,-8186,-8181,-8181,-8180,-8177,-8174,-8172,-8170,-8169,-8169,-8166,-8162,-8161,-8161,-8160,-8160,-8160,-8155,-8153,-8153,-8153,-8153,-8151,-8145,-8144,-8141,-8137,-8133,-8130,-8124,-8122,-8115,-8115,-8113,-8111,-8110,-8107,-8104,-8103,-8102,-8102,-8101,-8101,-8100,-8097,-8095,-8093,-8092,-8091,-8088,-8085,-8085,-8083,-8081,-8076,-8071,-8070,-8069,-8068,-8063,-8062,-8058,-8055,-8054,-8054,-8053,-8049,-8049,-8048,-8048,-8043,-8042,-8042,-8039,-8039,-8039,-8038,-8036,-8029,-8028,-8025,-8024,-8024,-8024,-8022,-8020,-8017,-8014,-8014,-8011,-8011,-8007,-8007,-8007,-8000,-7995,-7994,-7992,-7990,-7988,-7988,-7985,-7985,-7982,-7981,-7981,-7980,-7980,-7980,-7980,-7978,-7976,-7976,-7975,-7973,-7971,-7971,-7971,-7968,-7965,-7964,-7964,-7962,-7962,-7962,-7959,-7958,-7957,-7956,-7954,-7952,-7952,-7947,-7946,-7945,-7945,-7944,-7943,-7942,-7939,-7937,-7936,-7934,-7930,-7926,-7921,-7920,-7920,-7920,-7919,-7911,-7910,-7910,-7909,-7905,-7901,-7899,-7898,-7898,-7889,-7889,-7889,-7887,-7887,-7882,-7878,-7877,-7874,-7873,-7869,-7868,-7868,-7867,-7860,-7858,-7858,-7853,-7851,-7849,-7848,-7845,-7843,-7843,-7842,-7842,-7840,-7840,-7839,-7837,-7836,-7836,-7836,-7834,-7834,-7833,-7831,-7831,-7831,-7831,-7829,-7825,-7825,-7824,-7822,-7822,-7821,-7820,-7820,-7818,-7816,-7814,-7806,-7803,-7802,-7797,-7796,-7796,-7795,-7795,-7793,-7791,-7791,-7790,-7790,-7787,-7784,-7784,-7784,-7783,-7783,-7782,-7782,-7782,-7781,-7780,-7777,-7777,-7775,-7771,-7770,-7770,-7765,-7761,-7757,-7757,-7753,-7752,-7738,-7738,-7737,-7735,-7734,-7731,-7728,-7725,-7725,-7724,-7724,-7724,-7724,-7719,-7719,-7719,-7719,-7717,-7714,-7714,-7714,-7713,-7712,-7711,-7711,-7710,-7710,-7703,-7702,-7695,-7690,-7688,-7688,-7688,-7686,-7683,-7683,-7683,-7682,-7682,-7680,-7678,-7678,-7676,-7674,-7671,-7667,-7665,-7663,-7661,-7660,-7658,-7658,-7656,-7649,-7648,-7646,-7644,-7644,-7643,-7641,-7641,-7635,-7635,-7635,-7633,-7633,-7632,-7626,-7626,-7626,-7625,-7623,-7618,-7615,-7615,-7611,-7610,-7609,-7604,-7600,-7600,-7596,-7594,-7593,-7593,-7593,-7593,-7593,-7593,-7591,-7589,-7586,-7585,-7583,-7581,-7580,-7579,-7578,-7576,-7575,-7572,-7571,-7570,-7563,-7563,-7562,-7562,-7560,-7555,-7553,-7553,-7553,-7552,-7552,-7550,-7547,-7547,-7547,-7538,-7538,-7537,-7535,-7534,-7533,-7531,-7531,-7531,-7530,-7528,-7526,-7525,-7524,-7523,-7520,-7515,-7514,-7512,-7512,-7503,-7501,-7500,-7500,-7496,-7496,-7494,-7494,-7489,-7489,-7489,-7485,-7483,-7482,-7482,-7482,-7481,-7479,-7478,-7476,-7474,-7473,-7472,-7466,-7466,-7465,-7464,-7460,-7460,-7460,-7457,-7457,-7455,-7454,-7453,-7449,-7449,-7445,-7445,-7444,-7440,-7438,-7433,-7428,-7428,-7428,-7428,-7427,-7427,-7426,-7426,-7426,-7424,-7422,-7421,-7421,-7421,-7418,-7418,-7417,-7417,-7413,-7412,-7410,-7410,-7406,-7405,-7405,-7405,-7405,-7404,-7403,-7395,-7392,-7390,-7389,-7388,-7380,-7380,-7379,-7378,-7378,-7378,-7377,-7375,-7375,-7375,-7375,-7375,-7372,-7371,-7371,-7366,-7366,-7365,-7361,-7356,-7355,-7354,-7352,-7352,-7351,-7349,-7349,-7347,-7346,-7341,-7340,-7339,-7335,-7332,-7331,-7328,-7327,-7327,-7327,-7326,-7322,-7322,-7321,-7320,-7318,-7316,-7316,-7315,-7309,-7307,-7307,-7306,-7304,-7303,-7302,-7302,-7302,-7301,-7299,-7294,-7292,-7292,-7290,-7289,-7289,-7289,-7289,-7284,-7276,-7274,-7272,-7272,-7271,-7270,-7269,-7269,-7267,-7266,-7266,-7266,-7265,-7264,-7263,-7259,-7259,-7259,-7258,-7257,-7253,-7253,-7252,-7252,-7252,-7251,-7251,-7250,-7248,-7248,-7246,-7242,-7242,-7242,-7241,-7240,-7240,-7240,-7239,-7239,-7239,-7239,-7234,-7233,-7232,-7230,-7230,-7227,-7226,-7226,-7223,-7222,-7221,-7221,-7221,-7219,-7218,-7218,-7217,-7215,-7213,-7212,-7212,-7211,-7210,-7210,-7209,-7208,-7207,-7207,-7205,-7203,-7202,-7202,-7201,-7196,-7196,-7194,-7193,-7193,-7193,-7191,-7191,-7189,-7189,-7188,-7187,-7186,-7184,-7183,-7183,-7182,-7182,-7180,-7180,-7180,-7178,-7176,-7175,-7175,-7175,-7175,-7174,-7172,-7172,-7172,-7171,-7170,-7170,-7170,-7168,-7164,-7164,-7164,-7163,-7162,-7159,-7157,-7155,-7154,-7153,-7150,-7144,-7144,-7143,-7143,-7141,-7141,-7139,-7139,-7134,-7132,-7132,-7131,-7130,-7129,-7128,-7124,-7123,-7123,-7123,-7120,-7120,-7118,-7118,-7118,-7118,-7117,-7116,-7115,-7114,-7112,-7112,-7112,-7111,-7110,-7105,-7104,-7103,-7103,-7102,-7101,-7100,-7096,-7094,-7092,-7091,-7089,-7088,-7087,-7086,-7086,-7084,-7083,-7083,-7082,-7082,-7081,-7079,-7077,-7077,-7077,-7076,-7076,-7076,-7072,-7066,-7065,-7065,-7064,-7064,-7062,-7062,-7059,-7057,-7055,-7055,-7050,-7049,-7041,-7041,-7040,-7040,-7037,-7034,-7032,-7032,-7030,-7030,-7028,-7028,-7027,-7018,-7018,-7017,-7015,-7012,-7009,-7008,-7008,-7008,-7007,-7006,-7005,-7003,-7000,-6999,-6999,-6998,-6996,-6995,-6995,-6993,-6991,-6990,-6990,-6989,-6988,-6987,-6987,-6987,-6987,-6984,-6984,-6980,-6977,-6977,-6976,-6976,-6968,-6968,-6967,-6967,-6962,-6960,-6957,-6953,-6953,-6953,-6952,-6951,-6951,-6950,-6947,-6946,-6945,-6939,-6933,-6930,-6929,-6929,-6924,-6922,-6921,-6920,-6919,-6913,-6909,-6907,-6901,-6898,-6897,-6894,-6891,-6887,-6885,-6884,-6884,-6883,-6883,-6882,-6881,-6881,-6880,-6879,-6879,-6879,-6877,-6877,-6871,-6867,-6867,-6867,-6867,-6866,-6866,-6864,-6863,-6862,-6854,-6854,-6853,-6850,-6849,-6846,-6844,-6842,-6841,-6841,-6840,-6838,-6838,-6836,-6834,-6833,-6831,-6830,-6830,-6828,-6825,-6825,-6825,-6824,-6823,-6822,-6821,-6820,-6820,-6820,-6817,-6817,-6815,-6814,-6813,-6812,-6812,-6810,-6809,-6808,-6806,-6805,-6805,-6805,-6802,-6796,-6795,-6794,-6791,-6789,-6789,-6786,-6785,-6783,-6782,-6782,-6781,-6780,-6772,-6771,-6771,-6767,-6763,-6759,-6759,-6754,-6754,-6754,-6754,-6751,-6747,-6747,-6746,-6746,-6744,-6744,-6744,-6741,-6741,-6741,-6736,-6735,-6733,-6733,-6732,-6732,-6731,-6731,-6730,-6729,-6728,-6725,-6720,-6719,-6718,-6718,-6716,-6715,-6715,-6713,-6713,-6712,-6711,-6711,-6710,-6707,-6707,-6706,-6699,-6699,-6698,-6698,-6696,-6696,-6695,-6695,-6694,-6694,-6693,-6693,-6689,-6689,-6685,-6684,-6682,-6682,-6682,-6682,-6682,-6681,-6680,-6675,-6675,-6674,-6674,-6674,-6673,-6672,-6670,-6666,-6664,-6663,-6659,-6657,-6655,-6653,-6652,-6649,-6641,-6641,-6641,-6639,-6638,-6637,-6635,-6635,-6635,-6635,-6635,-6628,-6626,-6624,-6624,-6623,-6622,-6622,-6617,-6615,-6615,-6611,-6608,-6606,-6602,-6602,-6601,-6600,-6597,-6597,-6595,-6595,-6594,-6594,-6593,-6593,-6593,-6593,-6593,-6588,-6586,-6585,-6585,-6585,-6584,-6583,-6583,-6582,-6580,-6578,-6577,-6574,-6573,-6568,-6568,-6564,-6564,-6563,-6563,-6560,-6560,-6560,-6559,-6558,-6557,-6555,-6555,-6554,-6552,-6550,-6550,-6549,-6548,-6548,-6547,-6545,-6541,-6541,-6540,-6540,-6539,-6539,-6537,-6537,-6537,-6530,-6530,-6529,-6529,-6529,-6529,-6529,-6529,-6523,-6522,-6521,-6520,-6514,-6514,-6513,-6512,-6507,-6506,-6502,-6501,-6498,-6498,-6497,-6495,-6495,-6490,-6488,-6485,-6485,-6485,-6485,-6484,-6484,-6480,-6476,-6475,-6473,-6470,-6470,-6470,-6468,-6468,-6466,-6462,-6460,-6460,-6460,-6460,-6458,-6456,-6453,-6451,-6449,-6449,-6449,-6449,-6448,-6447,-6447,-6446,-6445,-6443,-6443,-6443,-6443,-6442,-6442,-6440,-6440,-6440,-6438,-6437,-6435,-6435,-6435,-6434,-6433,-6433,-6428,-6426,-6426,-6425,-6424,-6424,-6422,-6422,-6417,-6417,-6415,-6414,-6413,-6413,-6411,-6410,-6409,-6409,-6409,-6409,-6408,-6408,-6408,-6407,-6396,-6396,-6394,-6392,-6391,-6391,-6391,-6385,-6385,-6383,-6382,-6382,-6382,-6380,-6380,-6379,-6378,-6376,-6376,-6375,-6375,-6371,-6370,-6368,-6368,-6368,-6368,-6362,-6362,-6358,-6356,-6356,-6354,-6354,-6353,-6351,-6351,-6348,-6346,-6346,-6343,-6339,-6339,-6339,-6339,-6338,-6336,-6335,-6333,-6332,-6330,-6330,-6329,-6329,-6329,-6328,-6328,-6328,-6328,-6325,-6324,-6317,-6317,-6316,-6315,-6313,-6312,-6311,-6310,-6307,-6307,-6304,-6299,-6299,-6299,-6297,-6292,-6292,-6291,-6291,-6288,-6286,-6286,-6285,-6285,-6279,-6279,-6278,-6278,-6278,-6278,-6277,-6277,-6277,-6273,-6273,-6267,-6267,-6266,-6263,-6262,-6262,-6262,-6261,-6259,-6259,-6259,-6259,-6257,-6257,-6257,-6257,-6257,-6252,-6251,-6244,-6244,-6243,-6243,-6242,-6242,-6237,-6236,-6234,-6230,-6228,-6228,-6226,-6226,-6225,-6223,-6222,-6220,-6220,-6220,-6220,-6219,-6219,-6219,-6219,-6218,-6217,-6217,-6212,-6212,-6212,-6206,-6205,-6198,-6197,-6196,-6196,-6196,-6196,-6194,-6193,-6192,-6191,-6190,-6188,-6188,-6187,-6184,-6183,-6180,-6180,-6178,-6176,-6173,-6172,-6168,-6167,-6165,-6165,-6163,-6163,-6163,-6160,-6159,-6159,-6159,-6159,-6159,-6157,-6156,-6156,-6156,-6154,-6154,-6153,-6153,-6153,-6148,-6145,-6143,-6139,-6137,-6136,-6136,-6136,-6134,-6133,-6132,-6131,-6131,-6131,-6131,-6131,-6129,-6124,-6124,-6124,-6123,-6121,-6115,-6112,-6111,-6108,-6108,-6107,-6107,-6107,-6107,-6107,-6107,-6107,-6106,-6106,-6106,-6106,-6106,-6105,-6104,-6100,-6098,-6098,-6098,-6095,-6093,-6092,-6091,-6089,-6087,-6087,-6087,-6086,-6086,-6085,-6084,-6084,-6083,-6083,-6082,-6081,-6081,-6079,-6076,-6074,-6074,-6072,-6070,-6070,-6067,-6065,-6064,-6063,-6063,-6063,-6056,-6055,-6055,-6052,-6051,-6050,-6049,-6048,-6046,-6045,-6045,-6045,-6042,-6042,-6040,-6037,-6036,-6033,-6032,-6030,-6030,-6028,-6028,-6025,-6024,-6023,-6022,-6021,-6018,-6018,-6016,-6016,-6011,-6011,-6011,-6011,-6008,-6007,-6007,-6007,-6007,-6007,-6000,-6000,-5999,-5999,-5999,-5999,-5995,-5994,-5994,-5992,-5990,-5990,-5990,-5989,-5988,-5987,-5985,-5981,-5981,-5980,-5980,-5979,-5978,-5978,-5977,-5975,-5974,-5973,-5971,-5971,-5970,-5970,-5970,-5966,-5959,-5959,-5958,-5956,-5955,-5954,-5952,-5952,-5951,-5949,-5946,-5941,-5941,-5940,-5938,-5931,-5931,-5931,-5931,-5930,-5928,-5924,-5923,-5923,-5921,-5921,-5921,-5918,-5918,-5917,-5913,-5913,-5913,-5913,-5911,-5909,-5907,-5906,-5905,-5905,-5905,-5905,-5903,-5897,-5896,-5896,-5895,-5895,-5895,-5892,-5891,-5889,-5885,-5885,-5884,-5884,-5884,-5884,-5883,-5875,-5875,-5875,-5873,-5869,-5869,-5869,-5862,-5862,-5861,-5861,-5861,-5857,-5857,-5857,-5855,-5853,-5852,-5852,-5851,-5851,-5848,-5848,-5847,-5845,-5843,-5843,-5842,-5842,-5842,-5840,-5839,-5838,-5837,-5836,-5834,-5834,-5833,-5833,-5832,-5832,-5832,-5830,-5824,-5823,-5823,-5823,-5822,-5818,-5816,-5812,-5812,-5808,-5808,-5805,-5804,-5803,-5801,-5799,-5798,-5796,-5796,-5794,-5791,-5790,-5790,-5790,-5789,-5787,-5785,-5784,-5782,-5779,-5779,-5779,-5779,-5771,-5771,-5768,-5767,-5767,-5764,-5764,-5764,-5762,-5760,-5756,-5753,-5753,-5751,-5751,-5750,-5750,-5750,-5749,-5749,-5749,-5748,-5747,-5744,-5742,-5742,-5739,-5738,-5737,-5735,-5734,-5733,-5733,-5732,-5732,-5731,-5731,-5731,-5731,-5727,-5726,-5726,-5726,-5724,-5722,-5720,-5720,-5719,-5718,-5716,-5715,-5715,-5715,-5715,-5708,-5707,-5707,-5705,-5700,-5699,-5698,-5698,-5697,-5696,-5696,-5693,-5693,-5690,-5690,-5690,-5690,-5690,-5687,-5678,-5677,-5677,-5676,-5676,-5676,-5676,-5676,-5673,-5671,-5671,-5670,-5667,-5667,-5667,-5666,-5666,-5665,-5664,-5663,-5662,-5662,-5658,-5658,-5658,-5657,-5655,-5654,-5649,-5647,-5646,-5646,-5645,-5644,-5642,-5641,-5640,-5637,-5636,-5634,-5632,-5632,-5632,-5631,-5630,-5630,-5630,-5629,-5628,-5628,-5628,-5624,-5623,-5623,-5623,-5620,-5619,-5617,-5617,-5617,-5616,-5616,-5612,-5609,-5605,-5594,-5592,-5590,-5590,-5587,-5585,-5585,-5585,-5580,-5580,-5580,-5580,-5579,-5578,-5575,-5575,-5574,-5574,-5574,-5574,-5569,-5568,-5567,-5567,-5564,-5564,-5563,-5563,-5561,-5560,-5560,-5556,-5556,-5556,-5555,-5555,-5555,-5550,-5548,-5547,-5547,-5544,-5544,-5542,-5541,-5539,-5539,-5537,-5535,-5532,-5532,-5531,-5530,-5530,-5530,-5530,-5529,-5526,-5526,-5525,-5525,-5525,-5525,-5524,-5523,-5523,-5522,-5522,-5518,-5518,-5517,-5517,-5514,-5511,-5509,-5509,-5509,-5509,-5509,-5509,-5509,-5509,-5509,-5503,-5503,-5501,-5501,-5501,-5501,-5500,-5498,-5495,-5494,-5494,-5494,-5494,-5490,-5490,-5490,-5489,-5488,-5487,-5487,-5485,-5483,-5483,-5483,-5481,-5481,-5478,-5475,-5475,-5475,-5471,-5470,-5470,-5468,-5468,-5467,-5467,-5467,-5465,-5463,-5458,-5458,-5458,-5458,-5457,-5454,-5454,-5454,-5450,-5450,-5450,-5450,-5449,-5449,-5447,-5447,-5444,-5443,-5442,-5440,-5439,-5438,-5437,-5437,-5436,-5432,-5432,-5432,-5431,-5431,-5428,-5426,-5426,-5426,-5424,-5420,-5419,-5419,-5418,-5412,-5410,-5410,-5404,-5404,-5403,-5403,-5402,-5400,-5399,-5399,-5395,-5395,-5394,-5394,-5393,-5392,-5392,-5390,-5390,-5390,-5390,-5387,-5386,-5382,-5382,-5382,-5382,-5380,-5380,-5376,-5376,-5376,-5375,-5375,-5375,-5374,-5373,-5373,-5372,-5372,-5371,-5369,-5369,-5369,-5363,-5363,-5363,-5363,-5359,-5359,-5359,-5359,-5359,-5359,-5359,-5357,-5357,-5356,-5352,-5351,-5351,-5351,-5348,-5348,-5348,-5345,-5345,-5344,-5344,-5344,-5344,-5344,-5344,-5344,-5344,-5344,-5344,-5340,-5340,-5338,-5338,-5337,-5337,-5337,-5337,-5335,-5334,-5334,-5334,-5331,-5331,-5330,-5329,-5327,-5325,-5325,-5321,-5321,-5321,-5318,-5318,-5318,-5318,-5316,-5316,-5315,-5315,-5309,-5306,-5305,-5304,-5303,-5302,-5302,-5302,-5302,-5301,-5301,-5301,-5301,-5300,-5298,-5297,-5296,-5294,-5292,-5292,-5292,-5292,-5292,-5291,-5289,-5289,-5288,-5287,-5285,-5284,-5283,-5282,-5281,-5281,-5280,-5280,-5280,-5280,-5280,-5280,-5278,-5273,-5266,-5266,-5262,-5261,-5261,-5259,-5259,-5258,-5258,-5256,-5254,-5254,-5253,-5253,-5249,-5249,-5249,-5248,-5248,-5248,-5245,-5244,-5243,-5241,-5240,-5239,-5239,-5239,-5237,-5237,-5235,-5234,-5234,-5232,-5232,-5232,-5232,-5232,-5231,-5231,-5228,-5228,-5228,-5228,-5228,-5226,-5222,-5219,-5219,-5217,-5212,-5211,-5211,-5211,-5211,-5209,-5207,-5206,-5206,-5205,-5205,-5205,-5205,-5205,-5205,-5203,-5203,-5202,-5201,-5201,-5201,-5198,-5197,-5196,-5196,-5196,-5196,-5191,-5191,-5191,-5191,-5190,-5189,-5189,-5189,-5189,-5189,-5187,-5187,-5186,-5186,-5186,-5186,-5184,-5183,-5182,-5181,-5179,-5177,-5169,-5168,-5166,-5165,-5165,-5162,-5161,-5158,-5157,-5157,-5156,-5156,-5153,-5153,-5153,-5152,-5152,-5151,-5151,-5149,-5148,-5148,-5147,-5145,-5144,-5140,-5138,-5137,-5137,-5136,-5135,-5135,-5135,-5135,-5135,-5133,-5133,-5132,-5128,-5128,-5127,-5127,-5126,-5126,-5124,-5123,-5122,-5122,-5121,-5120,-5120,-5120,-5120,-5120,-5119,-5116,-5116,-5116,-5114,-5114,-5114,-5113,-5113,-5112,-5111,-5107,-5105,-5105,-5105,-5103,-5103,-5103,-5102,-5102,-5102,-5102,-5100,-5098,-5096,-5096,-5096,-5090,-5089,-5089,-5088,-5086,-5083,-5083,-5081,-5081,-5079,-5078,-5078,-5078,-5078,-5077,-5073,-5072,-5072,-5069,-5067,-5067,-5065,-5065,-5064,-5064,-5063,-5063,-5063,-5062,-5061,-5060,-5060,-5059,-5059,-5059,-5057,-5057,-5055,-5053,-5053,-5052,-5047,-5045,-5044,-5044,-5044,-5043,-5043,-5043,-5043,-5043,-5043,-5040,-5040,-5040,-5040,-5038,-5037,-5036,-5036,-5036,-5033,-5031,-5030,-5030,-5029,-5029,-5026,-5025,-5023,-5021,-5021,-5020,-5018,-5018,-5018,-5018,-5014,-5011,-5010,-5004,-5004,-5004,-5001,-5001,-5001,-5001,-5001,-5000,-5000,-5000,-5000,-5000,-5000,-4997,-4996,-4995,-4995,-4993,-4993,-4991,-4989,-4985,-4982,-4977,-4975,-4972,-4968,-4965,-4965,-4964,-4961,-4960,-4957,-4957,-4954,-4952,-4952,-4952,-4951,-4951,-4947,-4947,-4946,-4946,-4943,-4943,-4941,-4941,-4938,-4936,-4935,-4935,-4935,-4934,-4934,-4934,-4934,-4933,-4932,-4932,-4931,-4928,-4926,-4926,-4923,-4921,-4921,-4920,-4920,-4917,-4917,-4917,-4915,-4912,-4911,-4911,-4910,-4907,-4905,-4902,-4900,-4897,-4895,-4895,-4895,-4893,-4889,-4888,-4885,-4884,-4884,-4881,-4878,-4878,-4876,-4876,-4874,-4872,-4872,-4872,-4872,-4872,-4871,-4867,-4867,-4867,-4867,-4863,-4863,-4861,-4860,-4859,-4859,-4857,-4857,-4856,-4856,-4855,-4850,-4848,-4848,-4846,-4845,-4845,-4845,-4845,-4845,-4845,-4837,-4836,-4836,-4836,-4835,-4833,-4831,-4830,-4827,-4825,-4825,-4825,-4822,-4822,-4820,-4819,-4819,-4819,-4819,-4815,-4815,-4815,-4815,-4815,-4815,-4813,-4812,-4811,-4810,-4810,-4810,-4808,-4808,-4808,-4807,-4807,-4807,-4807,-4806,-4804,-4802,-4802,-4801,-4801,-4801,-4800,-4800,-4799,-4799,-4798,-4794,-4792,-4792,-4791,-4790,-4790,-4785,-4785,-4784,-4784,-4784,-4781,-4781,-4780,-4779,-4779,-4778,-4777,-4776,-4776,-4770,-4770,-4770,-4768,-4765,-4765,-4765,-4763,-4763,-4763,-4762,-4760,-4759,-4759,-4759,-4757,-4755,-4755,-4755,-4755,-4753,-4753,-4752,-4749,-4746,-4744,-4744,-4742,-4741,-4740,-4740,-4738,-4738,-4738,-4737,-4737,-4737,-4736,-4736,-4734,-4733,-4729,-4726,-4726,-4724,-4724,-4724,-4724,-4724,-4717,-4717,-4714,-4713,-4711,-4711,-4709,-4704,-4703,-4703,-4701,-4698,-4698,-4696,-4694,-4693,-4690,-4690,-4688,-4686,-4686,-4686,-4685,-4685,-4685,-4683,-4682,-4680,-4680,-4679,-4679,-4679,-4679,-4672,-4672,-4672,-4670,-4667,-4666,-4664,-4662,-4656,-4656,-4652,-4652,-4650,-4650,-4649,-4649,-4649,-4648,-4643,-4643,-4641,-4640,-4639,-4639,-4639,-4639,-4635,-4635,-4633,-4633,-4633,-4633,-4621,-4621,-4620,-4620,-4620,-4620,-4619,-4619,-4617,-4615,-4615,-4613,-4613,-4613,-4613,-4613,-4613,-4613,-4612,-4612,-4607,-4607,-4605,-4604,-4604,-4601,-4601,-4601,-4600,-4600,-4599,-4597,-4596,-4596,-4594,-4593,-4593,-4593,-4591,-4591,-4591,-4591,-4587,-4587,-4587,-4585,-4583,-4582,-4582,-4580,-4580,-4578,-4573,-4572,-4569,-4567,-4567,-4567,-4567,-4566,-4565,-4564,-4564,-4564,-4563,-4563,-4563,-4561,-4560,-4557,-4557,-4555,-4553,-4553,-4553,-4552,-4551,-4548,-4545,-4543,-4543,-4543,-4543,-4543,-4539,-4539,-4538,-4537,-4530,-4530,-4529,-4528,-4528,-4525,-4524,-4522,-4520,-4520,-4520,-4519,-4519,-4517,-4517,-4516,-4515,-4515,-4512,-4512,-4512,-4511,-4510,-4508,-4508,-4508,-4508,-4508,-4508,-4507,-4505,-4505,-4504,-4504,-4504,-4503,-4501,-4501,-4501,-4498,-4497,-4495,-4494,-4493,-4493,-4491,-4491,-4491,-4490,-4490,-4490,-4487,-4485,-4485,-4485,-4485,-4485,-4485,-4485,-4485,-4485,-4485,-4483,-4483,-4483,-4480,-4479,-4478,-4477,-4477,-4474,-4474,-4473,-4472,-4470,-4470,-4470,-4470,-4467,-4467,-4466,-4466,-4464,-4460,-4459,-4459,-4457,-4456,-4456,-4453,-4451,-4451,-4450,-4450,-4450,-4449,-4447,-4447,-4447,-4446,-4446,-4444,-4442,-4438,-4438,-4438,-4438,-4436,-4435,-4435,-4435,-4428,-4424,-4423,-4422,-4421,-4420,-4417,-4416,-4414,-4414,-4414,-4410,-4410,-4409,-4409,-4409,-4407,-4407,-4407,-4406,-4401,-4399,-4399,-4397,-4397,-4393,-4393,-4391,-4390,-4390,-4388,-4388,-4387,-4386,-4386,-4386,-4383,-4383,-4379,-4378,-4378,-4377,-4376,-4375,-4375,-4375,-4374,-4374,-4373,-4372,-4371,-4370,-4370,-4369,-4369,-4363,-4363,-4363,-4363,-4363,-4363,-4361,-4358,-4358,-4357,-4357,-4357,-4354,-4350,-4348,-4347,-4345,-4345,-4345,-4344,-4344,-4342,-4342,-4341,-4341,-4341,-4339,-4339,-4330,-4326,-4326,-4326,-4325,-4325,-4322,-4322,-4322,-4322,-4321,-4320,-4319,-4319,-4319,-4319,-4318,-4315,-4315,-4314,-4311,-4311,-4309,-4309,-4305,-4304,-4301,-4300,-4300,-4300,-4300,-4300,-4297,-4297,-4291,-4290,-4288,-4288,-4287,-4287,-4286,-4285,-4284,-4284,-4282,-4282,-4282,-4281,-4280,-4279,-4277,-4277,-4277,-4277,-4277,-4277,-4275,-4274,-4274,-4274,-4270,-4270,-4266,-4266,-4266,-4266,-4266,-4266,-4263,-4263,-4263,-4262,-4261,-4260,-4260,-4258,-4256,-4256,-4255,-4249,-4248,-4247,-4247,-4247,-4247,-4247,-4246,-4245,-4244,-4244,-4243,-4243,-4243,-4243,-4243,-4243,-4242,-4241,-4241,-4240,-4239,-4239,-4239,-4239,-4238,-4238,-4238,-4236,-4235,-4233,-4233,-4233,-4230,-4228,-4228,-4227,-4227,-4224,-4223,-4219,-4219,-4218,-4217,-4215,-4215,-4215,-4214,-4214,-4214,-4213,-4212,-4212,-4212,-4211,-4208,-4207,-4207,-4207,-4206,-4204,-4203,-4202,-4200,-4200,-4200,-4200,-4199,-4199,-4199,-4199,-4199,-4198,-4193,-4191,-4187,-4187,-4186,-4182,-4182,-4182,-4182,-4180,-4179,-4179,-4171,-4171,-4171,-4169,-4166,-4166,-4165,-4164,-4163,-4163,-4162,-4161,-4161,-4160,-4160,-4159,-4156,-4156,-4154,-4153,-4152,-4152,-4152,-4149,-4147,-4147,-4145,-4144,-4143,-4143,-4143,-4140,-4140,-4140,-4139,-4138,-4136,-4136,-4134,-4133,-4133,-4133,-4131,-4128,-4126,-4126,-4126,-4125,-4125,-4123,-4122,-4121,-4119,-4118,-4118,-4116,-4114,-4113,-4110,-4108,-4106,-4106,-4106,-4106,-4106,-4104,-4104,-4103,-4103,-4102,-4102,-4102,-4102,-4102,-4099,-4099,-4099,-4095,-4094,-4094,-4094,-4094,-4092,-4091,-4091,-4090,-4089,-4077,-4075,-4075,-4075,-4075,-4073,-4073,-4073,-4073,-4068,-4068,-4068,-4068,-4068,-4067,-4066,-4065,-4065,-4064,-4061,-4060,-4059,-4059,-4056,-4055,-4054,-4053,-4049,-4048,-4044,-4042,-4042,-4037,-4037,-4034,-4034,-4034,-4033,-4030,-4030,-4030,-4029,-4029,-4026,-4026,-4026,-4024,-4021,-4021,-4016,-4015,-4015,-4011,-4011,-4011,-4011,-4010,-4009,-4009,-4009,-4006,-4004,-4003,-4003,-3994,-3990,-3990,-3987,-3987,-3987,-3985,-3985,-3983,-3982,-3981,-3981,-3979,-3978,-3978,-3976,-3975,-3975,-3974,-3973,-3973,-3973,-3971,-3970,-3970,-3970,-3970,-3970,-3970,-3970,-3970,-3970,-3970,-3968,-3968,-3968,-3967,-3967,-3966,-3965,-3965,-3965,-3962,-3962,-3962,-3961,-3961,-3961,-3960,-3958,-3955,-3952,-3952,-3951,-3951,-3951,-3950,-3950,-3950,-3946,-3943,-3943,-3941,-3939,-3939,-3939,-3939,-3936,-3932,-3932,-3932,-3932,-3932,-3932,-3932,-3932,-3932,-3928,-3927,-3926,-3926,-3926,-3926,-3925,-3924,-3923,-3922,-3921,-3921,-3920,-3920,-3917,-3916,-3915,-3915,-3915,-3912,-3911,-3910,-3909,-3906,-3904,-3901,-3899,-3899,-3899,-3899,-3896,-3894,-3894,-3893,-3893,-3892,-3891,-3890,-3890,-3887,-3886,-3886,-3883,-3882,-3879,-3878,-3878,-3878,-3877,-3877,-3874,-3871,-3871,-3869,-3869,-3869,-3866,-3865,-3861,-3860,-3860,-3859,-3859,-3857,-3857,-3857,-3857,-3856,-3855,-3855,-3854,-3854,-3850,-3850,-3850,-3849,-3848,-3847,-3847,-3846,-3843,-3843,-3843,-3842,-3841,-3841,-3841,-3841,-3840,-3839,-3839,-3839,-3839,-3839,-3839,-3839,-3839,-3834,-3831,-3830,-3830,-3830,-3830,-3828,-3826,-3826,-3823,-3823,-3823,-3822,-3822,-3819,-3817,-3816,-3816,-3816,-3814,-3814,-3814,-3812,-3810,-3809,-3809,-3806,-3806,-3805,-3805,-3804,-3804,-3804,-3804,-3804,-3802,-3801,-3800,-3798,-3796,-3796,-3795,-3793,-3793,-3793,-3789,-3787,-3787,-3787,-3787,-3787,-3787,-3787,-3785,-3785,-3785,-3785,-3784,-3784,-3783,-3783,-3778,-3777,-3776,-3776,-3773,-3773,-3771,-3771,-3771,-3771,-3771,-3765,-3764,-3762,-3762,-3759,-3759,-3758,-3749,-3745,-3745,-3743,-3743,-3743,-3741,-3741,-3736,-3736,-3736,-3736,-3735,-3735,-3730,-3729,-3728,-3728,-3727,-3726,-3725,-3724,-3724,-3722,-3722,-3720,-3720,-3719,-3711,-3710,-3710,-3709,-3703,-3701,-3701,-3701,-3699,-3699,-3697,-3696,-3696,-3696,-3696,-3695,-3694,-3693,-3693,-3692,-3692,-3688,-3688,-3686,-3685,-3685,-3685,-3685,-3684,-3683,-3683,-3678,-3678,-3677,-3677,-3677,-3677,-3676,-3676,-3675,-3674,-3674,-3671,-3670,-3670,-3670,-3670,-3668,-3666,-3666,-3666,-3666,-3665,-3665,-3664,-3664,-3664,-3663,-3663,-3663,-3663,-3663,-3661,-3657,-3657,-3654,-3654,-3654,-3654,-3653,-3652,-3652,-3651,-3651,-3651,-3651,-3647,-3647,-3644,-3644,-3643,-3643,-3640,-3638,-3637,-3637,-3634,-3632,-3632,-3631,-3631,-3631,-3630,-3630,-3630,-3630,-3629,-3627,-3627,-3627,-3625,-3622,-3622,-3622,-3620,-3614,-3611,-3609,-3609,-3608,-3608,-3608,-3608,-3607,-3603,-3603,-3603,-3601,-3600,-3597,-3597,-3595,-3595,-3595,-3594,-3594,-3594,-3594,-3590,-3587,-3587,-3587,-3585,-3584,-3584,-3583,-3582,-3582,-3582,-3582,-3581,-3581,-3579,-3579,-3578,-3577,-3577,-3576,-3576,-3574,-3572,-3572,-3569,-3569,-3569,-3569,-3568,-3568,-3567,-3566,-3565,-3565,-3563,-3563,-3563,-3562,-3562,-3562,-3556,-3555,-3553,-3553,-3553,-3553,-3553,-3551,-3551,-3551,-3551,-3548,-3548,-3548,-3548,-3547,-3547,-3547,-3547,-3546,-3546,-3544,-3544,-3544,-3538,-3536,-3536,-3536,-3536,-3535,-3535,-3534,-3534,-3533,-3531,-3531,-3531,-3531,-3530,-3530,-3527,-3527,-3526,-3525,-3525,-3519,-3519,-3518,-3515,-3513,-3513,-3512,-3512,-3512,-3512,-3511,-3511,-3510,-3510,-3509,-3508,-3508,-3507,-3507,-3507,-3507,-3507,-3504,-3501,-3499,-3498,-3498,-3496,-3495,-3495,-3495,-3495,-3490,-3489,-3489,-3486,-3484,-3484,-3484,-3482,-3482,-3482,-3480,-3478,-3478,-3473,-3470,-3469,-3465,-3465,-3464,-3461,-3461,-3459,-3459,-3459,-3459,-3458,-3458,-3458,-3458,-3455,-3455,-3454,-3454,-3454,-3453,-3453,-3453,-3452,-3450,-3450,-3449,-3449,-3449,-3448,-3445,-3445,-3445,-3444,-3442,-3439,-3439,-3439,-3439,-3438,-3438,-3438,-3438,-3438,-3437,-3436,-3436,-3435,-3435,-3432,-3432,-3431,-3431,-3431,-3431,-3430,-3429,-3426,-3426,-3426,-3426,-3425,-3424,-3423,-3423,-3423,-3421,-3420,-3419,-3419,-3419,-3417,-3417,-3417,-3417,-3411,-3409,-3406,-3406,-3403,-3403,-3400,-3400,-3399,-3399,-3399,-3398,-3398,-3398,-3398,-3398,-3398,-3396,-3396,-3396,-3395,-3394,-3394,-3393,-3393,-3393,-3391,-3391,-3390,-3390,-3389,-3389,-3389,-3387,-3387,-3387,-3386,-3385,-3383,-3382,-3382,-3379,-3379,-3379,-3378,-3377,-3377,-3377,-3376,-3376,-3375,-3375,-3375,-3372,-3372,-3372,-3372,-3372,-3372,-3371,-3370,-3369,-3369,-3369,-3369,-3365,-3364,-3362,-3362,-3359,-3358,-3357,-3356,-3355,-3354,-3353,-3352,-3350,-3350,-3348,-3345,-3345,-3345,-3343,-3343,-3342,-3341,-3341,-3337,-3337,-3337,-3335,-3335,-3335,-3335,-3335,-3333,-3333,-3331,-3331,-3331,-3330,-3330,-3330,-3328,-3328,-3328,-3328,-3326,-3326,-3325,-3325,-3325,-3324,-3323,-3323,-3321,-3319,-3319,-3319,-3318,-3316,-3316,-3316,-3316,-3316,-3314,-3314,-3310,-3309,-3309,-3309,-3309,-3309,-3309,-3309,-3307,-3305,-3305,-3305,-3305,-3305,-3305,-3303,-3302,-3302,-3302,-3302,-3300,-3294,-3293,-3293,-3293,-3291,-3290,-3289,-3287,-3286,-3286,-3286,-3286,-3286,-3282,-3276,-3276,-3276,-3273,-3272,-3270,-3270,-3270,-3268,-3267,-3266,-3266,-3266,-3266,-3265,-3264,-3263,-3260,-3260,-3257,-3257,-3256,-3255,-3255,-3250,-3247,-3246,-3245,-3245,-3245,-3245,-3245,-3245,-3245,-3245,-3244,-3242,-3242,-3241,-3240,-3238,-3237,-3237,-3235,-3235,-3235,-3234,-3233,-3231,-3231,-3231,-3228,-3228,-3225,-3223,-3222,-3222,-3222,-3221,-3221,-3219,-3217,-3216,-3216,-3215,-3212,-3212,-3209,-3208,-3208,-3208,-3206,-3203,-3203,-3202,-3202,-3202,-3201,-3201,-3201,-3196,-3196,-3196,-3196,-3196,-3194,-3194,-3192,-3192,-3190,-3190,-3188,-3188,-3188,-3186,-3186,-3185,-3185,-3184,-3183,-3183,-3183,-3180,-3179,-3179,-3179,-3179,-3175,-3175,-3175,-3174,-3173,-3166,-3166,-3166,-3165,-3165,-3165,-3164,-3162,-3154,-3154,-3153,-3149,-3149,-3149,-3148,-3146,-3146,-3146,-3146,-3146,-3146,-3146,-3145,-3142,-3139,-3139,-3139,-3139,-3139,-3138,-3138,-3136,-3136,-3136,-3136,-3135,-3134,-3134,-3134,-3134,-3133,-3133,-3130,-3130,-3130,-3128,-3125,-3121,-3121,-3119,-3118,-3116,-3114,-3114,-3112,-3109,-3109,-3106,-3104,-3103,-3099,-3098,-3098,-3097,-3097,-3097,-3097,-3096,-3096,-3096,-3095,-3095,-3093,-3093,-3092,-3091,-3091,-3088,-3088,-3088,-3088,-3088,-3087,-3087,-3087,-3087,-3087,-3087,-3087,-3087,-3086,-3083,-3083,-3078,-3077,-3072,-3070,-3068,-3068,-3068,-3068,-3068,-3067,-3064,-3064,-3063,-3063,-3062,-3062,-3062,-3060,-3059,-3059,-3059,-3058,-3058,-3058,-3058,-3056,-3056,-3056,-3051,-3050,-3050,-3050,-3050,-3050,-3050,-3050,-3049,-3049,-3048,-3047,-3046,-3046,-3046,-3046,-3046,-3046,-3046,-3046,-3046,-3046,-3045,-3044,-3044,-3041,-3041,-3041,-3041,-3041,-3041,-3039,-3037,-3033,-3033,-3031,-3031,-3029,-3027,-3025,-3025,-3025,-3025,-3025,-3023,-3022,-3018,-3017,-3017,-3015,-3015,-3011,-3009,-3008,-3007,-3007,-3006,-3005,-3005,-3005,-3004,-3003,-3003,-3003,-3003,-3003,-3003,-3002,-3001,-3001,-3000,-3000,-3000,-2999,-2998,-2998,-2998,-2997,-2995,-2995,-2995,-2995,-2995,-2995,-2995,-2995,-2995,-2995,-2994,-2993,-2993,-2993,-2993,-2990,-2990,-2990,-2989,-2989,-2988,-2988,-2988,-2986,-2985,-2984,-2984,-2984,-2984,-2984,-2984,-2983,-2983,-2983,-2983,-2983,-2981,-2981,-2981,-2981,-2980,-2979,-2979,-2979,-2977,-2976,-2976,-2974,-2973,-2973,-2973,-2971,-2970,-2970,-2970,-2968,-2968,-2963,-2963,-2963,-2962,-2962,-2962,-2958,-2958,-2958,-2958,-2958,-2958,-2957,-2957,-2957,-2956,-2953,-2953,-2952,-2952,-2952,-2952,-2952,-2952,-2951,-2951,-2951,-2951,-2951,-2950,-2949,-2947,-2947,-2947,-2945,-2944,-2944,-2944,-2944,-2942,-2939,-2939,-2938,-2938,-2937,-2937,-2933,-2932,-2932,-2931,-2931,-2931,-2931,-2930,-2930,-2929,-2929,-2927,-2925,-2925,-2924,-2923,-2923,-2923,-2920,-2920,-2919,-2918,-2918,-2916,-2916,-2911,-2911,-2911,-2911,-2911,-2911,-2908,-2905,-2905,-2901,-2900,-2900,-2899,-2899,-2899,-2898,-2898,-2897,-2890,-2888,-2884,-2883,-2883,-2881,-2880,-2879,-2879,-2879,-2879,-2879,-2879,-2879,-2878,-2878,-2876,-2876,-2876,-2874,-2870,-2870,-2870,-2870,-2870,-2870,-2865,-2865,-2864,-2864,-2864,-2864,-2864,-2863,-2863,-2863,-2862,-2860,-2860,-2859,-2858,-2858,-2858,-2858,-2858,-2858,-2858,-2858,-2858,-2858,-2858,-2858,-2857,-2856,-2853,-2853,-2851,-2850,-2850,-2850,-2840,-2839,-2835,-2835,-2835,-2835,-2834,-2832,-2832,-2831,-2830,-2829,-2828,-2828,-2828,-2828,-2827,-2827,-2827,-2827,-2827,-2825,-2824,-2824,-2822,-2818,-2817,-2816,-2815,-2815,-2814,-2813,-2812,-2811,-2811,-2807,-2807,-2806,-2806,-2804,-2804,-2804,-2804,-2799,-2799,-2799,-2796,-2796,-2796,-2796,-2795,-2795,-2795,-2795,-2795,-2795,-2794,-2793,-2791,-2791,-2791,-2791,-2791,-2790,-2789,-2788,-2788,-2788,-2785,-2785,-2785,-2785,-2784,-2783,-2783,-2783,-2782,-2782,-2781,-2780,-2779,-2776,-2775,-2775,-2774,-2774,-2773,-2773,-2773,-2773,-2770,-2770,-2770,-2770,-2770,-2768,-2768,-2766,-2760,-2760,-2760,-2755,-2754,-2754,-2754,-2754,-2754,-2753,-2751,-2748,-2748,-2748,-2742,-2742,-2742,-2741,-2741,-2741,-2734,-2734,-2734,-2733,-2731,-2731,-2731,-2730,-2730,-2730,-2730,-2730,-2730,-2726,-2725,-2722,-2721,-2721,-2720,-2718,-2718,-2718,-2716,-2712,-2712,-2711,-2710,-2709,-2707,-2705,-2703,-2703,-2702,-2702,-2700,-2700,-2698,-2698,-2697,-2697,-2697,-2697,-2697,-2695,-2692,-2691,-2691,-2688,-2687,-2687,-2685,-2685,-2685,-2682,-2682,-2682,-2682,-2681,-2679,-2679,-2677,-2677,-2677,-2676,-2676,-2675,-2675,-2674,-2673,-2673,-2673,-2673,-2672,-2672,-2672,-2672,-2671,-2670,-2670,-2670,-2670,-2669,-2668,-2667,-2666,-2666,-2666,-2665,-2665,-2664,-2663,-2663,-2663,-2662,-2662,-2661,-2661,-2660,-2660,-2660,-2659,-2656,-2656,-2656,-2656,-2656,-2655,-2653,-2650,-2650,-2648,-2648,-2647,-2647,-2647,-2647,-2647,-2646,-2645,-2642,-2641,-2641,-2641,-2641,-2641,-2641,-2641,-2641,-2639,-2638,-2638,-2638,-2637,-2637,-2636,-2633,-2632,-2632,-2631,-2630,-2630,-2630,-2629,-2629,-2629,-2629,-2627,-2627,-2626,-2626,-2623,-2623,-2619,-2619,-2614,-2614,-2612,-2612,-2612,-2612,-2611,-2609,-2608,-2608,-2608,-2608,-2608,-2607,-2607,-2605,-2603,-2602,-2602,-2602,-2601,-2601,-2601,-2601,-2601,-2598,-2598,-2598,-2598,-2595,-2595,-2595,-2595,-2590,-2590,-2590,-2588,-2588,-2586,-2583,-2577,-2577,-2573,-2573,-2572,-2571,-2571,-2571,-2570,-2568,-2566,-2566,-2566,-2565,-2565,-2565,-2564,-2564,-2561,-2561,-2558,-2558,-2557,-2554,-2554,-2554,-2554,-2554,-2553,-2553,-2549,-2548,-2548,-2546,-2546,-2545,-2545,-2545,-2545,-2545,-2541,-2540,-2539,-2539,-2538,-2538,-2537,-2537,-2536,-2536,-2536,-2536,-2535,-2535,-2535,-2535,-2534,-2534,-2534,-2533,-2532,-2531,-2531,-2528,-2528,-2527,-2521,-2520,-2520,-2520,-2519,-2519,-2518,-2518,-2518,-2518,-2516,-2514,-2514,-2512,-2512,-2512,-2512,-2512,-2511,-2510,-2509,-2509,-2509,-2509,-2509,-2508,-2508,-2508,-2508,-2503,-2503,-2503,-2503,-2503,-2498,-2498,-2498,-2498,-2498,-2497,-2497,-2497,-2497,-2497,-2493,-2493,-2493,-2493,-2493,-2493,-2491,-2491,-2491,-2491,-2491,-2490,-2490,-2489,-2488,-2486,-2486,-2486,-2486,-2485,-2484,-2484,-2484,-2484,-2484,-2480,-2475,-2473,-2470,-2467,-2466,-2466,-2465,-2465,-2465,-2465,-2465,-2464,-2463,-2461,-2461,-2460,-2460,-2460,-2456,-2456,-2455,-2455,-2455,-2455,-2455,-2454,-2454,-2453,-2451,-2450,-2445,-2445,-2445,-2445,-2444,-2443,-2442,-2442,-2442,-2441,-2439,-2439,-2439,-2432,-2432,-2431,-2429,-2429,-2428,-2428,-2428,-2427,-2426,-2426,-2426,-2426,-2426,-2425,-2423,-2423,-2421,-2421,-2419,-2419,-2418,-2418,-2418,-2413,-2413,-2412,-2412,-2410,-2409,-2408,-2406,-2404,-2404,-2404,-2403,-2401,-2401,-2401,-2401,-2397,-2396,-2396,-2396,-2396,-2395,-2395,-2394,-2394,-2394,-2394,-2394,-2394,-2394,-2393,-2392,-2392,-2392,-2392,-2392,-2392,-2392,-2392,-2392,-2392,-2392,-2387,-2383,-2380,-2380,-2379,-2376,-2374,-2372,-2372,-2371,-2371,-2371,-2370,-2369,-2367,-2367,-2367,-2366,-2366,-2366,-2366,-2363,-2363,-2363,-2363,-2363,-2361,-2359,-2357,-2356,-2356,-2355,-2354,-2352,-2350,-2350,-2348,-2348,-2347,-2347,-2346,-2346,-2346,-2346,-2346,-2346,-2345,-2344,-2344,-2344,-2344,-2344,-2344,-2344,-2344,-2344,-2344,-2344,-2344,-2344,-2344,-2344,-2342,-2341,-2339,-2338,-2333,-2333,-2333,-2332,-2332,-2332,-2332,-2331,-2330,-2328,-2327,-2327,-2327,-2327,-2327,-2326,-2326,-2324,-2324,-2323,-2323,-2321,-2321,-2320,-2319,-2319,-2319,-2319,-2319,-2319,-2318,-2318,-2318,-2318,-2317,-2317,-2317,-2314,-2314,-2314,-2314,-2314,-2312,-2311,-2311,-2310,-2309,-2309,-2309,-2308,-2304,-2303,-2303,-2303,-2303,-2303,-2303,-2303,-2302,-2302,-2297,-2295,-2295,-2293,-2293,-2293,-2292,-2292,-2291,-2291,-2291,-2291,-2291,-2290,-2290,-2290,-2290,-2288,-2288,-2284,-2282,-2282,-2282,-2282,-2282,-2282,-2280,-2279,-2279,-2278,-2278,-2277,-2277,-2277,-2277,-2275,-2274,-2274,-2274,-2271,-2270,-2270,-2269,-2269,-2269,-2269,-2269,-2269,-2269,-2269,-2269,-2267,-2267,-2267,-2264,-2264,-2263,-2263,-2262,-2262,-2262,-2262,-2262,-2261,-2261,-2258,-2256,-2254,-2254,-2254,-2254,-2254,-2254,-2253,-2253,-2253,-2253,-2250,-2250,-2249,-2249,-2248,-2248,-2248,-2247,-2246,-2246,-2245,-2245,-2243,-2243,-2242,-2242,-2242,-2242,-2240,-2240,-2239,-2236,-2236,-2229,-2229,-2229,-2227,-2227,-2226,-2223,-2221,-2221,-2216,-2216,-2215,-2215,-2214,-2209,-2208,-2204,-2204,-2203,-2202,-2202,-2201,-2201,-2201,-2200,-2196,-2196,-2196,-2196,-2196,-2195,-2195,-2194,-2194,-2194,-2194,-2194,-2192,-2189,-2188,-2185,-2185,-2183,-2182,-2182,-2182,-2182,-2181,-2180,-2179,-2175,-2175,-2175,-2175,-2175,-2175,-2175,-2172,-2172,-2172,-2172,-2171,-2171,-2170,-2168,-2165,-2165,-2165,-2162,-2162,-2162,-2158,-2158,-2158,-2158,-2157,-2157,-2157,-2156,-2156,-2153,-2153,-2152,-2151,-2151,-2149,-2148,-2144,-2144,-2143,-2142,-2141,-2141,-2140,-2138,-2138,-2138,-2138,-2137,-2137,-2136,-2131,-2131,-2131,-2131,-2131,-2129,-2129,-2129,-2128,-2128,-2128,-2128,-2128,-2128,-2128,-2127,-2126,-2126,-2126,-2126,-2126,-2126,-2126,-2124,-2122,-2122,-2122,-2122,-2121,-2121,-2120,-2120,-2118,-2118,-2115,-2115,-2114,-2111,-2111,-2111,-2110,-2109,-2109,-2109,-2108,-2106,-2105,-2104,-2104,-2103,-2101,-2101,-2101,-2101,-2101,-2101,-2101,-2099,-2099,-2099,-2099,-2097,-2097,-2097,-2095,-2095,-2094,-2093,-2092,-2091,-2090,-2089,-2089,-2088,-2088,-2088,-2084,-2083,-2082,-2077,-2070,-2070,-2070,-2067,-2064,-2064,-2062,-2062,-2061,-2061,-2061,-2061,-2060,-2060,-2060,-2059,-2059,-2058,-2058,-2058,-2058,-2058,-2058,-2058,-2057,-2057,-2057,-2054,-2053,-2053,-2053,-2053,-2053,-2053,-2053,-2049,-2048,-2048,-2047,-2045,-2045,-2043,-2043,-2043,-2043,-2043,-2043,-2042,-2041,-2040,-2040,-2040,-2040,-2040,-2038,-2035,-2033,-2033,-2033,-2033,-2033,-2032,-2031,-2030,-2028,-2028,-2028,-2026,-2023,-2018,-2016,-2016,-2016,-2016,-2016,-2016,-2016,-2016,-2015,-2015,-2015,-2015,-2014,-2014,-2014,-2014,-2013,-2011,-2009,-2007,-2007,-2004,-2004,-2004,-2004,-2004,-2004,-2003,-2003,-2003,-2003,-2003,-2001,-2001,-1998,-1997,-1997,-1996,-1995,-1995,-1995,-1995,-1995,-1994,-1990,-1990,-1990,-1987,-1987,-1987,-1984,-1982,-1981,-1981,-1980,-1980,-1978,-1978,-1978,-1978,-1976,-1976,-1976,-1976,-1976,-1975,-1975,-1973,-1973,-1973,-1971,-1971,-1971,-1971,-1971,-1968,-1968,-1968,-1968,-1967,-1967,-1967,-1967,-1966,-1966,-1964,-1964,-1964,-1964,-1964,-1964,-1964,-1964,-1959,-1958,-1958,-1955,-1954,-1953,-1948,-1948,-1948,-1944,-1943,-1943,-1942,-1941,-1941,-1940,-1940,-1938,-1938,-1936,-1936,-1934,-1932,-1932,-1931,-1931,-1929,-1925,-1923,-1923,-1922,-1921,-1921,-1921,-1921,-1921,-1919,-1917,-1917,-1917,-1914,-1914,-1914,-1914,-1914,-1914,-1913,-1911,-1910,-1910,-1909,-1908,-1907,-1905,-1903,-1901,-1901,-1899,-1898,-1896,-1896,-1896,-1896,-1896,-1896,-1896,-1895,-1893,-1893,-1893,-1893,-1889,-1889,-1889,-1889,-1889,-1889,-1885,-1883,-1883,-1883,-1883,-1883,-1883,-1883,-1882,-1882,-1882,-1882,-1879,-1879,-1875,-1874,-1874,-1872,-1872,-1871,-1871,-1870,-1870,-1869,-1868,-1867,-1866,-1866,-1866,-1866,-1865,-1865,-1865,-1863,-1863,-1859,-1858,-1858,-1858,-1857,-1856,-1856,-1855,-1854,-1854,-1849,-1849,-1849,-1847,-1845,-1845,-1845,-1843,-1843,-1843,-1843,-1842,-1841,-1841,-1837,-1835,-1833,-1833,-1833,-1833,-1833,-1832,-1832,-1832,-1831,-1830,-1830,-1829,-1824,-1824,-1823,-1822,-1822,-1822,-1820,-1815,-1814,-1813,-1813,-1813,-1813,-1810,-1810,-1810,-1808,-1808,-1808,-1808,-1807,-1806,-1804,-1804,-1804,-1804,-1803,-1803,-1803,-1802,-1802,-1802,-1802,-1802,-1799,-1799,-1798,-1795,-1795,-1793,-1791,-1791,-1789,-1789,-1788,-1788,-1787,-1787,-1786,-1786,-1785,-1785,-1783,-1783,-1782,-1782,-1781,-1780,-1780,-1780,-1779,-1778,-1778,-1778,-1777,-1774,-1774,-1768,-1768,-1768,-1768,-1768,-1764,-1764,-1763,-1762,-1762,-1762,-1761,-1761,-1755,-1753,-1751,-1750,-1750,-1749,-1749,-1748,-1748,-1748,-1748,-1748,-1748,-1748,-1748,-1748,-1748,-1748,-1746,-1745,-1745,-1743,-1743,-1743,-1742,-1742,-1741,-1741,-1740,-1740,-1740,-1740,-1740,-1732,-1732,-1731,-1727,-1727,-1725,-1725,-1725,-1724,-1724,-1722,-1722,-1720,-1720,-1718,-1718,-1718,-1718,-1718,-1718,-1715,-1715,-1710,-1710,-1710,-1710,-1708,-1707,-1707,-1707,-1700,-1700,-1699,-1699,-1698,-1698,-1698,-1698,-1698,-1698,-1698,-1698,-1698,-1698,-1698,-1698,-1698,-1698,-1698,-1697,-1695,-1694,-1693,-1693,-1693,-1692,-1691,-1690,-1687,-1686,-1686,-1684,-1682,-1682,-1682,-1682,-1681,-1681,-1681,-1680,-1679,-1679,-1679,-1679,-1679,-1679,-1679,-1679,-1679,-1679,-1679,-1679,-1678,-1678,-1678,-1677,-1677,-1677,-1677,-1677,-1677,-1677,-1672,-1671,-1671,-1670,-1670,-1670,-1669,-1669,-1669,-1667,-1667,-1667,-1667,-1667,-1666,-1664,-1664,-1664,-1663,-1663,-1663,-1659,-1655,-1655,-1654,-1654,-1654,-1652,-1652,-1650,-1647,-1647,-1646,-1646,-1646,-1645,-1645,-1644,-1643,-1642,-1642,-1642,-1640,-1640,-1640,-1640,-1640,-1639,-1639,-1639,-1638,-1638,-1638,-1637,-1637,-1637,-1636,-1636,-1636,-1636,-1636,-1636,-1636,-1633,-1632,-1631,-1631,-1631,-1629,-1629,-1629,-1628,-1628,-1627,-1626,-1626,-1626,-1626,-1626,-1623,-1623,-1622,-1621,-1620,-1620,-1620,-1619,-1619,-1619,-1618,-1617,-1617,-1617,-1617,-1616,-1615,-1615,-1615,-1609,-1606,-1605,-1604,-1604,-1604,-1604,-1603,-1603,-1603,-1603,-1601,-1600,-1600,-1598,-1598,-1598,-1598,-1598,-1598,-1598,-1598,-1598,-1594,-1593,-1590,-1589,-1589,-1588,-1587,-1587,-1587,-1583,-1583,-1581,-1579,-1577,-1575,-1574,-1570,-1570,-1568,-1568,-1568,-1568,-1568,-1568,-1565,-1563,-1562,-1562,-1562,-1562,-1562,-1561,-1561,-1560,-1560,-1560,-1560,-1559,-1559,-1557,-1557,-1556,-1556,-1556,-1555,-1555,-1555,-1555,-1554,-1554,-1554,-1553,-1553,-1553,-1553,-1552,-1552,-1552,-1547,-1547,-1547,-1547,-1547,-1546,-1546,-1546,-1546,-1546,-1546,-1546,-1546,-1544,-1544,-1544,-1544,-1541,-1541,-1541,-1540,-1540,-1540,-1540,-1540,-1539,-1539,-1539,-1538,-1538,-1535,-1533,-1532,-1531,-1531,-1531,-1531,-1530,-1530,-1529,-1529,-1529,-1529,-1529,-1528,-1528,-1525,-1525,-1525,-1525,-1525,-1524,-1524,-1524,-1524,-1524,-1521,-1520,-1519,-1519,-1517,-1514,-1511,-1511,-1510,-1510,-1509,-1509,-1509,-1509,-1509,-1508,-1508,-1507,-1507,-1507,-1506,-1505,-1503,-1503,-1503,-1502,-1502,-1502,-1502,-1502,-1499,-1497,-1497,-1495,-1494,-1494,-1494,-1494,-1494,-1494,-1494,-1494,-1492,-1492,-1491,-1491,-1491,-1490,-1490,-1490,-1489,-1489,-1486,-1485,-1485,-1484,-1484,-1484,-1483,-1480,-1480,-1480,-1479,-1479,-1477,-1477,-1476,-1476,-1476,-1476,-1476,-1476,-1475,-1475,-1475,-1475,-1474,-1471,-1470,-1469,-1469,-1469,-1468,-1465,-1465,-1464,-1461,-1461,-1457,-1454,-1454,-1449,-1449,-1449,-1446,-1443,-1441,-1441,-1441,-1441,-1441,-1441,-1438,-1438,-1438,-1438,-1436,-1436,-1436,-1436,-1435,-1435,-1433,-1433,-1433,-1433,-1433,-1432,-1432,-1432,-1432,-1429,-1429,-1428,-1428,-1427,-1427,-1427,-1427,-1427,-1427,-1427,-1425,-1423,-1422,-1422,-1421,-1421,-1421,-1416,-1416,-1413,-1413,-1413,-1413,-1413,-1413,-1411,-1411,-1411,-1411,-1411,-1411,-1411,-1411,-1411,-1410,-1410,-1410,-1409,-1409,-1409,-1408,-1406,-1405,-1405,-1405,-1405,-1405,-1405,-1405,-1402,-1402,-1401,-1399,-1399,-1399,-1399,-1397,-1395,-1395,-1394,-1394,-1394,-1394,-1394,-1394,-1393,-1392,-1391,-1391,-1390,-1390,-1390,-1389,-1388,-1384,-1383,-1380,-1379,-1379,-1379,-1377,-1376,-1376,-1373,-1373,-1372,-1372,-1372,-1372,-1370,-1370,-1370,-1370,-1370,-1367,-1366,-1363,-1363,-1363,-1359,-1358,-1358,-1357,-1357,-1356,-1356,-1356,-1356,-1356,-1356,-1356,-1356,-1356,-1356,-1354,-1354,-1354,-1354,-1354,-1354,-1354,-1354,-1352,-1352,-1352,-1351,-1350,-1350,-1346,-1346,-1346,-1343,-1343,-1343,-1340,-1339,-1338,-1336,-1336,-1336,-1336,-1336,-1335,-1333,-1333,-1332,-1329,-1327,-1327,-1327,-1327,-1326,-1323,-1323,-1323,-1322,-1322,-1322,-1319,-1317,-1317,-1317,-1316,-1316,-1315,-1314,-1314,-1314,-1314,-1314,-1314,-1313,-1312,-1312,-1312,-1312,-1312,-1311,-1311,-1310,-1310,-1309,-1309,-1308,-1307,-1307,-1307,-1307,-1307,-1307,-1306,-1306,-1306,-1306,-1306,-1306,-1305,-1305,-1305,-1305,-1305,-1303,-1303,-1303,-1303,-1303,-1303,-1301,-1301,-1301,-1301,-1301,-1301,-1301,-1300,-1300,-1299,-1299,-1299,-1299,-1299,-1299,-1299,-1299,-1299,-1298,-1298,-1297,-1295,-1294,-1294,-1294,-1294,-1294,-1292,-1292,-1292,-1291,-1291,-1291,-1291,-1287,-1287,-1287,-1287,-1287,-1287,-1286,-1286,-1286,-1286,-1281,-1280,-1279,-1279,-1278,-1278,-1277,-1277,-1276,-1275,-1275,-1275,-1275,-1273,-1267,-1267,-1266,-1264,-1260,-1260,-1260,-1260,-1259,-1259,-1259,-1259,-1259,-1259,-1259,-1257,-1257,-1256,-1254,-1254,-1254,-1254,-1252,-1252,-1251,-1247,-1247,-1246,-1246,-1245,-1244,-1244,-1243,-1243,-1242,-1242,-1240,-1240,-1240,-1239,-1237,-1237,-1237,-1237,-1236,-1236,-1235,-1235,-1235,-1235,-1234,-1234,-1234,-1234,-1234,-1234,-1234,-1233,-1233,-1232,-1232,-1232,-1232,-1232,-1231,-1231,-1230,-1226,-1224,-1224,-1223,-1223,-1223,-1219,-1219,-1219,-1219,-1218,-1217,-1217,-1215,-1215,-1215,-1214,-1214,-1213,-1212,-1212,-1212,-1212,-1212,-1210,-1210,-1210,-1210,-1210,-1208,-1208,-1208,-1207,-1203,-1203,-1203,-1201,-1200,-1200,-1200,-1200,-1199,-1199,-1199,-1199,-1194,-1194,-1194,-1194,-1193,-1192,-1192,-1192,-1191,-1191,-1191,-1191,-1191,-1191,-1191,-1191,-1191,-1191,-1191,-1188,-1188,-1188,-1184,-1183,-1181,-1181,-1178,-1178,-1177,-1175,-1173,-1173,-1173,-1173,-1173,-1171,-1171,-1171,-1169,-1169,-1169,-1169,-1166,-1166,-1165,-1165,-1164,-1164,-1163,-1163,-1163,-1163,-1163,-1163,-1163,-1163,-1162,-1162,-1162,-1162,-1162,-1162,-1162,-1161,-1161,-1160,-1160,-1157,-1157,-1157,-1154,-1154,-1154,-1154,-1154,-1154,-1154,-1151,-1151,-1150,-1150,-1149,-1149,-1149,-1148,-1147,-1147,-1147,-1143,-1143,-1142,-1142,-1141,-1141,-1141,-1140,-1140,-1138,-1137,-1136,-1136,-1135,-1135,-1135,-1134,-1133,-1133,-1133,-1133,-1131,-1131,-1131,-1131,-1129,-1128,-1128,-1128,-1128,-1128,-1128,-1124,-1124,-1124,-1124,-1124,-1124,-1124,-1123,-1121,-1121,-1121,-1121,-1121,-1120,-1118,-1118,-1117,-1117,-1116,-1115,-1115,-1114,-1114,-1112,-1111,-1109,-1109,-1106,-1103,-1103,-1103,-1100,-1100,-1100,-1100,-1099,-1099,-1099,-1098,-1098,-1098,-1098,-1098,-1095,-1095,-1095,-1095,-1095,-1094,-1093,-1093,-1092,-1091,-1091,-1091,-1091,-1089,-1089,-1089,-1089,-1088,-1088,-1088,-1088,-1087,-1087,-1087,-1087,-1087,-1087,-1086,-1086,-1085,-1085,-1085,-1084,-1084,-1084,-1082,-1082,-1082,-1080,-1080,-1078,-1078,-1078,-1078,-1077,-1077,-1076,-1076,-1075,-1075,-1075,-1075,-1075,-1075,-1075,-1075,-1074,-1071,-1071,-1071,-1070,-1061,-1061,-1059,-1057,-1056,-1056,-1056,-1056,-1055,-1053,-1053,-1053,-1052,-1052,-1052,-1051,-1049,-1049,-1049,-1049,-1049,-1048,-1048,-1045,-1045,-1045,-1043,-1043,-1042,-1041,-1041,-1040,-1040,-1037,-1036,-1036,-1036,-1036,-1036,-1036,-1036,-1036,-1035,-1035,-1035,-1035,-1035,-1034,-1034,-1032,-1032,-1031,-1031,-1028,-1027,-1027,-1027,-1027,-1027,-1026,-1026,-1025,-1025,-1025,-1023,-1019,-1016,-1016,-1016,-1015,-1013,-1013,-1013,-1012,-1011,-1011,-1009,-1009,-1009,-1009,-1009,-1009,-1009,-1009,-1006,-1006,-1006,-1005,-1005,-1005,-1005,-1005,-1004,-1003,-1003,-1000,-1000,-1000,-1000,-1000,-1000,-1000,-1000,-1000,-999,-999,-997,-994,-993,-993,-992,-992,-989,-989,-988,-988,-988,-988,-988,-986,-985,-985,-985,-985,-984,-982,-982,-982,-981,-981,-981,-980,-980,-980,-979,-978,-978,-976,-976,-974,-974,-973,-973,-969,-969,-963,-963,-962,-959,-959,-959,-959,-959,-958,-958,-957,-956,-956,-956,-956,-954,-954,-953,-953,-953,-953,-951,-951,-950,-950,-950,-949,-949,-948,-948,-947,-947,-946,-944,-944,-944,-944,-944,-944,-942,-934,-934,-933,-931,-931,-931,-929,-929,-929,-929,-928,-928,-927,-927,-925,-924,-924,-924,-924,-924,-922,-922,-921,-919,-919,-919,-919,-917,-917,-917,-917,-917,-917,-917,-916,-916,-915,-914,-914,-914,-914,-914,-914,-910,-909,-909,-903,-903,-903,-903,-899,-897,-896,-896,-896,-894,-894,-894,-894,-894,-894,-894,-893,-893,-892,-892,-892,-892,-890,-890,-890,-890,-890,-890,-890,-888,-888,-888,-887,-887,-887,-887,-885,-884,-884,-884,-883,-883,-883,-880,-880,-880,-880,-880,-877,-877,-877,-877,-876,-874,-874,-874,-874,-874,-873,-872,-871,-870,-870,-870,-870,-870,-870,-870,-869,-869,-868,-867,-867,-865,-865,-862,-861,-861,-861,-860,-860,-859,-859,-859,-859,-858,-857,-857,-857,-857,-857,-857,-857,-855,-855,-855,-854,-854,-854,-851,-850,-850,-850,-850,-850,-850,-849,-849,-849,-849,-848,-847,-847,-847,-846,-845,-845,-845,-845,-845,-844,-844,-844,-843,-843,-843,-841,-839,-839,-839,-838,-838,-838,-838,-838,-837,-837,-837,-837,-837,-837,-836,-836,-836,-836,-833,-830,-830,-829,-828,-828,-827,-826,-826,-826,-826,-826,-826,-825,-825,-824,-824,-824,-824,-824,-823,-823,-823,-823,-820,-820,-820,-820,-818,-818,-818,-815,-815,-815,-814,-813,-813,-813,-813,-813,-813,-809,-805,-804,-804,-804,-804,-803,-803,-803,-802,-800,-798,-797,-795,-795,-795,-794,-793,-793,-793,-791,-789,-789,-789,-789,-787,-787,-785,-785,-785,-783,-783,-783,-783,-783,-782,-781,-778,-775,-775,-775,-770,-770,-770,-770,-769,-769,-768,-768,-768,-766,-765,-765,-765,-765,-765,-765,-764,-764,-764,-764,-764,-764,-764,-764,-764,-763,-762,-761,-761,-757,-757,-757,-755,-755,-755,-755,-755,-753,-752,-752,-752,-752,-752,-750,-750,-749,-748,-748,-747,-747,-747,-745,-745,-745,-745,-745,-745,-744,-744,-743,-743,-743,-743,-742,-740,-740,-739,-739,-739,-738,-738,-738,-738,-736,-736,-736,-735,-735,-735,-735,-733,-733,-733,-733,-732,-732,-730,-730,-730,-730,-730,-725,-725,-725,-725,-725,-724,-724,-723,-723,-723,-723,-723,-722,-722,-722,-719,-718,-718,-718,-718,-718,-715,-709,-709,-707,-707,-707,-707,-706,-706,-704,-704,-703,-703,-703,-703,-703,-702,-702,-702,-702,-701,-700,-699,-695,-694,-694,-694,-691,-691,-691,-691,-691,-691,-691,-691,-690,-687,-687,-687,-683,-683,-681,-680,-680,-679,-679,-679,-679,-679,-679,-679,-678,-678,-678,-678,-678,-678,-678,-678,-678,-678,-678,-678,-677,-675,-675,-675,-674,-674,-674,-672,-671,-670,-670,-670,-670,-668,-668,-668,-667,-663,-663,-663,-663,-662,-660,-660,-660,-660,-660,-660,-658,-658,-658,-658,-657,-657,-655,-655,-655,-654,-653,-653,-653,-651,-651,-650,-650,-650,-650,-650,-649,-649,-649,-648,-648,-647,-647,-646,-646,-644,-643,-643,-642,-642,-642,-641,-641,-637,-637,-637,-636,-636,-636,-633,-633,-632,-632,-629,-626,-626,-625,-625,-622,-622,-621,-621,-621,-620,-620,-620,-620,-620,-618,-618,-618,-618,-618,-618,-617,-617,-617,-617,-617,-615,-614,-614,-614,-614,-614,-613,-613,-613,-613,-611,-611,-609,-609,-609,-608,-608,-608,-607,-606,-606,-605,-605,-605,-604,-604,-603,-602,-601,-601,-601,-599,-599,-594,-594,-594,-594,-593,-593,-593,-593,-593,-593,-592,-591,-591,-589,-589,-589,-585,-585,-585,-583,-583,-583,-581,-581,-580,-579,-579,-579,-579,-579,-579,-578,-578,-578,-578,-578,-578,-576,-576,-572,-571,-570,-570,-569,-569,-569,-569,-569,-569,-568,-567,-567,-566,-565,-564,-562,-562,-557,-557,-556,-556,-555,-555,-554,-553,-552,-551,-551,-551,-551,-551,-551,-551,-551,-551,-549,-547,-546,-546,-544,-543,-543,-542,-542,-541,-541,-541,-538,-536,-535,-535,-532,-531,-531,-530,-530,-530,-529,-529,-529,-529,-529,-529,-529,-527,-527,-525,-525,-525,-525,-525,-525,-523,-523,-523,-523,-523,-520,-519,-519,-517,-517,-517,-517,-516,-516,-516,-515,-515,-514,-513,-513,-513,-512,-512,-510,-509,-508,-505,-505,-502,-500,-500,-498,-497,-497,-496,-495,-495,-495,-493,-493,-493,-493,-491,-491,-489,-489,-487,-486,-483,-482,-481,-480,-480,-480,-480,-480,-480,-480,-479,-478,-478,-477,-477,-476,-476,-476,-474,-474,-472,-472,-472,-466,-466,-465,-464,-463,-462,-462,-462,-462,-460,-459,-459,-459,-459,-459,-459,-459,-456,-455,-452,-452,-452,-449,-449,-449,-449,-449,-449,-449,-446,-443,-441,-441,-441,-441,-441,-441,-441,-440,-438,-437,-437,-436,-436,-435,-435,-433,-432,-430,-429,-425,-424,-423,-423,-422,-422,-419,-419,-418,-418,-413,-413,-413,-413,-412,-412,-412,-412,-412,-412,-412,-412,-412,-412,-409,-405,-405,-405,-404,-403,-403,-402,-402,-402,-401,-401,-401,-401,-397,-397,-397,-397,-397,-396,-396,-396,-396,-396,-396,-394,-394,-394,-393,-393,-393,-393,-393,-393,-391,-390,-390,-390,-390,-390,-390,-390,-390,-390,-388,-388,-388,-386,-386,-386,-386,-386,-386,-386,-384,-384,-384,-384,-384,-384,-384,-384,-384,-384,-384,-384,-383,-382,-382,-382,-382,-382,-381,-380,-376,-376,-376,-376,-376,-376,-375,-375,-375,-375,-375,-375,-375,-374,-372,-371,-371,-371,-371,-371,-371,-371,-370,-369,-369,-369,-369,-369,-367,-367,-365,-364,-364,-364,-363,-362,-362,-361,-361,-361,-359,-359,-359,-358,-358,-358,-358,-355,-355,-355,-355,-355,-355,-355,-354,-354,-353,-353,-353,-353,-352,-352,-349,-349,-349,-347,-346,-346,-346,-346,-345,-345,-344,-344,-344,-343,-343,-343,-343,-343,-341,-341,-341,-341,-341,-341,-340,-340,-339,-338,-336,-336,-336,-334,-334,-334,-334,-334,-332,-332,-332,-332,-332,-331,-331,-331,-330,-329,-328,-328,-325,-325,-325,-325,-325,-324,-324,-324,-322,-322,-322,-320,-320,-319,-319,-318,-318,-317,-316,-316,-315,-315,-315,-315,-313,-313,-313,-313,-313,-312,-312,-312,-312,-311,-310,-309,-309,-309,-308,-307,-307,-304,-303,-303,-302,-302,-302,-302,-301,-301,-301,-297,-297,-297,-297,-297,-297,-296,-295,-295,-294,-294,-294,-294,-294,-292,-292,-292,-292,-288,-288,-283,-283,-283,-283,-283,-283,-280,-280,-280,-280,-280,-280,-276,-274,-272,-272,-272,-272,-269,-269,-269,-269,-269,-269,-269,-269,-268,-268,-268,-268,-268,-266,-266,-266,-265,-264,-264,-264,-264,-264,-264,-263,-263,-262,-262,-262,-262,-262,-262,-262,-259,-259,-259,-259,-259,-259,-259,-259,-258,-258,-257,-256,-256,-256,-255,-255,-255,-253,-253,-252,-252,-252,-251,-247,-247,-247,-247,-243,-243,-242,-242,-242,-242,-242,-242,-242,-240,-240,-239,-239,-238,-238,-238,-238,-238,-237,-237,-237,-237,-237,-237,-237,-236,-231,-231,-231,-231,-230,-230,-229,-229,-224,-223,-223,-222,-222,-222,-222,-222,-222,-222,-221,-221,-221,-221,-220,-219,-219,-219,-218,-216,-216,-216,-216,-215,-215,-212,-212,-212,-210,-210,-210,-210,-210,-210,-209,-209,-209,-209,-209,-209,-207,-206,-206,-206,-206,-206,-206,-206,-206,-206,-206,-206,-200,-199,-199,-199,-197,-196,-196,-195,-195,-195,-195,-191,-190,-190,-188,-188,-188,-188,-188,-188,-187,-187,-185,-185,-185,-184,-183,-183,-183,-182,-182,-181,-181,-181,-179,-179,-177,-177,-176,-176,-175,-175,-174,-174,-174,-173,-173,-168,-167,-167,-167,-166,-166,-165,-165,-165,-165,-164,-164,-164,-164,-164,-164,-164,-164,-164,-163,-163,-163,-161,-161,-160,-160,-160,-160,-158,-158,-156,-155,-155,-154,-154,-154,-154,-152,-152,-152,-152,-151,-151,-151,-150,-150,-150,-150,-149,-149,-149,-149,-149,-149,-149,-149,-149,-149,-149,-149,-148,-148,-148,-148,-148,-148,-148,-148,-148,-146,-145,-145,-145,-145,-145,-145,-145,-145,-145,-142,-142,-142,-142,-142,-142,-141,-141,-141,-140,-138,-137,-137,-137,-137,-137,-136,-136,-134,-133,-133,-132,-132,-132,-132,-132,-132,-131,-131,-131,-129,-129,-125,-125,-125,-125,-125,-124,-123,-122,-122,-122,-122,-122,-122,-122,-122,-122,-122,-122,-120,-120,-119,-119,-119,-119,-119,-119,-119,-119,-118,-117,-116,-116,-115,-115,-115,-114,-114,-113,-113,-113,-113,-112,-112,-111,-110,-110,-110,-109,-106,-106,-106,-106,-106,-105,-104,-104,-103,-103,-102,-102,-102,-102,-102,-102,-100,-98,-98,-98,-97,-97,-97,-96,-96,-94,-94,-93,-93,-93,-93,-93,-90,-90,-90,-90,-90,-90,-88,-88,-88,-88,-88,-88,-87,-87,-87,-87,-87,-87,-87,-87,-87,-87,-87,-87,-87,-86,-86,-86,-86,-86,-86,-86,-86,-85,-85,-85,-85,-85,-84,-81,-81,-81,-81,-81,-80,-80,-80,-80,-80,-80,-80,-79,-79,-79,-79,-78,-77,-75,-75,-75,-74,-74,-74,-74,-74,-73,-73,-73,-73,-72,-72,-72,-71,-71,-69,-68,-68,-68,-68,-67,-67,-67,-65,-65,-63,-62,-62,-62,-61,-61,-61,-60,-59,-58,-57,-57,-56,-55,-55,-55,-54,-54,-54,-54,-54,-54,-54,-54,-54,-54,-54,-54,-54,-52,-52,-52,-52,-52,-52,-52,-50,-50,-50,-50,-48,-48,-48,-47,-47,-47,-44,-43,-42,-42,-42,-42,-42,-36,-36,-35,-35,-35,-35,-35,-35,-33,-33,-32,-32,-32,-32,-32,-30,-30,-30,-28,-28,-28,-27,-27,-27,-27,-26,-26,-25,-24,-24,-22,-22,-22,-22,-21,-21,-21,-21,-21,-21,-21,-20,-19,-18,-18,-18,-17,-15,-14,-14,-14,-13,-13,-10,-9,-9,-8,-5,-5,-5,-5,-4,-3,0,1,4,6,6,6,6,7,7,8,8,8,8,8,8,8,8,8,10,10,10,10,12,12,12,13,15,19,19,20,20,20,20,20,21,21,21,21,22,23,23,23,26,26,26,27,28,29,29,29,29,29,30,30,30,30,30,30,31,32,32,32,34,36,36,36,36,39,39,39,39,39,39,39,42,42,44,44,44,44,44,46,46,46,46,47,49,49,49,51,51,51,51,52,52,52,52,52,52,53,54,54,55,55,55,55,57,57,58,58,58,59,59,59,60,61,61,61,62,62,63,63,63,63,65,65,65,65,65,65,66,68,68,68,68,68,69,69,69,69,69,70,70,70,72,72,72,72,73]
Enter fullscreen mode Exit fullscreen mode

Constraints:

  • 1 <= k <= 104
  • 0 <= nums.length <= 104
  • -104 <= nums[i] <= 104
  • -104 <= val <= 104
  • At most 104 calls will be made to add.
  • It is guaranteed that there will be at least k elements in the array when you search for the kth element.

Solution:

We can use a min-heap data structure. Here’s a step-by-step guide to implementing the KthLargest class using PHP:

  1. Min-Heap Data Structure: We will maintain a min-heap (priority queue) of size k. The root of this heap will always give us the k-th largest element.

  2. Initialization: During initialization, we will add the first k elements of the stream to the min-heap. For any additional elements, we will compare each new element with the smallest element in the heap (the root). If the new element is larger, we replace the smallest element with this new element and adjust the heap to maintain the k size.

  3. Adding Elements: Each time an element is added to the stream, we use the same process of comparing and possibly replacing elements in the heap.

Here’s the PHP code to implement the KthLargest class: 703. Kth Largest Element in a Stream

Explanation:

  1. Class Constructor:

    • Initializes a min-heap to keep track of the top k elements.
    • Inserts each element from the initial nums array into the heap using the add method.
  2. add Method:

    • If the heap contains fewer than k elements, the new value is simply inserted.
    • If the heap already contains k elements, compare the new value with the smallest value (root) in the heap:
      • If the new value is greater, remove the smallest value and insert the new value.
    • Finally, return the smallest value in the heap, which is the k-th largest element.

This approach ensures that we efficiently keep track of the k-th largest element with each insertion into the stream, maintaining an O(log k) complexity for insertion operations due to heap operations.

Contact Links

If you found this series helpful, please consider giving the repository a star on GitHub or sharing the post on your favorite social networks 😍. Your support would mean a lot to me!

If you want more helpful content like this, feel free to follow me:

Top comments (0)