DEV Community

Cover image for 1942. The Number of the Smallest Unoccupied Chair
MD ARIFUL HAQUE
MD ARIFUL HAQUE

Posted on

1942. The Number of the Smallest Unoccupied Chair

1942. The Number of the Smallest Unoccupied Chair

Difficulty: Medium

Topics: Array, Hash Table, Heap (Priority Queue)

There is a party where n friends numbered from 0 to n - 1 are attending. There is an infinite number of chairs in this party that are numbered from 0 to infinity. When a friend arrives at the party, they sit on the unoccupied chair with the smallest number.

  • For example, if chairs 0, 1, and 5 are occupied when a friend comes, they will sit on chair number 2.

When a friend leaves the party, their chair becomes unoccupied at the moment they leave. If another friend arrives at that same moment, they can sit in that chair.

You are given a 0-indexed 2D integer array times where times[i] = [arrivali, leavingi], indicating the arrival and leaving times of the ith friend respectively, and an integer targetFriend. All arrival times are distinct.

Return the chair number that the friend numbered targetFriend will sit on.

Example 1:

  • Input: times = [[1,4],[2,3],[4,6]], targetFriend = 1
  • Output: 1
  • Explanation:
    • Friend 0 arrives at time 1 and sits on chair 0.
    • Friend 1 arrives at time 2 and sits on chair 1.
    • Friend 1 leaves at time 3 and chair 1 becomes empty.
    • Friend 0 leaves at time 4 and chair 0 becomes empty.
    • Friend 2 arrives at time 4 and sits on chair 0.\ Since friend 1 sat on chair 1, we return 1.

Example 2:

  • Input: times = [[3,10],[1,5],[2,6]], targetFriend = 0
  • Output: 2
  • Explanation:
    • Friend 1 arrives at time 1 and sits on chair 0.
    • Friend 2 arrives at time 2 and sits on chair 1.
    • Friend 0 arrives at time 3 and sits on chair 2.
    • Friend 1 leaves at time 5 and chair 0 becomes empty.
    • Friend 2 leaves at time 6 and chair 1 becomes empty.
    • Friend 0 leaves at time 10 and chair 2 becomes empty. Since friend 0 sat on chair 2, we return 2.

Example 3:

  • Input:
   times = [[33889,98676],[80071,89737],[44118,52565],[52992,84310],[78492,88209],[21695,67063],[84622,95452],[98048,98856],[98411,99433],[55333,56548],[65375,88566],[55011,62821],[48548,48656],[87396,94825],[55273,81868],[75629,91467]], 
  targetFriend = 6

Enter fullscreen mode Exit fullscreen mode
  • Output: 2

Example 4:

  • Input:
    times = [[4435,4436],[2958,2959],[743,744],[3439,3440],[5872,5873],[2507,2508],[3809,3810],[5084,5085],[6509,6510],[7740,7741],[1189,1190],[1277,1278],[7655,7656],[3229,3230],[4527,4528],[2242,2243],[1933,1934],[3348,3349],[6063,6064],[5344,5345],[5708,5709],[4439,4440],[4596,4597],[7572,7573],[330,331],[5153,5154],[2777,2778],[2127,2128],[7024,7025],[6983,6984],[2313,2314],[5961,5962],[7141,7142],[6150,6151],[1011,1012],[2146,2147],[1367,1368],[6741,6742],[64,65],[841,842],[6973,6974],[5002,5003],[2029,2030],[6131,6132],[947,948],[81,82],[2331,2332],[3740,3741],[1486,1487],[6176,6177],[3000,3001],[2805,2806],[6278,6279],[5273,5274],[660,661],[4833,4834],[8293,8294],[7490,7491],[2628,2629],[4032,4033],[5403,5404],[8062,8063],[5043,5044],[6038,6039],[3977,3978],[7045,7046],[1161,1162],[63,64],[2013,2014],[2400,2401],[5947,5948],[4563,4564],[6593,6594],[114,115],[2566,2567],[5297,5298],[8069,8070],[1675,1676],[1746,1747],[7713,7714],[4814,4815],[7651,7652],[6304,6305],[5638,5639],[5881,5882],[1761,1762],[3250,3251],[4391,4392],[1800,1801],[1136,1137],[6489,6490],[556,557],[3729,3730],[7901,7902],[7866,7867],[8312,8313],[1785,1786],[6200,6201],[4469,4470],[5619,5620],[4732,4733],[8039,8040],[4670,4671],[4558,4559],[8076,8077],[3743,3744],[4839,4840],[418,419],[3764,3765],[1118,1119],[3442,3443],[4605,4606],[6806,6807],[179,180],[7753,7754],[1321,1322],[6133,6134],[2456,2457],[6385,6386],[1584,1585],[6111,6112],[5156,5157],[2930,2931],[927,928],[710,711],[501,502],[2308,2309],[1971,1972],[5560,5561],[6216,6217],[5779,5780],[7486,7487],[5750,5751],[6462,6463],[2796,2797],[1543,1544],[6411,6412],[831,832],[5540,5541],[5981,5982],[3925,3926],[199,200],[8332,8333],[7338,7339],[5528,5529],[4962,4963],[3102,3103],[2063,2064],[255,256],[4317,4318],[2207,2208],[1996,1997],[1409,1410],[5095,5096],[7212,7213],[674,675],[2321,2322],[2571,2572],[4678,4679],[5542,5543],[6126,6127],[5270,5271],[6373,6374],[5856,5857],[353,354],[4295,4296],[8216,8217],[6102,6103],[7374,7375],[1578,1579],[3779,3780],[1015,1016],[5278,5279],[2320,2321],[6854,6855],[1722,1723],[1706,1707],[6310,6311],[3080,3081],[3520,3521],[6321,6322],[4505,4506],[4145,4146],[3026,3027],[5105,5106],[3284,3285],[1817,1818],[4374,4375],[4891,4892],[1640,1641],[5057,5058],[1152,1153],[7393,7394],[745,746],[8204,8205],[8321,8322],[7775,7776],[5796,5797],[2626,2627],[3991,3992],[3565,3566],[3671,3672],[6487,6488],[1592,1593],[1144,1145],[5966,5967],[1443,1444],[8224,8225],[1803,1804],[2046,2047],[3586,3587],[1162,1163],[3201,3202],[3783,3784],[6890,6891],[1695,1696],[155,156],[7390,7391],[8173,8174],[5515,5516],[3704,3705],[5422,5423],[4458,4459],[6899,6900],[2169,2170],[1555,1556],[1370,1371],[6224,6225],[7695,7696],[2369,2370],[1560,1561],[1445,1446],[2987,2988],[8114,8115],[673,674],[111,112],[5395,5396],[7122,7123],[1178,1179],[6485,6486],[5101,5102],[62,63],[1345,1346],[3386,3387],[2851,2852],[4294,4295],[5702,5703],[256,257],[7196,7197],[2587,2588],[4850,4851],[2293,2294],[7654,7655],[3251,3252],[5506,5507],[3583,3584],[7467,7468],[6560,6561],[6747,6748],[1240,1241],[7933,7934],[3237,3238],[7539,7540],[4903,4904],[409,410],[2261,2262],[6335,6336],[5310,5311],[2938,2939],[2565,2566],[7909,7910],[3418,3419],[278,279],[3253,3254],[6954,6955],[1582,1583],[898,899],[7749,7750],[4865,4866],[2713,2714],[3320,3321],[1737,1738],[4504,4505],[5339,5340],[2002,2003],[7453,7454],[8145,8146],[2200,2201],[3889,3890],[4155,4156],[513,514],[2335,2336],[874,875],[3055,3056],[7335,7336],[790,791],[7653,7654],[4806,4807],[2526,2527],[5168,5169],[1190,1191],[870,871],[2082,2083],[2756,2757],[4408,4409],[6135,6136],[5137,5138],[7000,7001],[1513,1514],[5991,5992],[291,292],[8218,8219],[8297,8298],[3582,3583],[3578,3579],[4497,4498],[731,732],[6307,6308],[3272,3273],[8197,8198],[77,78],[3389,3390],[2586,2587],[8155,8156],[8067,8068],[3658,3659],[1885,1886],[3631,3632],[1449,1450],[5850,5851],[306,307],[4711,4712],[3195,3196],[6623,6624],[6154,6155],[497,498],[3717,3718],[918,919],[3493,3494],[4436,4437],[2114,2115],[5575,5576],[6764,6765],[5600,5601],[1710,1711],[432,433],[143,144],[7482,7483],[1622,1623],[627,628],[7316,7317],[5421,5422],[6229,6230],[2136,2137],[7038,7039],[2306,2307],[3379,3380],[6253,6254],[2989,2990],[689,690],[6189,6190],[3533,3534],[476,477],[4241,4242],[5534,5535],[6768,6769],[3661,3662],[7,8],[785,786],[5756,5757],[7310,7311],[1472,1473],[7442,7443],[2715,2716],[20,21],[123,124],[1446,1447],[818,819],[6563,6564],[4941,4942],[1320,1321],[506,507],[346,347],[2011,2012],[2366,2367],[3241,3242],[104,105],[5454,5455],[130,131],[1601,1602],[1275,1276],[5520,5521],[4323,4324],[6612,6613],[3265,3266],[5312,5313],[4680,4681],[8286,8287],[1906,1907],[6341,6342],[2020,2021],[6916,6917],[3673,3674],[5025,5026],[6756,6757],[4320,4321],[7215,7216],[4047,4048],[580,581],[7121,7122],[6690,6691],[3183,3184],[863,864],[2411,2412],[7776,7777],[4429,4430],[5510,5511],[7689,7690],[3984,3985],[4425,4426],[8162,8163],[4682,4683],[4006,4007],[6069,6070],[3275,3276],[4106,4107],[5818,5819],[855,856],[1123,1124],[5176,5177],[3281,3282],[7729,7730],[5924,5925],[5020,5021],[5141,5142],[7988,7989],[970,971],[1260,1261],[6599,6600],[6244,6245],[3247,3248],[6919,6920],[1751,1752],[1142,1143],[5561,5562],[1339,1340],[1292,1293],[1232,1233],[4773,4774],[6116,6117],[3535,3536],[7598,7599],[2358,2359],[1012,1013],[5992,5993],[717,718],[6348,6349],[4210,4211],[5836,5837],[3986,3987],[5098,5099],[1413,1414],[4815,4816],[4597,4598],[7850,7851],[7188,7189],[5530,5531],[4390,4391],[783,784],[6757,6758],[1718,1719],[5196,5197],[7662,7663],[4963,4964],[633,634],[413,414],[1399,1400],[6932,6933],[3011,3012],[1101,1102],[719,720],[9,10],[8277,8278],[6290,6291],[4623,4624],[7326,7327],[361,362],[7864,7865],[2880,2881],[2923,2924],[2124,2125],[4878,4879],[968,969],[2709,2710],[2664,2665],[3855,3856],[5617,5618],[7847,7848],[6521,6522],[4799,4800],[843,844],[5568,5569],[7551,7552],[3215,3216],[1072,1073],[2118,2119],[4725,4726],[2834,2835],[410,411],[1014,1015],[125,126],[4401,4402],[3848,3849],[6711,6712],[1958,1959],[8030,8031],[184,185],[374,375],[4532,4533],[6955,6956],[725,726],[3434,3435],[5816,5817],[1875,1876],[2698,2699],[378,379],[1317,1318],[3856,3857],[4480,4481],[3613,3614],[7542,7543],[3629,3630],[6544,6545],[2159,2160],[1732,1733],[6312,6313],[6846,6847],[3518,3519],[3538,3539],[6723,6724],[6671,6672],[8185,8186],[7946,7947],[4433,4434],[1007,1008],[6783,6784],[6338,6339],[6717,6718],[2153,2154],[7488,7489],[3052,3053],[1078,1079],[4045,4046],[2007,2008],[1823,1824],[5669,5670],[5833,5834],[4380,4381],[4041,4042],[3650,3651],[1520,1521],[2532,2533],[5114,5115],[3841,3842],[8166,8167],[7036,7037],[4994,4995],[7937,7938],[5301,5302],[5423,5424],[7106,7107],[2885,2886],[1048,1049],[3790,3791],[2912,2913],[6980,6981],[1266,1267],[1075,1076],[7856,7857],[5437,5438],[2418,2419],[4838,4839],[7283,7284],[4102,4103],[8,9],[2314,2315],[1639,1640],[4119,4120],[3245,3246],[2143,2144],[907,908],[953,954],[1540,1541],[3306,3307],[215,216],[2106,2107],[6877,6878],[4063,4064],[82,83],[4305,4306],[2986,2987],[4110,4111],[2741,2742],[6553,6554],[2257,2258],[1460,1461],[5891,5892],[576,577],[4561,4562],[7211,7212],[4675,4676],[552,553],[480,481],[3679,3680],[4688,4689],[1316,1317],[910,911],[5109,5110],[6904,6905],[195,196],[5723,5724],[224,225],[5407,5408],[7688,7689],[4453,4454],[6231,6232],[7345,7346],[236,237],[630,631],[4250,4251],[6481,6482],[4954,4955],[5771,5772],[6207,6208],[7330,7331],[6161,6162],[1427,1428],[1172,1173],[5394,5395],[539,540],[1576,1577],[4357,4358],[4577,4578],[5752,5753],[6947,6948],[2404,2405],[1299,1300],[8326,8327],[5269,5270],[1174,1175],[7770,7771],[7712,7713],[812,813],[4249,4250],[5527,5528],[2530,2531],[1965,1966],[2964,2965],[164,165],[2228,2229],[7194,7195],[709,710],[5106,5107],[1074,1075],[357,358],[6110,6111],[4150,4151],[2233,2234],[738,739],[7447,7448],[6617,6618],[4259,4260],[2260,2261],[3453,3454],[2600,2601],[2141,2142],[5763,5764],[5994,5995],[7588,7589],[107,108],[2567,2568],[5935,5936],[7767,7768],[3056,3057],[3716,3717],[1238,1239],[4159,4160],[7099,7100],[6048,6049],[6271,6272],[657,658],[6308,6309],[5319,5320],[7541,7542],[6039,6040],[6942,6943],[4092,4093],[5661,5662],[7199,7200],[7465,7466],[5843,5844],[1792,1793],[2345,2346],[1649,1650],[2993,2994],[7484,7485],[6300,6301],[1742,1743],[7833,7834],[4866,4867],[1115,1116],[4028,4029],[574,575],[3014,3015],[157,158],[6641,6642],[3171,3172],[3980,3981],[180,181],[7975,7976],[1636,1637],[7119,7120],[5489,5490],[4351,4352],[7242,7243],[2517,2518],[3777,3778],[3638,3639],[3754,3755],[4293,4294],[3415,3416],[2778,2779],[4463,4464],[915,916],[817,818],[5920,5921],[7600,7601],[4043,4044],[4649,4650],[7914,7915],[2773,2774],[1454,1455],[4635,4636],[1546,1547],[8066,8067],[2499,2500],[5921,5922],[5870,5871],[3798,3799],[5052,5053],[1532,1533],[2919,2920],[3329,3330],[4519,4520],[2902,2903],[4370,4371],[2968,2969],[5681,5682],[7532,7533],[502,503],[2700,2701],[6658,6659],[7238,7239],[4058,4059],[6604,6605],[7249,7250],[2339,2340],[2219,2220],[3115,3116],[5897,5898],[7589,7590],[6162,6163],[7105,7106],[1924,1925],[7171,7172],[2189,2190],[1898,1899],[5949,5950],[3343,3344],[1756,1757],[7409,7410],[5898,5899],[522,523],[7748,7749],[6086,6087],[3993,3994],[5776,5777],[4378,4379],[1786,1787],[1690,1691],[4601,4602],[1164,1165],[6497,6498],[5627,5628],[113,114],[7144,7145],[5819,5820],[2183,2184],[3659,3660],[3737,3738],[6314,6315],[3861,3862],[507,508],[463,464],[5998,5999],[4014,4015],[4882,4883],[3866,3867],[6104,6105],[3385,3386],[1635,1636],[7926,7927],[6332,6333],[992,993],[5291,5292],[96,97],[5236,5237],[7366,7367],[7780,7781],[97,98],[6345,6346],[3916,3917],[4000,4001],[1815,1816],[3197,3198],[6456,6457],[2446,2447],[4658,4659],[4103,4104],[383,384],[7967,7968],[3006,3007],[4184,4185],[3875,3876],[1585,1586],[2623,2624],[6527,6528],[5217,5218],[5805,5806],[4686,4687],[2092,2093],[53,54],[2370,2371],[1533,1534],[4857,4858],[4353,4354],[3931,3932],[1102,1103],[6122,6123],[4420,4421],[7223,7224],[6120,6121],[5033,5034],[3732,3733],[7387,7388],[7659,7660],[3944,3945],[5148,5149],[1553,1554],[1826,1827],[1126,1127],[163,164],[2453,2454],[735,736],[6677,6678],[7229,7230],[2385,2386],[1296,1297],[7159,7160],[1766,1767],[6259,6260],[3921,3922],[5882,5883],[6186,6187],[4191,4192],[6921,6922],[1297,1298],[7621,7622],[4549,4550],[1291,1292],[6698,6699],[6033,6034],[7011,7012],[1633,1634],[4445,4446],[2691,2692],[3719,3720],[6530,6531],[1000,1001],[6158,6159],[2723,2724],[7520,7521],[5231,5232],[6467,6468],[1602,1603],[102,103],[7419,7420],[978,979],[4590,4591],[1250,1251],[3258,3259],[4263,4264],[3269,3270],[2426,2427],[3120,3121],[3791,3792],[7294,7295],[527,528],[4760,4761],[7720,7721],[8169,8170],[1458,1459],[4300,4301],[877,878],[8256,8257],[3231,3232],[5448,5449],[6501,6502],[526,527],[3651,3652],[1708,1709],[4625,4626],[4188,4189],[3928,3929],[7034,7035],[4910,4911],[6459,6460],[1921,1922],[6567,6568],[2755,2756],[5144,5145],[3882,3883],[607,608],[1877,1878],[7339,7340],[1175,1176],[6922,6923],[4931,4932],[6785,6786],[6676,6677],[7100,7101],[3285,3286],[3561,3562],[6305,6306],[5736,5737],[4204,4205],[3159,3160],[6404,6405],[1180,1181],[240,241],[2374,2375],[5480,5481],[6249,6250],[6,7],[5011,5012],[4767,4768],[2232,2233],[2871,2872],[5809,5810],[1953,1954],[1834,1835],[7785,7786],[7049,7050],[4170,4171],[4957,4958],[7677,7678],[7950,7951],[5874,5875],[2872,2873],[6790,6791],[8079,8080],[5739,5740],[4765,4766],[5076,5077],[8268,8269],[3452,3453],[7176,7177],[1334,1335],[6888,6889],[7672,7673],[1644,1645],[5810,5811],[1418,1419],[7280,7281],[7372,7373],[7054,7055],[1054,1055],[7508,7509],[5172,5173],[5769,5770],[7645,7646],[7496,7497],[5077,5078],[1041,1042],[516,517],[8278,8279],[6653,6654],[1821,1822],[642,643],[3429,3430],[6288,6289],[7630,7631],[7771,7772],[1069,1070],[6668,6669],[3592,3593],[6596,6597],[3966,3967],[8320,8321],[76,77],[4143,4144],[288,289],[1891,1892],[7356,7357],[4203,4204],[2914,2915],[3362,3363],[5626,5627],[1515,1516],[6852,6853],[6772,6773],[550,551],[540,541],[4970,4971],[8344,8345],[7222,7223],[8097,8098],[3699,3700],[2751,2752],[7992,7993],[3325,3326],[6127,6128],[1647,1648],[2855,2856],[3214,3215],[1569,1570],[5476,5477],[7322,7323],[8038,8039],[4539,4540],[3728,3729],[5,6],[1030,1031],[2858,2859],[1026,1027],[7078,7079],[2414,2415],[4395,4396],[5240,5241],[4706,4707],[2380,2381],[3584,3585],[5065,5066],[7068,7069],[688,689],[801,802],[4276,4277],[615,616],[208,209],[6896,6897],[585,586],[644,645],[4151,4152],[5046,5047],[773,774],[4603,4604],[8289,8290],[1311,1312],[3869,3870],[7423,7424],[3610,3611],[4953,4954],[5846,5847],[1518,1519],[3331,3332],[3745,3746],[1471,1472],[7883,7884],[7944,7945],[88,89],[2205,2206],[2714,2715],[7535,7536],[7235,7236],[6661,6662],[4926,4927],[3242,3243],[7174,7175],[1999,2000],[8341,8342],[2270,2271],[4518,4519],[3297,3298],[5853,5854],[7644,7645],[198,199],[8088,8089],[1382,1383],[5410,5411],[2867,2868],[1680,1681],[4672,4673],[6907,6908],[1326,1327],[3372,3373],[962,963],[1243,1244],[3065,3066],[6892,6893],[7020,7021],[7110,7111],[815,816],[6929,6930],[1977,1978],[5572,5573],[3191,3192],[2445,2446],[6129,6130],[7930,7931],[2386,2387],[1985,1986],[4316,4317],[5482,5483],[2016,2017],[5383,5384],[148,149],[8298,8299],[8109,8110],[25,26],[587,588],[1396,1397],[3691,3692],[1773,1774],[5169,5170],[2150,2151],[2981,2982],[2827,2828],[2954,2955],[3653,3654],[5939,5940],[3347,3348],[4326,4327],[6323,6324],[3260,3261],[2574,2575],[7571,7572],[6643,6644],[2010,2011],[4826,4827],[6956,6957],[845,846],[1156,1157],[4314,4315],[5893,5894],[4163,4164],[4455,4456],[5793,5794],[7727,7728],[6561,6562],[6654,6655],[3,4],[3063,3064],[1880,1881],[4144,4145],[4713,4714],[7757,7758],[4409,4410],[5313,5314],[5791,5792],[7919,7920],[1528,1529],[6434,6435],[3697,3698],[6860,6861],[3639,3640],[7329,7330],[4146,4147],[3833,3834],[2504,2505],[7940,7941],[8209,8210],[2926,2927],[6425,6426],[2210,2211],[4626,4627],[2531,2532],[4734,4735],[6173,6174],[7789,7790],[86,87],[4321,4322],[1289,1290],[367,368],[2781,2782],[7463,7464],[7074,7075],[4,5],[8010,8011],[3300,3301],[8221,8222],[2006,2007],[811,812],[4449,4450],[3505,3506],[5724,5725],[3829,3830],[2821,2822],[406,407],[7996,7997],[1968,1969],[7410,7411],[5373,5374],[3287,3288],[7201,7202],[2728,2729],[6083,6084],[8288,8289],[7884,7885],[8130,8131],[131,132],[3536,3537],[798,799],[631,632],[989,990],[8003,8004],[5519,5520],[4413,4414],[1027,1028],[3474,3475],[1579,1580],[4131,4132],[1036,1037],[15,16],[5099,5100],[6339,6340],[7458,7459],[2767,2768],[6008,6009],[2273,2274],[4702,4703],[99,100],[3222,3223],[6329,6330],[1046,1047],[3744,3745],[4695,4696],[2457,2458],[4418,4419],[617,618],[5490,5491],[891,892],[4126,4127],[5621,5622],[8179,8180],[2706,2707],[5715,5716],[5429,5430],[1559,1560],[4371,4372],[3264,3265],[7285,7286],[1479,1480],[2081,2082],[7671,7672],[4567,4568],[3782,3783],[5829,5830],[2988,2989],[6834,6835],[509,510],[1595,1596],[149,150],[2166,2167],[5671,5672],[6715,6716],[4368,4369],[7936,7937],[6971,6972],[3476,3477],[8070,8071],[4334,4335],[7665,7666],[1500,1501],[3244,3245],[4976,4977],[4787,4788],[2381,2382],[5808,5809],[5770,5771],[4461,4462],[4657,4658],[2263,2264],[6696,6697],[2908,2909],[7056,7057],[3401,3402],[370,371],[3054,3055],[7592,7593],[7722,7723],[973,974],[4347,4348],[6183,6184],[4117,4118],[7398,7399],[5590,5591],[2309,2310],[7371,7372],[7803,7804],[7120,7121],[5342,5343],[4964,4965],[1485,1486],[5473,5474],[3302,3303],[6672,6673],[4101,4102],[5192,5193],[443,444],[1657,1658],[2060,2061],[4071,4072],[1903,1904],[5923,5924],[481,482],[1671,1672],[6268,6269],[2680,2681],[328,329],[3093,3094],[5871,5872],[8226,8227],[917,918],[5573,5574],[7165,7166],[1090,1091],[2963,2964],[6477,6478],[3464,3465],[5096,5097],[4871,4872],[4034,4035],[4557,4558],[1778,1779],[7133,7134],[833,834],[2238,2239],[3252,3253],[4035,4036],[8217,8218],[1612,1613],[2961,2962],[6364,6365],[2186,2187],[8138,8139],[1298,1299],[3705,3706],[6457,6458],[3315,3316],[4002,4003],[4337,4338],[5027,5028],[1276,1277],[2634,2635],[2096,2097],[4462,4463],[429,430],[7516,7517],[2271,2272],[2528,2529],[4082,4083],[4046,4047],[4790,4791],[5353,5354],[6993,6994],[6078,6079],[4939,4940],[1448,1449],[5797,5798],[7192,7193],[6579,6580],[6491,6492],[1806,1807],[2496,2497],[6722,6723],[281,282],[6649,6650],[5073,5074],[2589,2590],[2697,2698],[7714,7715],[1476,1477],[900,901],[7885,7886],[1990,1991],[809,810],[7013,7014],[5664,5665],[4307,4308],[5441,5442],[225,226],[7911,7912],[5133,5134],[651,652],[5327,5328],[2129,2130],[2731,2732],[718,719],[6556,6557],[354,355],[74,75],[5977,5978],[1309,1310],[2585,2586],[7375,7376],[1917,1918],[553,554],[3796,3797],[2874,2875],[3309,3310],[7587,7588],[8339,8340],[5139,5140],[5548,5549],[2137,2138],[5499,5500],[5469,5470],[6610,6611],[767,768],[3066,3067],[2396,2397],[8000,8001],[2591,2592],[2035,2036],[3298,3299],[4057,4058],[6297,6298],[4642,4643],[8040,8041],[7027,7028],[6591,6592],[6044,6045],[1475,1476],[5582,5583],[4697,4698],[2372,2373],[2911,2912],[5195,5196],[2844,2845],[1642,1643],[7898,7899],[2681,2682],[8208,8209],[6869,6870],[8231,8232],[1743,1744],[600,601],[7565,7566],[3788,3789],[412,413],[7317,7318],[3595,3596],[4087,4088],[2036,2037],[2925,2926],[6713,6714],[2156,2157],[1587,1588],[8002,8003],[5016,5017],[7502,7503],[5464,5465],[5177,5178],[799,800],[7042,7043],[4036,4037],[1691,1692],[188,189],[1197,1198],[2429,2430],[6175,6176],[568,569],[8156,8157],[7434,7435],[1589,1590],[247,248],[4880,4881],[564,565],[6155,6156],[979,980],[212,213],[536,537],[6885,6886],[4574,4575],[4448,4449],[792,793],[3064,3065],[7403,7404],[4733,4734],[490,491],[4313,4314],[4487,4488],[6095,6096],[4712,4713],[1783,1784],[4777,4778],[2107,2108],[6618,6619],[646,647],[2779,2780],[2224,2225],[6695,6696],[4632,4633],[3946,3947],[4129,4130],[7796,7797],[2482,2483],[430,431],[2970,2971],[563,564],[7231,7232],[6667,6668],[4786,4787],[4887,4888],[5579,5580],[8202,8203],[4412,4413],[1489,1490],[5404,5405],[7844,7845],[2227,2228],[7431,7432],[6522,6523],[7957,7958],[3248,3249],[7604,7605],[6972,6973],[2155,2156],[7319,7320],[2049,2050],[8033,8034],[4068,4069],[5700,5701],[866,867],[7823,7824],[844,845],[310,311],[7987,7988],[159,160],[6600,6601],[2045,2046],[2383,2384],[2213,2214],[270,271],[1287,1288],[2760,2761],[1348,1349],[4819,4820],[2443,2444],[1637,1638],[1241,1242],[8254,8255],[2497,2498],[3002,3003],[2378,2379],[4437,4438],[8118,8119],[3073,3074],[1135,1136],[2768,2769],[1099,1100],[7985,7986],[434,435],[2621,2622],[294,295],[4691,4692],[6306,6307],[3475,3476],[2632,2633],[5493,5494],[3806,3807],[2318,2319],[7286,7287],[5131,5132],[8276,8277],[5869,5870],[1005,1006],[2299,2300],[6367,6368],[7646,7647],[2079,2080],[453,454],[4175,4176],[3438,3439],[1547,1548],[4914,4915],[1480,1481],[4937,4938],[8177,8178],[1253,1254],[3181,3182],[5503,5504],[5933,5934],[7531,7532],[1349,1350],[1682,1683],[3623,3624],[3029,3030],[6451,6452],[205,206],[7155,7156],[7751,7752],[4576,4577],[2447,2448],[7474,7475],[57,58],[5143,5144],[6529,6530],[8022,8023],[6866,6867],[6143,6144],[1564,1565],[538,539],[411,412],[2933,2934],[3317,3318],[448,449],[4620,4621],[5629,5630],[1150,1151],[1211,1212],[2329,2330],[7699,7700],[6510,6511],[5071,5072],[2171,2172],[1660,1661],[3694,3695],[3077,3078],[5958,5959],[510,511],[5280,5281],[515,516],[4512,4513],[3990,3991],[5390,5391],[4242,4243],[3076,3077],[5425,5426],[624,625],[4096,4097],[2764,2765],[1842,1843],[1717,1718],[6027,6028],[3713,3714],[664,665],[6837,6838],[4979,4980],[470,471],[1870,1871],[705,706],[116,117],[1926,1927],[5814,5815],[3033,3034],[7533,7534],[1897,1898],[287,288],[4949,4950],[1703,1704],[1258,1259],[7893,7894],[355,356],[5409,5410],[830,831],[5868,5869],[6498,6499],[7554,7555],[788,789],[2388,2389],[1598,1599],[5175,5176],[3228,3229],[6097,6098],[8270,8271],[4386,4387],[297,298],[2762,2763],[417,418],[8180,8181],[8035,8036],[2703,2704],[2752,2753],[5876,5877],[5592,5593],[1307,1308],[6388,6389],[1265,1266],[1794,1795],[8164,8165],[2037,2038],[1851,1852],[4349,4350],[5491,5492],[498,499],[4795,4796],[6255,6256],[746,747],[1580,1581],[6531,6532],[7869,7870],[6242,6243],[7505,7506],[6901,6902],[1182,1183],[3419,3420],[2888,2889],[730,731],[6725,6726],[7359,7360],[6730,6731],[8253,8254],[6673,6674],[5363,5364],[4687,4688],[8353,8354],[7473,7474],[5980,5981],[4919,4920],[3447,3448],[6909,6910],[3392,3393],[4302,4303],[8243,8244],[2894,2895],[6858,6859],[1236,1237],[6632,6633],[4737,4738],[2179,2180],[1213,1214],[2441,2442],[7578,7579],[5368,5369],[2448,2449],[8005,8006],[4415,4416],[3239,3240],[5953,5954],[5332,5333],[7006,7007],[1411,1412],[771,772],[7846,7847],[2201,2202],[4535,4536],[1573,1574],[161,162],[4715,4716],[4763,4764],[5351,5352],[7787,7788],[8337,8338],[4992,4993],[2062,2063],[5037,5038],[3622,3623],[238,239],[5997,5998],[2303,2304],[318,319],[4547,4548],[7301,7302],[2690,2691],[5315,5316],[3564,3565],[712,713],[5302,5303],[7451,7452],[4973,4974],[4818,4819],[5017,5018],[1645,1646],[7414,7415],[750,751],[8322,8323],[7849,7850],[2415,2416],[450,451],[8083,8084],[4951,4952],[3117,3118],[3122,3123],[3599,3600],[8098,8099],[6236,6237],[3960,3961],[704,705],[4874,4875],[3123,3124],[5377,5378],[6958,6959],[2379,2380],[4524,4525],[7661,7662],[5252,5253],[4111,4112],[6191,6192],[3625,3626],[6930,6931],[7290,7291],[7679,7680],[7733,7734],[1873,1874],[1820,1821],[6020,6021],[1979,1980],[5800,5801],[3563,3564],[3205,3206],[2099,2100],[3887,3888],[7545,7546],[8049,8050],[2552,2553],[5379,5380],[4484,4485],[7395,7396],[7287,7288],[1634,1635],[4253,4254],[4424,4425],[1937,1938],[5322,5323],[7250,7251],[6508,6509],[7164,7165],[5968,5969],[6707,6708],[3098,3099],[876,877],[5385,5386],[769,770],[7246,7247],[4746,4747],[12,13],[2898,2899],[2949,2950],[3230,3231],[6863,6864],[7900,7901],[7402,7403],[7019,7020],[7990,7991],[8006,8007],[136,137],[5232,5233],[634,635],[707,708],[2180,2181],[6867,6868],[1394,1395],[7927,7928],[7454,7455],[3963,3964],[2491,2492],[2212,2213],[3642,3643],[3289,3290],[4513,4514],[4287,4288],[4098,4099],[3108,3109],[5452,5453],[3663,3664],[2870,2871],[2485,2486],[6390,6391],[5036,5037],[6025,6026],[7807,7808],[5063,5064],[85,86],[260,261],[6709,6710],[4005,4006],[6006,6007],[6986,6987],[2950,2951],[5329,5330],[3053,3054],[3213,3214],[2972,2973],[729,730],[4027,4028],[7128,7129],[5759,5760],[3690,3691],[1022,1023],[1170,1171],[7032,7033],[1081,1082],[3725,3726],[6898,6899],[7851,7852],[1244,1245],[4244,4245],[6928,6929],[4764,4765],[2959,2960],[3182,3183],[6480,6481],[151,152],[7652,7653],[1523,1524],[4756,4757],[7354,7355],[339,340],[4485,4486],[1709,1710],[2362,2363],[1481,1482],[7439,7440],[4738,4739],[4859,4860],[73,74],[8318,8319],[6831,6832],[761,762],[2250,2251],[2985,2986],[5040,5041],[625,626],[5889,5890],[8225,8226],[6999,7000],[1884,1885],[4001,4002],[7127,7128],[937,938],[5728,5729],[1426,1427],[4118,4119],[1025,1026],[6751,6752],[2877,2878],[1002,1003],[6444,6445],[622,623],[5609,5610],[4350,4351],[5502,5503],[8008,8009],[5298,5299],[6801,6802],[5518,5519],[7530,7531],[4467,4468],[7158,7159],[2975,2976],[3542,3543],[8074,8075],[636,637],[2102,2103],[5202,5203],[2747,2748],[3180,3181],[4867,4868],[1796,1797],[6966,6967],[4475,4476],[775,776],[39,40],[1053,1054],[3318,3319],[7092,7093],[2094,2095],[5481,5482],[4160,4161],[2344,2345],[7764,7765],[5479,5480],[3945,3946],[48,49],[3645,3646],[5474,5475],[994,995],[6562,6563],[680,681],[6356,6357],[1662,1663],[6003,6004],[7958,7959],[653,654],[1216,1217],[3487,3488],[5397,5398],[7170,7171],[945,946],[602,603],[3962,3963],[3001,3002],[4716,4717],[5288,5289],[3709,3710],[7182,7183],[1863,1864],[8213,8214],[6714,6715],[7037,7038],[7890,7891],[3547,3548],[7248,7249],[5415,5416],[7698,7699],[4073,4074],[5408,5409],[2611,2612],[7728,7729],[3763,3764],[4132,4133],[2927,2928],[3459,3460],[2122,2123],[2819,2820],[220,221],[1400,1401],[4905,4906],[6455,6456],[2886,2887],[4556,4557],[6766,6767],[7415,7416],[4091,4092],[1501,1502],[2646,2647],[6461,6462],[524,525],[3424,3425],[4901,4902],[7313,7314],[7369,7370],[6765,6766],[1440,1441],[7125,7126],[883,884],[1952,1953],[3929,3930],[2235,2236],[2070,2071],[1905,1906],[2519,2520],[141,142],[373,374],[5537,5538],[2579,2580],[3430,3431],[1086,1087],[4438,4439],[5999,6000],[2598,2599],[5227,5228],[5622,5623],[1858,1859],[4822,4823],[6383,6384],[8031,8032],[1019,1020],[4222,4223],[5563,5564],[6453,6454],[5792,5793],[2932,2933],[3539,3540],[3959,3960],[6546,6547],[2674,2675],[4148,4149],[6045,6046],[2039,2040],[3692,3693],[6402,6403],[4178,4179],[7149,7150],[3448,3449],[3815,3816],[4285,4286],[1545,1546],[7175,7176],[1138,1139],[13,14],[5401,5402],[5307,5308],[6586,6587],[4559,4560],[2040,2041],[1227,1228],[6250,6251],[231,232],[7477,7478],[1357,1358],[259,260],[5637,5638],[6327,6328],[5913,5914],[6287,6288],[892,893],[1650,1651],[1827,1828],[2790,2791],[2840,2841],[3086,3087],[598,599],[5211,5212],[8336,8337],[3038,3039],[2746,2747],[2148,2149],[2994,2995],[7701,7702],[6532,6533],[11,12],[2087,2088],[2466,2467],[6042,6043],[436,437],[5783,5784],[4509,4510],[1016,1017],[7407,7408],[2229,2230],[6547,6548],[1883,1884],[1328,1329],[8184,8185],[8133,8134],[5956,5957],[5190,5191],[3537,3538],[1611,1612],[2520,2521],[8189,8190],[1941,1942],[1604,1605],[1098,1099],[89,90],[7905,7906],[368,369],[3162,3163],[3780,3781],[7559,7560],[5251,5252],[5134,5135],[8161,8162],[7903,7904],[5214,5215],[3772,3773],[8199,8200],[468,469],[7426,7427],[4562,4563],[6728,6729],[6004,6005],[7678,7679],[5498,5499],[7098,7099],[3483,3484],[6381,6382],[304,305],[8139,8140],[3227,3228],[6350,6351],[8239,8240],[3057,3058],[2518,2519],[2080,2081],[4104,4105],[5424,5425],[8052,8053],[7440,7441],[474,475],[2502,2503],[4710,4711],[6284,6285],[4196,4197],[494,495],[5015,5016],[5706,5707],[5749,5750],[4594,4595],[5337,5338],[2347,2348],[3427,3428],[5888,5889],[4020,4021],[6740,6741],[4481,4482],[7640,7641],[6352,6353],[3823,3824],[3634,3635],[5194,5195],[4654,4655],[2275,2276],[1942,1943],[2843,2844],[5555,5556],[6818,6819],[2392,2393],[7813,7814],[2367,2368],[232,233],[7834,7835],[1107,1108],[732,733],[4933,4934],[6105,6106],[3703,3704],[3262,3263],[5289,5290],[2522,2523],[7906,7907],[5607,5608],[6857,6858],[964,965],[338,339],[5501,5502],[5405,5406],[3457,3458],[201,202],[5272,5273],[2483,2484],[257,258],[6995,6996],[1057,1058],[117,118],[4431,4432],[8017,8018],[1735,1736],[5937,5938],[7108,7109],[7999,8000],[2022,2023],[5009,5010],[2602,2603],[2897,2898],[3879,3880],[4816,4817],[1754,1755],[388,389],[1664,1665],[2725,2726],[6893,6894],[239,240],[5380,5381],[6422,6423],[611,612],[2940,2941],[3859,3860],[983,984],[1969,1970],[4064,4065],[6359,6360],[1181,1182],[1149,1150],[560,561],[2053,2054],[3138,3139],[5812,5813],[5374,5375],[3723,3724],[8211,8212],[6142,6143],[1752,1753],[6841,6842],[8072,8073],[1281,1282],[4397,4398],[2548,2549],[128,129],[8064,8065],[147,148],[4381,4382],[7180,7181],[4297,4298],[5008,5009],[3410,3411],[846,847],[4460,4461],[1702,1703],[5598,5599],[7421,7422],[5837,5838],[7685,7686],[5418,5419],[7576,7577],[3096,3097],[5722,5723],[3132,3133],[7777,7778],[1672,1673],[5284,5285],[5366,5367],[2826,2827],[3160,3161],[6128,6129],[2241,2242],[922,923],[5083,5084],[4343,4344],[2173,2174],[2555,2556],[5526,5527],[7887,7888],[5283,5284],[2663,2664],[6755,6756],[3508,3509],[1097,1098],[6488,6489],[7260,7261],[246,247],[6151,6152],[7758,7759],[2588,2589],[7522,7523],[3206,3207],[1087,1088],[7779,7780],[3570,3571],[2515,2516],[4832,4833],[391,392],[5878,5879],[7843,7844],[3270,3271],[5178,5179],[274,275],[3407,3408],[2569,2570],[1,2],[2823,2824],[5517,5518],[5229,5230],[213,214],[8012,8013],[3208,3209],[6914,6915],[2078,2079],[823,824],[2047,2048],[938,939],[2286,2287],[7560,7561],[2688,2689],[4376,4377],[7269,7270],[3068,3069],[4474,4475],[144,145],[7116,7117],[6905,6906],[4008,4009],[2617,2618],[649,650],[4209,4210],[360,361],[3344,3345],[6443,6444],[7435,7436],[100,101],[7102,7103],[3445,3446],[3517,3518],[5104,5105],[1819,1820],[1908,1909],[933,934],[6788,6789],[2631,2632],[650,651],[4945,4946],[6657,6658],[4010,4011],[8259,8260],[5687,5688],[4372,4373],[2832,2833],[3044,3045],[7617,7618],[5445,5446],[5275,5276],[60,61],[4506,4507],[5896,5897],[6961,6962],[5406,5407],[16,17],[2247,2248],[4968,4969],[1247,1248],[7190,7191],[6258,6259],[5660,5661],[581,582],[3219,3220],[6868,6869],[4048,4049],[7706,7707],[3968,3969],[8343,8344],[7835,7836],[2862,2863],[4701,4702],[6912,6913],[7293,7294],[1495,1496],[755,756],[282,283],[4095,4096],[3647,3648],[2761,2762],[2753,2754],[3507,3508],[2355,2356],[5259,5260],[84,85],[5417,5418],[8192,8193],[6340,6341],[5460,5461],[4496,4497],[252,253],[1896,1897],[1329,1330],[6800,6801],[3696,3697],[4810,4811],[5370,5371],[7441,7442],[982,983],[4346,4347],[3808,3809],[8131,8132],[3165,3166],[7219,7220],[3371,3372],[6160,6161],[1127,1128],[2892,2893],[1461,1462],[4472,4473],[5761,5762],[4618,4619],[6822,6823],[632,633],[5838,5839],[2484,2485],[3255,3256],[2277,2278],[3822,3823],[6850,6851],[2500,2501],[6794,6795],[4827,4828],[925,926],[2401,2402],[1375,1376],[1668,1669],[6503,6504],[8246,8247],[6987,6988],[2018,2019],[5428,5429],[2085,2086],[7923,7924],[2622,2623],[7872,7873],[6777,6778],[4820,4821],[4848,4849],[6415,6416],[6771,6772],[826,827],[7117,7118],[4990,4991],[828,829],[6569,6570],[4122,4123],[7394,7395],[6015,6016],[7029,7030],[6810,6811],[6471,6472],[17,18],[5054,5055],[6931,6932],[1565,1566],[6903,6904],[4136,4137],[2480,2481],[6590,6591],[878,879],[3209,3210],[8111,8112],[5860,5861],[1610,1611],[7443,7444],[7750,7751],[3465,3466],[8105,8106],[3667,3668],[31,32],[5338,5339],[6927,6928],[5663,5664],[2015,2016],[1679,1680],[1340,1341],[261,262],[7384,7385],[5541,5542],[2966,2967],[2423,2424],[6237,6238],[6760,6761],[4803,4804],[2349,2350],[2839,2840],[3246,3247],[5261,5262],[2815,2816],[5326,5327],[7033,7034],[1139,1140],[2849,2850],[6559,6560],[2123,2124],[1961,1962],[3784,3785],[3019,3020],[7432,7433],[4236,4237],[3437,3438],[2613,2614],[4663,4664],[923,924],[5667,5668],[4231,4232],[285,286],[7660,7661],[7534,7535],[1643,1644],[6442,6443],[5601,5602],[6628,6629],[5824,5825],[6447,6448],[3981,3982],[7364,7365],[7746,7747],[4566,4567],[5901,5902],[55,56],[7311,7312],[1964,1965],[2641,2642],[2645,2646],[8190,8191],[3094,3095],[5056,5057],[7079,7080],[3541,3542],[4053,4054],[1335,1336],[7801,7802],[5640,5641],[33,34],[1226,1227],[7334,7335],[7510,7511],[4516,4517],[6203,6204],[5972,5973],[1433,1434],[6002,6003],[4135,4136],[2135,2136],[7003,7004],[4798,4799],[6315,6316],[3394,3395],[920,921],[6000,6001],[4906,4907],[1954,1955],[1039,1040],[5936,5937],[2161,2162],[8124,8125],[6720,6721],[545,546],[1767,1768],[7224,7225],[7639,7640],[2800,2801],[5584,5585],[6276,6277],[3956,3957],[1009,1010],[737,738],[333,334],[3421,3422],[4836,4837],[2837,2838],[4234,4235],[4239,4240],[3467,3468],[1893,1894],[4369,4370],[5292,5293],[4167,4168],[264,265],[6597,6598],[7071,7072],[1550,1551],[3005,3006],[203,204],[6542,6543],[1066,1067],[5650,5651],[3701,3702],[7622,7623],[1609,1610],[7126,7127],[5127,5128],[7302,7303],[5570,5571],[4306,4307],[1153,1154],[6091,6092],[2104,2105],[1430,1431],[6409,6410],[2533,2534],[397,398],[3286,3287],[6906,6907],[7265,7266],[45,46],[4088,4089],[4260,4261],[8053,8054],[302,303],[5849,5850],[708,709],[793,794],[7016,7017],[776,777],[4075,4076],[3605,3606],[3232,3233],[7044,7045],[2177,2178],[5447,5448],[4589,4590],[4024,4025],[4660,4661],[2967,2968],[1890,1891],[3644,3645],[4274,4275],[1037,1038],[6181,6182],[4748,4749],[7035,7036],[8068,8069],[5108,5109],[1511,1512],[5213,5214],[3431,3432],[8187,8188],[3874,3875],[4523,4524],[1453,1454],[6620,6621],[7647,7648],[6820,6821],[1536,1537],[6861,6862],[7299,7300],[1179,1180],[2134,2135],[3127,3128],[7557,7558],[5265,5266],[2775,2776],[5439,5440],[6832,6833],[5174,5175],[2794,2795],[2559,2560],[1788,1789],[2098,2099],[6286,6287],[2283,2284],[946,947],[7870,7871],[6871,6872],[2671,2672],[1855,1856],[105,106],[1813,1814],[4792,4793],[4502,4503],[3768,3769],[2220,2221],[1534,1535],[3388,3389],[424,425],[1744,1745],[1740,1741],[4640,4641],[7997,7998],[1600,1601],[4079,4080],[3839,3840],[4837,4838],[1839,1840],[5082,5083],[4884,4885],[3675,3676],[8200,8201],[4478,4479],[6659,6660],[913,914],[112,113],[2976,2977],[8025,8026],[3702,3703],[960,961],[5180,5181],[1608,1609],[1035,1036],[7642,7643],[939,940],[4830,4831],[485,486],[3446,3447],[3588,3589],[7244,7245],[4432,4433],[6811,6812],[2488,2489],[7303,7304],[3710,3711],[5138,5139],[3370,3371],[8271,8272],[4581,4582],[1829,1830],[6274,6275],[6041,6042],[4643,4644],[7514,7515],[5376,5377],[5746,5747],[4332,4333],[5504,5505],[3157,3158],[784,785],[6441,6442],[1199,1200],[7633,7634],[4730,4731],[6180,6181],[670,671],[2801,2802],[5184,5185],[3061,3062],[2957,2958],[2181,2182],[7438,7439],[1729,1730],[4328,4329],[2884,2885],[1769,1770],[7581,7582],[3828,3829],[4659,4660],[1147,1148],[7109,7110],[7240,7241],[4553,4554],[903,904],[850,851],[7378,7379],[121,122],[2364,2365],[3454,3455],[1414,1415],[3511,3512],[4456,4457],[7091,7092],[1169,1170],[6164,6165],[4769,4770],[3748,3749],[1222,1223],[6870,6871],[6665,6666],[728,729],[5183,5184],[7615,7616],[1116,1117],[7763,7764],[914,915],[4958,4959],[1930,1931],[3095,3096],[4985,4986],[8262,8263],[5525,5526],[6171,6172],[2960,2961],[5187,5188],[7821,7822],[3200,3201],[4403,4404],[365,366],[2479,2480],[5780,5781],[7529,7530],[106,107],[4639,4640],[271,272],[6802,6803],[6815,6816],[3280,3281],[1185,1186],[6205,6206],[6247,6248],[7998,7999],[2357,2358],[3646,3647],[6829,6830],[5883,5884],[6269,6270],[1255,1256],[825,826],[6072,6073],[3930,3931],[2614,2615],[6052,6053],[6022,6023],[835,836],[8272,8273],[2743,2744],[3351,3352],[7632,7633],[881,882],[5928,5929],[1847,1848],[3807,3808],[5386,5387],[5794,5795],[1468,1469],[3224,3225],[5735,5736],[5090,5091],[3516,3517],[772,773],[4752,4753],[4157,4158],[7347,7348],[4569,4570],[3071,3072],[2749,2750],[301,302],[4042,4043],[8212,8213],[7342,7343],[5026,5027],[851,852],[4479,4480],[3357,3358],[2654,2655],[3943,3944],[7575,7576],[7028,7029],[7737,7738],[7569,7570],[8194,8195],[439,440],[1723,1724],[7550,7551],[4269,4270],[6688,6689],[3603,3604],[7259,7260],[3151,3152],[6611,6612],[2465,2466],[6874,6875],[7358,7359],[6051,6052],[475,476],[5066,5067],[963,964],[1674,1675],[2582,2583],[6084,6085],[976,977],[806,807],[4646,4647],[4303,4304],[5857,5858],[3973,3974],[8163,8164],[300,301],[1301,1302],[4220,4221],[6377,6378],[4121,4122],[7608,7609],[848,849],[4385,4386],[3909,3910],[537,538],[4797,4798],[2167,2168],[965,966],[2417,2418],[5633,5634],[8296,8297],[7585,7586],[613,614],[3271,3272],[1853,1854],[7809,7810],[1931,1932],[8117,8118],[3324,3325],[6085,6086],[5097,5098],[1318,1319],[4974,4975],[5699,5700],[32,33],[7986,7987],[2945,2946],[559,560],[1483,1484],[4662,4663],[3398,3399],[8047,8048],[8201,8202],[2771,2772],[1421,1422],[6689,6690],[3715,3716],[5803,5804],[1474,1475],[5628,5629],[7323,7324],[7307,7308],[1095,1096],[7237,7238],[824,825],[7341,7342],[4726,4727],[7972,7973],[8129,8130],[3128,3129],[2149,2150],[3967,3968],[7994,7995],[5577,5578],[2175,2176],[1571,1572],[548,549],[3463,3464],[5695,5696],[530,531],[7568,7569],[4375,4376],[4038,4039],[8282,8283],[4459,4460],[996,997],[4033,4034],[2341,2342],[4685,4686],[4614,4615],[1567,1568],[4315,4316],[5456,5457],[4932,4933],[2296,2297],[2055,2056],[8292,8293],[6141,6142],[1808,1809],[2508,2509],[5399,5400],[5884,5885],[2643,2644],[3039,3040],[3373,3374],[7891,7892],[1760,1761],[3648,3649],[4224,4225],[5758,5759],[4219,4220],[4402,4403],[6835,6836],[7075,7076],[5107,5108],[6248,6249],[1995,1996],[4428,4429],[5155,5156],[3412,3413],[3551,3552],[2100,2101],[3279,3280],[4544,4545],[1374,1375],[3491,3492],[6187,6188],[1230,1231],[3082,3083],[5075,5076],[5929,5930],[7080,7081],[5102,5103],[5523,5524],[1980,1981],[5983,5984],[671,672],[640,641],[5400,5401],[6029,6030],[1109,1110],[6256,6257],[5446,5447],[1302,1303],[5324,5325],[6985,6986],[713,714],[6318,6319],[6570,6571],[54,55],[2066,2067],[6322,6323],[4115,4116],[2866,2867],[4515,4516],[3878,3879],[7005,7006],[2956,2957],[6168,6169],[2103,2104],[6336,6337],[6421,6422],[4703,4704],[7261,7262],[2878,2879],[4078,4079],[3085,3086],[3718,3719],[3393,3394],[5060,5061],[7218,7219],[2883,2884],[1616,1617],[4872,4873],[5182,5183],[2580,2581],[3765,3766],[852,853],[305,306],[1522,1523],[3637,3638],[5414,5415],[6992,6993],[2132,2133],[3674,3675],[8087,8088],[5954,5955],[782,783],[7761,7762],[7549,7550],[4331,4332],[8280,8281],[2539,2540],[4950,4951],[4182,4183],[8242,8243],[266,267],[5569,5570],[1618,1619],[3342,3343],[1323,1324],[3020,3021],[93,94],[5245,5246],[414,415],[1155,1156],[525,526],[283,284],[7252,7253],[2249,2250],[6337,6338],[4739,4740],[3382,3383],[6799,6800],[3148,3149],[2763,2764],[4189,4190],[6264,6265],[3521,3522],[6564,6565],[6950,6951],[222,223],[381,382],[4583,4584],[1122,1123],[934,935],[1721,1722],[8233,8234],[1687,1688],[3291,3292],[936,937],[566,567],[262,263],[7430,7431],[5343,5344],[4503,4504],[4262,4263],[2258,2259],[2230,2231],[2430,2431],[2402,2403],[7289,7290],[4152,4153],[5946,5947],[6798,6799],[4348,4349],[8054,8055],[496,497],[376,377],[592,593],[1669,1670],[2992,2993],[5926,5927],[5927,5928],[2115,2116],[8007,8008],[329,330],[2285,2286],[5436,5437],[3069,3070],[1802,1803],[6843,6844],[1774,1775],[1242,1243],[7363,7364],[1925,1926],[8257,8258],[2467,2468],[2676,2677],[375,376],[4329,4330],[6897,6898],[2812,2813],[2570,2571],[3934,3935],[5922,5923],[4440,4441],[3514,3515],[1809,1810],[4049,4050],[6392,6393],[6780,6781],[6031,6032],[5198,5199],[764,765],[7160,7161],[2558,2559],[618,619],[3458,3459],[5688,5689],[3846,3847],[4012,4013],[5632,5633],[5166,5167],[6759,6760],[5317,5318],[7959,7960],[6139,6140],[3106,3107],[187,188],[4938,4939],[3501,3502],[514,515],[1970,1971],[5186,5187],[1405,1406],[1419,1420],[4185,4186],[8167,8168],[2584,2585],[520,521],[5785,5786],[7138,7139],[1733,1734],[6941,6942],[6174,6175],[1052,1053],[1912,1913],[7910,7911],[2248,2249],[2001,2002],[7812,7813],[6774,6775],[1810,1811],[449,450],[957,958],[766,767],[4736,4737],[6943,6944],[4543,4544],[4920,4921],[4211,4212],[4854,4855],[2267,2268],[7717,7718],[3762,3763],[6473,6474],[6437,6438],[3131,3132],[1231,1232],[4257,4258],[7605,7606],[2084,2085],[5412,5413],[59,60],[4900,4901],[7519,7520],[6089,6090],[6450,6451],[4907,4908],[5391,5392],[7225,7226],[2121,2122],[5772,5773],[420,421],[3179,3180],[5173,5174],[2387,2388],[6587,6588],[8149,8150],[1843,1844],[2278,2279],[1295,1296],[6574,6575],[4192,4193],[2422,2423],[5727,5728],[6393,6394],[2929,2930],[5753,5754],[4023,4024],[3294,3295],[6302,6303],[5495,5496],[3978,3979],[245,246],[3756,3757],[2237,2238],[4120,4121],[2110,2111],[2109,2110],[5614,5615],[7234,7235],[2900,2901],[4809,4810],[4379,4380],[5580,5581],[137,138],[5450,5451],[3617,3618],[7912,7913],[4450,4451],[4205,4206],[1369,1370],[3074,3075],[6552,6553],[7017,7018],[1038,1039],[4609,4610],[277,278],[998,999],[4690,4691],[83,84],[5647,5648],[6232,6233],[1787,1788],[325,326],[2670,2671],[4327,4328],[693,694],[6401,6402],[7526,7527],[7499,7500],[6691,6692],[1119,1120],[5539,5540],[6735,6736],[8304,8305],[1467,1468],[4585,4586],[1654,1655],[3858,3859],[1267,1268],[599,600],[4896,4897],[7594,7595],[3217,3218],[1092,1093],[6282,6283],[3003,3004],[8045,8046],[3504,3505],[1916,1917],[6417,6418],[5471,5472],[6093,6094],[2685,2686],[1271,1272],[4500,4501],[5890,5891],[5644,5645],[2603,2604],[744,745],[4354,4355],[3781,3782],[178,179],[1902,1903],[2660,2661],[758,759],[757,758],[7184,7185],[1623,1624],[7471,7472],[2899,2900],[171,172],[1062,1063],[1860,1861],[2937,2938],[3643,3644],[1288,1289],[3414,3415],[1234,1235],[2328,2329],[396,397],[1407,1408],[7536,7537],[706,707],[1452,1453],[1765,1766],[8152,8153],[8338,8339],[7638,7639],[2202,2203],[7517,7518],[3633,3634],[7169,7170],[5738,5739],[1590,1591],[3109,3110],[2615,2616],[1157,1158],[5538,5539],[8071,8072],[4171,4172],[3104,3105],[6750,6751],[4928,4929],[7947,7948],[6934,6935],[4613,4614],[6046,6047],[1363,1364],[4022,4023],[7697,7698],[3677,3678],[7616,7617],[6146,6147],[6358,6359],[928,929],[4406,4407],[1724,1725],[857,858],[433,434],[4310,4311],[3312,3313],[6301,6302],[3888,3889],[6926,6927],[7876,7877],[3397,3398],[5092,5093],[1940,1941],[4696,4697],[331,332],[7183,7184],[3022,3023],[3581,3582],[4966,4967],[7831,7832],[385,386],[1013,1014],[6087,6088],[1753,1754],[1538,1539],[5308,5309],[1619,1620],[3296,3297],[659,660],[7173,7174],[4622,4623],[7675,7676],[160,161],[1849,1850],[2633,2634],[2222,2223],[5352,5353],[6275,6276],[3972,3973],[7093,7094],[3641,3642],[6088,6089],[1286,1287],[7096,7097],[6839,6840],[5516,5517],[2024,2025],[555,556],[7657,7658],[4309,4310],[2397,2398],[162,163],[3422,3423],[7725,7726],[6372,6373],[4074,4075],[387,388],[1516,1517],[2609,2610],[2199,2200],[759,760],[7504,7505],[4789,4790],[4858,4859],[4967,4968],[4173,4174],[4834,4835],[348,349],[3908,3909],[4758,4759],[1790,1791],[7521,7522],[7862,7863],[4270,4271],[3527,3528],[191,192],[1103,1104],[645,646],[3549,3550],[6844,6845],[4768,4769],[1209,1210],[6900,6901],[1992,1993],[2147,2148],[2455,2456],[6951,6952],[4235,4236],[4778,4779],[2266,2267],[7507,7508],[3589,3590],[431,432],[8191,8192],[1080,1081],[3666,3667],[7228,7229],[6355,6356],[6965,6966],[5372,5373],[312,313],[3482,3483],[7583,7584],[7791,7792],[3083,3084],[2026,2027],[1624,1625],[4870,4871],[7739,7740],[7373,7374],[2474,2475],[1111,1112],[6009,6010],[3773,3774],[4434,4435],[2873,2874],[7015,7016],[153,154],[3226,3227],[202,203],[5263,5264],[1824,1825],[7816,7817],[7247,7248],[122,123],[797,798],[3770,3771],[5072,5073],[8205,8206],[2489,2490],[1499,1500],[7104,7105],[7267,7268],[2425,2426],[466,467],[8330,8331],[24,25],[6634,6635],[321,322],[6856,6857],[2551,2552],[3207,3208],[666,667],[8248,8249],[2469,2470],[2803,2804],[295,296],[5643,5644],[2846,2847],[6782,6783],[6625,6626],[6266,6267],[5676,5677],[4508,4509],[2359,2360],[7081,7082],[2406,2407],[8020,8021],[1699,1700],[8063,8064],[984,985],[6362,6363],[4062,4063],[1270,1271],[6736,6737],[3721,3722],[6303,6304],[8016,8017],[1548,1549],[2935,2936],[7694,7695],[272,273],[3847,3848],[7275,7276],[5747,5748],[2048,2049],[4153,4154],[6387,6388],[5455,5456],[437,438],[2065,2066],[3891,3892],[6721,6722],[2946,2947],[5725,5726],[250,251],[7498,7499],[5788,5789],[6218,6219],[733,734],[3817,3818],[4491,4492],[6879,6880],[327,328],[2977,2978],[7538,7539],[4638,4639],[7416,7417],[3075,3076],[4653,4654],[639,640],[6554,6555],[5113,5114],[8150,8151],[6887,6888],[6663,6664],[7711,7712],[1712,1713],[993,994],[8018,8019],[109,110],[7161,7162],[2140,2141],[1223,1224],[534,535],[4197,4198],[4318,4319],[3685,3686],[3546,3547],[4498,4499],[7308,7309],[399,400],[3175,3176],[5656,5657],[7475,7476],[454,455],[5305,5306],[2252,2253],[7839,7840],[4404,4405],[2550,2551],[6167,6168],[5004,5005],[4517,4518],[3935,3936],[1994,1995],[3969,3970],[1950,1951],[6646,6647],[643,644],[146,147],[4466,4467],[7506,7507],[5578,5579],[4665,4666],[4617,4618],[4216,4217],[4093,4094],[1572,1573],[3918,3919],[30,31],[4666,4667],[3042,3043],[872,873],[5255,5256],[4927,4928],[5285,5286],[2470,2471],[2537,2538],[3840,3841],[1020,1021],[4800,4801],[3092,3093],[1697,1698],[7058,7059],[5911,5912],[5558,5559],[4407,4408],[1076,1077],[5226,5227],[6808,6809],[3795,3796],[1366,1367],[7828,7829],[5453,5454],[1204,1205],[3913,3914],[6979,6980],[4336,4337],[5918,5919],[7152,7153],[1685,1686],[4007,4008],[1713,1714],[8232,8233],[2105,2106],[1945,1946],[7501,7502],[2176,2177],[521,522],[3428,3429],[1151,1152],[7597,7598],[2635,2636],[7977,7978],[546,547],[3787,3788],[5257,5258],[3125,3126],[6194,6195],[4995,4996],[7351,7352],[8307,8308],[921,922],[2316,2317],[1272,1273],[3573,3574],[2025,2026],[6010,6011],[243,244],[5692,5693],[1684,1685],[5438,5439],[5223,5224],[175,176],[7072,7073],[655,656],[2487,2488],[6525,6526],[5145,5146],[4065,4066],[3597,3598],[1922,1923],[623,624],[110,111],[3805,3806],[7555,7556],[6295,6296],[6524,6525],[7908,7909],[5866,5867],[5649,5650],[7643,7644],[8089,8090],[3045,3046],[8228,8229],[1689,1690],[8140,8141],[8349,8350],[8300,8301],[1519,1520],[7266,7267],[2965,2966],[1051,1052],[1146,1147],[2076,2077],[4011,4012],[3837,3838],[1163,1164],[3751,3752],[5623,5624],[827,828],[8284,8285],[1462,1463],[1128,1129],[3425,3426],[5085,5086],[1539,1540],[5362,5363],[6998,6999],[6113,6114],[1269,1270],[6642,6643],[3964,3965],[5111,5112],[4766,4767],[8252,8253],[2274,2275],[1525,1526],[5595,5596],[398,399],[1450,1451],[6136,6137],[2326,2327],[2052,2053],[214,215],[7723,7724],[2984,2985],[1094,1095],[3116,3117],[6776,6777],[2050,2051],[2225,2226],[6615,6616],[5444,5445],[7755,7756],[4775,4776],[2325,2326],[2742,2743],[5915,5916],[6476,6477],[7580,7581],[8175,8176],[1129,1130],[3836,3837],[7411,7412],[1237,1238],[1293,1294],[999,1000],[4673,4674],[7562,7563],[5887,5888],[3668,3669],[4802,4803],[4965,4966],[6376,6377],[7189,7190],[4991,4992],[7918,7919],[4648,4649],[1626,1627],[6511,6512],[3105,3106],[7760,7761],[3794,3795],[3299,3300],[1444,1445],[7612,7613],[133,134],[5851,5852],[3686,3687],[6882,6883],[3665,3666],[1728,1729],[3470,3471],[5103,5104],[5620,5621],[7254,7255],[6540,6541],[4030,4031],[4916,4917],[4168,4169],[1651,1652],[303,304],[8126,8127],[402,403],[4245,4246],[8028,8029],[6639,6640],[4771,4772],[4793,4794],[8351,8352],[3657,3658],[5378,5379],[1508,1509],[1696,1697],[3404,3405],[5253,5254],[2196,2197],[5235,5236],[6687,6688],[3193,3194],[6096,6097],[6163,6164],[1073,1074],[2472,2473],[2279,2280],[3282,3283],[2377,2378],[8090,8091],[2647,2648],[5834,5835],[1653,1654],[3292,3293],[1040,1041],[7255,7256],[3851,3852],[6484,6485],[3024,3025],[7103,7104],[858,859],[1981,1982],[5912,5913],[2765,2766],[377,378],[8301,8302],[7086,7087],[2221,2222],[3142,3143],[1355,1356],[787,788],[7838,7839],[3477,3478],[5817,5818],[2419,2420],[2921,2922],[4055,4056],[1324,1325],[1325,1326],[3495,3496],[5668,5669],[5731,5732],[7241,7242],[2750,2751],[5463,5464],[6865,6866],[3051,3052],[6702,6703],[279,280],[1498,1499],[3268,3269],[2376,2377],[362,363],[6021,6022],[7346,7347],[4212,4213],[6395,6396],[5006,5007],[3523,3524],[4217,4218],[6805,6806],[1378,1379],[3091,3092],[6534,6535],[6016,6017],[1895,1896],[5179,5180],[807,808],[1755,1756],[6819,6820],[5125,5126],[204,205],[2463,2464],[7941,7942],[2943,2944],[3506,3507],[569,570],[2095,2096],[3326,3327],[505,506],[3730,3731],[5088,5089],[7774,7775],[3156,3157],[6438,6439],[7112,7113],[8348,8349],[1273,1274],[6581,6582],[3497,3498],[7389,7390],[5051,5052],[5744,5745],[4550,4551],[2577,2578],[5904,5905],[87,88],[51,52],[3218,3219],[3655,3656],[1736,1737],[2845,2846],[2978,2979],[6426,6427],[2712,2713],[1360,1361],[652,653],[1568,1569],[6918,6919],[5678,5679],[6416,6417],[4684,4685],[3681,3682],[1327,1328],[7002,7003],[1698,1699],[6439,6440],[1390,1391],[904,905],[4986,4987],[570,571],[1510,1511],[4141,4142],[5058,5059],[1434,1435],[4885,4886],[5059,5060],[2041,2042],[7790,7791],[5170,5171],[5962,5963],[7304,7305],[5767,5768],[2757,2758],[786,787],[408,409],[5611,5612],[614,615],[6291,6292],[694,695],[7436,7437],[3820,3821],[7970,7971],[6013,6014],[1280,1281],[5821,5822],[7778,7779],[6034,6035],[3652,3653],[6157,6158],[7981,7982],[7788,7789],[95,96],[2516,2517],[6913,6914],[7938,7939],[6065,6066],[736,737],[5909,5910],[1003,1004],[309,310],[2310,2311],[588,589],[6423,6424],[4304,4305],[2444,2445],[2907,2908],[912,913],[1346,1347],[3099,3100],[8294,8295],[3097,3098],[7305,7306],[3678,3679],[2701,2702],[6732,6733],[2538,2539],[2412,2413],[1306,1307],[4873,4874],[7934,7935],[7897,7898],[8001,8002],[6875,6876],[3432,3433],[1218,1219],[5873,5874],[4843,4844],[2307,2308],[5333,5334],[8147,8148],[3130,3131],[8046,8047],[2657,2658],[467,468],[5535,5536],[2644,2645],[351,352],[7858,7859],[2130,2131],[2744,2745],[6334,6335],[1811,1812],[7047,7048],[3158,3159],[6028,6029],[1832,1833],[2187,2188],[677,678],[6077,6078],[6684,6685],[7227,7228],[720,721],[139,140],[8036,8037],[4360,4361],[473,474],[4542,4543],[2254,2255],[345,346],[1383,1384],[3277,3278],[2901,2902],[7649,7650],[5242,5243],[5264,5265],[1581,1582],[7827,7828],[3021,3022],[4860,4861],[3555,3556],[8151,8152],[638,639],[2042,2043],[3897,3898],[3842,3843],[8051,8052],[3436,3437],[3890,3891],[3509,3510],[5773,5774],[4606,4607],[2853,2854],[6445,6446],[4468,4469],[2719,2720],[4446,4447],[3894,3895],[1006,1007],[8319,8320],[2245,2246],[2391,2392],[1341,1342],[2616,2617],[5940,5941],[6694,6695],[6130,6131],[5865,5866],[4384,4385],[226,227],[4514,4515],[4842,4843],[4142,4143],[2324,2325],[1986,1987],[5892,5893],[716,717],[5041,5042],[349,350],[8222,8223],[3402,3403],[6970,6971],[5030,5031],[2903,2904],[5733,5734],[5413,5414],[5847,5848],[389,390],[1408,1409],[1056,1057],[234,235],[7984,7985],[2510,2511],[4025,4026],[1521,1522],[558,559],[5225,5226],[94,95],[5574,5575],[8159,8160],[5171,5172],[2547,2548],[1514,1515],[2375,2376],[3203,3204],[237,238],[1976,1977],[4925,4926],[22,23],[343,344],[1388,1389],[216,217],[2668,2669],[2288,2289],[1024,1025],[7696,7697],[2215,2216],[683,684],[7007,7008],[7137,7138],[3786,3787],[4946,4947],[2553,2554],[1932,1933],[7574,7575],[8207,8208],[6589,6590],[5430,5431],[2192,2193],[132,133],[1159,1160],[3950,3951],[5839,5840],[7385,7386],[854,855],[1158,1159],[7825,7826],[2399,2400],[2290,2291],[2514,2515],[8141,8142],[6170,6171],[7462,7463],[5443,5444],[6515,6516],[290,291],[6399,6400],[2434,2435],[186,187],[1901,1902],[7040,7041],[7586,7587],[7602,7603],[8101,8102],[5323,5324],[7860,7861],[229,230],[2068,2069],[6374,6375],[230,231],[7198,7199],[3433,3434],[2638,2639],[6311,6312],[1936,1937],[1284,1285],[5478,5479],[969,970],[2164,2165],[805,806],[7829,7830],[1562,1563],[4745,4746],[7547,7548],[1463,1464],[3017,3018],[5487,5488],[2217,2218],[3988,3989],[7511,7512],[5485,5486],[691,692],[7626,7627],[5978,5979],[6614,6615],[3804,3805],[2218,2219],[2384,2385],[2648,2649],[2718,2719],[5486,5487],[2776,2777],[8260,8261],[2810,2811],[2861,2862],[5511,5512],[1865,1866],[3789,3790],[5221,5222],[2352,2353],[5704,5705],[2545,2546],[3755,3756],[8340,8341],[1336,1337],[2170,2171],[954,955],[2408,2409],[5641,5642],[7943,7944],[3336,3337],[1872,1873],[2231,2232],[1630,1631],[6686,6687],[3023,3024],[6184,6185],[1678,1679],[3548,3549],[6974,6975],[6410,6411],[5844,5845],[3682,3683],[194,195],[8137,8138],[3030,3031],[1617,1618],[26,27],[5234,5235],[1625,1626],[629,630],[7929,7930],[658,659],[7452,7453],[4165,4166],[2350,2351],[7118,7119],[2918,2919],[3884,3885],[551,552],[626,627],[1835,1836],[4206,4207],[5973,5974],[2142,2143],[6053,6054],[3985,3986],[4586,4587],[6656,6657],[6482,6483],[7648,7649],[3761,3762],[4571,4572],[8354,8355],[5331,5332],[3954,3955],[4883,4884],[1749,1750],[2629,2630],[210,211],[6889,6890],[6380,6381],[168,169],[129,130],[3405,3406],[2008,2009],[4223,4224],[2312,2313],[5585,5586],[2772,2773],[6609,6610],[1720,1721],[6880,6881],[2259,2260],[7089,7090],[5188,5189],[7853,7854],[1929,1930],[4114,4115],[3304,3305],[5044,5045],[942,943],[8274,8275],[6433,6434],[1670,1671],[7048,7049],[6035,6036],[1563,1564],[3137,3138],[4714,4715],[1745,1746],[7018,7019],[6370,6371],[2009,2010],[3303,3304],[4757,4758],[4721,4722],[5712,5713],[4911,4912],[6523,6524],[6674,6675],[8095,8096],[3149,3150],[493,494],[4492,4493],[3136,3137],[1401,1402],[532,533],[3920,3921],[5721,5722],[7456,7457],[8178,8179],[8299,8300],[3750,3751],[5241,5242],[1768,1769],[3534,3535],[379,380],[2824,2825],[2527,2528],[3510,3511],[3167,3168],[3577,3578],[5552,5553],[3635,3636],[6475,6476],[6762,6763],[358,359],[2605,2606],[1428,1429],[2612,2613],[6062,6063],[2825,2826],[6640,6641],[6886,6887],[7449,7450],[1252,1253],[108,109],[2424,2425],[2194,2195],[401,402],[7197,7198],[3971,3972],[2294,2295],[71,72],[2145,2146],[4845,4846],[4551,4552],[4340,4341],[3443,3444],[1063,1064],[6849,6850],[1059,1060],[6864,6865],[7130,7131],[6602,6603],[4470,4471],[6354,6355],[3683,3684],[4069,4070],[3254,3255],[3354,3355],[6030,6031],[882,883],[4564,4565],[2593,2594],[3640,3641],[6386,6387],[5945,5946],[814,815],[6754,6755],[3906,3907],[1188,1189],[6019,6020],[5416,5417],[603,604],[1117,1118],[5513,5514],[4668,4669],[1201,1202],[6616,6617],[5243,5244],[3899,3900],[4754,4755],[6281,6282],[4113,4114],[5392,5393],[2936,2937],[6940,6941],[4382,4383],[7552,7553],[4742,4743],[1143,1144],[3792,3793],[5554,5555],[5117,5118],[3845,3846],[5951,5952],[4177,4178],[6195,6196],[1168,1169],[3031,3032],[7782,7783],[3857,3858],[573,574],[3140,3141],[3621,3622],[8314,8315],[2413,2414],[4040,4041],[2291,2292],[5877,5878],[4377,4378],[1160,1161],[1935,1936],[5625,5626],[4944,4945],[3335,3336],[8238,8239],[7324,7325],[2808,2809],[6603,6604],[3526,3527],[7544,7545],[6005,6006],[181,182],[7258,7259],[1967,1968],[7963,7964],[4322,4323],[2620,2621],[5442,5443],[4174,4175],[6630,6631],[6558,6559],[5553,5554],[3800,3801],[5670,5671],[7146,7147],[1141,1142],[5467,5468],[323,324],[8308,8309],[4366,4367],[5986,5987],[3380,3381],[1987,1988],[5328,5329],[3118,3119],[4128,4129],[5475,5476],[6693,6694],[3444,3445],[2305,2306],[1308,1309],[1121,1122],[3361,3362],[3333,3334],[974,975],[7613,7614],[6838,6839],[135,136],[3872,3873],[6960,6961],[2730,2731],[5347,5348],[4719,4720],[4166,4167],[3995,3996],[2726,2727],[7397,7398],[2251,2252],[5079,5080],[451,452],[7976,7977],[8355,8356],[4482,4483],[8311,8312],[4308,4309],[4116,4117],[839,840],[5396,5397],[4971,4972],[1686,1687],[6624,6625],[4054,4055],[2658,2659],[3989,3990],[103,104],[6074,6075],[28,29],[499,500],[472,473],[5781,5782],[4772,4773],[4999,5000],[7073,7074],[1782,1783],[2543,2544],[748,749],[7692,7693],[3519,3520],[249,250],[7732,7733],[2473,2474],[7066,7067],[206,207],[7556,7557],[7848,7849],[2887,2888],[8250,8251],[308,309],[165,166],[2075,2076],[3628,3629],[803,804],[1552,1553],[7810,7811],[5618,5619],[3188,3189],[5393,5394],[6770,6771],[4627,4628],[5659,5660],[3844,3845],[7446,7447],[6758,6759],[5653,5654],[3958,3959],[601,602],[5069,5070],[4881,4882],[7857,7858],[8056,8057],[4796,4797],[2361,2362],[2708,2709],[2597,2598],[2281,2282],[6140,6141],[7292,7293],[3707,3708],[518,519],[977,978],[5205,5206],[941,942],[3466,3467],[4671,4672],[5146,5147],[3390,3391],[317,318],[1764,1765],[6100,6101],[452,453],[6032,6033],[4607,4608],[3070,3071],[3900,3901],[3391,3392],[1646,1647],[7991,7992],[2814,2815],[1021,1022],[1478,1479],[6572,6573],[7243,7244],[5367,5368],[1214,1215],[2298,2299],[1966,1967],[7867,7868],[6538,6539],[7811,7812],[2952,2953],[7230,7231],[4279,4280],[503,504],[8310,8311],[4977,4978],[6855,6856],[7563,7564],[6937,6938],[661,662],[1701,1702],[8168,8169],[5014,5015],[4808,4809],[3830,3831],[3223,3224],[47,48],[5707,5708],[6984,6985],[4248,4249],[4587,4588],[2393,2394],[5790,5791],[7479,7480],[3383,3384],[7343,7344],[7336,7337],[5419,5420],[7216,7217],[3616,3617],[1797,1798],[1248,1249],[4890,4891],[4689,4690],[894,895],[7808,7809],[7039,7040],[6537,6538],[3711,3712],[4811,4812],[5551,5552],[4233,4234],[5152,5153],[2627,2628],[6320,6321],[5371,5372],[185,186],[5900,5901],[253,254],[5748,5749],[5993,5994],[352,353],[4186,4187],[951,952],[1217,1218],[7797,7798],[3524,3525],[512,513],[7824,7825],[1962,1963],[68,69],[8115,8116],[7263,7264],[7842,7843],[4753,4754],[2074,2075],[6192,6193],[1386,1387],[1807,1808],[5303,5304],[1361,1362],[6548,6549],[1859,1860],[4709,4710],[4647,4648],[3173,3174],[2208,2209],[1134,1135],[1294,1295],[4862,4863],[4533,4534],[322,323],[3835,3836],[3072,3073],[1524,1525],[1023,1024],[8014,8015],[5755,5756],[5028,5029],[7123,7124],[1431,1432],[6040,6041],[4731,4732],[6066,6067],[8013,8014],[3472,3473],[46,47],[3834,3835],[3832,3833],[5203,5204],[1300,1301],[6745,6746],[366,367],[2498,2499],[1132,1133],[5811,5812],[7001,7002],[4108,4109],[1529,1530],[7634,7635],[8004,8005],[1923,1924],[7370,7371],[906,907],[8061,8062],[7855,7856],[3473,3474],[3134,3135],[7650,7651],[3330,3331],[5729,5730],[7961,7962],[486,487],[6267,6268],[5694,5695],[1028,1029],[1659,1660],[810,811],[2138,2139],[5087,5088],[5703,5704],[3596,3597],[2292,2293],[4362,4363],[889,890],[98,99],[8121,8122],[2436,2437],[1469,1470],[2955,2956],[464,465],[2452,2453],[5932,5933],[3400,3401],[6201,6202],[3801,3802],[4261,4262],[1913,1914],[1455,1456],[6165,6166],[4026,4027],[7603,7604],[5544,5545],[2439,2440],[8024,8025],[5745,5746],[1814,1815],[7863,7864],[742,743],[8172,8173],[8198,8199],[3166,3167],[4194,4195],[2323,2324],[7177,7178],[5880,5881],[4292,4293],[3656,3657],[795,796],[5021,5022],[6813,6814],[6057,6058],[1205,1206],[2209,2210],[7095,7096],[4134,4135],[4009,4010],[7025,7026],[6506,6507],[6795,6796],[7719,7720],[6261,6262],[5855,5856],[8037,8038],[6121,6122],[3880,3881],[5864,5865],[5220,5221],[3580,3581],[5053,5054],[7607,7608],[6209,6210],[2333,2334],[3932,3933],[1948,1949],[390,391],[5677,5678],[6470,6471],[8333,8334],[685,686],[4823,4824],[5206,5207],[7055,7056],[1997,1998],[2683,2684],[2353,2354],[3558,3559],[880,881],[2655,2656],[8244,8245],[6279,6280],[4161,4162],[3860,3861],[4846,4847],[1919,1920],[3752,3753],[8059,8060],[531,532],[6215,6216],[2311,2312],[8171,8172],[886,887],[5151,5152],[6080,6081],[8329,8330],[4915,4916],[6418,6419],[2529,2530],[837,838],[3178,3179],[5345,5346],[79,80],[6627,6628],[5902,5903],[4893,4894],[5279,5280],[6319,6320],[7663,7664],[3938,3939],[4267,4268],[3560,3561],[1993,1994],[7916,7917],[8073,8074],[562,563],[4443,4444],[668,669],[6638,6639],[8103,8104],[5536,5537],[1507,1508],[3957,3958],[884,885],[4652,4653],[2088,2089],[5885,5886],[5023,5024],[3088,3089],[961,962],[5334,5335],[681,682],[6068,6069],[6239,6240],[1120,1121],[7208,7209],[3500,3501],[669,670],[3016,3017],[6208,6209],[6056,6057],[5823,5824],[6148,6149],[5248,5249],[320,321],[6054,6055],[4510,4511],[4476,4477],[6147,6148],[1730,1731],[5266,5267],[6507,6508],[847,848],[5655,5656],[5589,5590],[6662,6663],[6894,6895],[5420,5421],[975,976],[7886,7887],[336,337],[2211,2212],[7448,7449],[5799,5800],[1047,1048],[8085,8086],[1747,1748],[995,996],[7769,7770],[5543,5544],[4454,4455],[7315,7316],[751,752],[1285,1286],[3515,3516],[5045,5046],[7512,7513],[6125,6126],[7730,7731],[4844,4845],[1716,1717],[1319,1320],[6257,6258],[7069,7070],[2021,2022],[4301,4302],[2190,2191],[3363,3364],[8032,8033],[299,300],[7420,7421],[4358,4359],[2818,2819],[4373,4374],[4555,4556],[3170,3171],[7325,7326],[4536,4537],[52,53],[2607,2608],[5613,5614],[2319,2320],[4017,4018],[4602,4603],[6440,6441],[5765,5766],[6431,6432],[2440,2441],[4228,4229],[6734,6735],[8009,8010],[3263,3264],[1064,1065],[7083,7084],[1380,1381],[6991,6992],[5835,5836],[7107,7108],[2032,2033],[6692,6693],[1001,1002],[7193,7194],[248,249],[40,41],[3852,3853],[1194,1195],[7023,7024],[1305,1306],[6613,6614],[6413,6414],[6520,6521],[5698,5699],[4955,4956],[4888,4889],[6407,6408],[4283,4284],[6729,6730],[3204,3205],[5529,5530],[6178,6179],[4744,4745],[7010,7011],[1371,1372],[5806,5807],[3636,3637],[1166,1167],[4392,4393],[8015,8016],[3396,3397],[1558,1559],[1982,1983],[7057,7058],[2442,2443],[5599,5600],[2816,2817],[7880,7881],[6683,6684],[3975,3976],[7684,7685],[929,930],[6299,6300],[3119,3120],[7896,7897],[6948,6949],[7683,7684],[5246,5247],[2476,2477],[7279,7280],[1631,1632],[7599,7600],[3240,3241],[3669,3670],[4056,4057],[3010,3011],[5123,5124],[6555,6556],[5193,5194],[2806,2807],[1356,1357],[724,725],[836,837],[4133,4134],[7840,7841],[1384,1385],[4442,4443],[7388,7389],[1114,1115],[1402,1403],[7245,7246],[5019,5020],[4681,4682],[7904,7905],[5743,5744],[3174,3175],[3479,3480],[1989,1990],[5287,5288],[3618,3619],[6828,6829],[5916,5917],[1391,1392],[3850,3851],[6465,6466],[4394,4395],[7418,7419],[1131,1132],[5124,5125],[1470,1471],[1588,1589],[1892,1893],[5361,5362],[1574,1575],[1861,1862],[5917,5918],[7806,7807],[2072,2073],[6812,6813],[2795,2796],[3189,3190],[7942,7943],[4791,4792],[5496,5497],[3352,3353],[3532,3533],[350,351],[2822,2823],[7845,7846],[3037,3038],[4940,4941],[7167,7168],[1956,1957],[5335,5336],[1759,1760],[6982,6983],[834,835],[8223,8224],[4608,4609],[2817,2818],[5740,5741],[6635,6636],[2289,2290],[6518,6519],[6761,6762],[5907,5908],[5346,5347],[6043,6044],[6454,6455],[3417,3418],[2058,2059],[7278,7279],[1504,1505],[4661,4662],[1435,1436],[5685,5686],[5389,5390],[7515,7516],[4312,4313],[3046,3047],[1034,1035],[2460,2461],[4677,4678],[6298,6299],[1008,1009],[7386,7387],[5201,5202],[5159,5160],[8235,8236],[1403,1404],[7865,7866],[3350,3351],[8041,8042],[5402,5403],[7964,7965],[8263,8264],[3746,3747],[1484,1485],[1627,1628],[2083,2084],[5719,5720],[5237,5238],[2464,2465],[723,724],[4983,4984],[4243,4244],[3111,3112],[6079,6080],[2493,2494],[610,611],[4615,4616],[4341,4342],[4784,4785],[7913,7914],[4959,4960],[820,821],[5658,5659],[8240,8241],[4266,4267],[6495,6496],[1750,1751],[6049,6050],[4169,4170],[1531,1532],[5276,5277],[7591,7592],[1447,1448],[5126,5127],[5035,5036],[5610,5611],[5160,5161],[3550,3551],[4621,4622],[608,609],[4138,4139],[2809,2810],[3776,3777],[4692,4693],[4423,4424],[4727,4728],[6012,6013],[6156,6157],[8206,8207],[2253,2254],[3714,3715],[6408,6409],[3553,3554],[7450,7451],[1259,1260],[70,71],[4085,4086],[8247,8248],[3619,3620],[4264,4265],[3322,3323],[7899,7900],[3378,3379],[4099,4100],[7349,7350],[7700,7701],[944,945],[3150,3151],[867,868],[2451,2452],[5642,5643],[7282,7283],[3090,3091],[332,333],[8255,8256],[3824,3825],[4698,4699],[2999,3000],[6533,6534],[7383,7384],[4664,4665],[2920,2921],[7960,7961],[1261,1262],[3155,3156],[223,224],[2563,2564],[4704,4705],[2524,2525],[393,394],[4282,4283],[4029,4030],[2073,2074],[2486,2487],[5431,5432],[7951,7952],[118,119],[2356,2357],[6575,6576],[7667,7668],[2860,2861],[6769,6770],[7273,7274],[2334,2335],[2512,2513],[5509,5510],[2732,2733],[3110,3111],[8261,8262],[4490,4491],[822,823],[4943,4944],[5985,5986],[3488,3489],[404,405],[7151,7152],[2916,2917],[1544,1545],[3915,3916],[6017,6018],[6047,6048],[6331,6332],[1089,1090],[7596,7597],[6724,6725],[7708,7709],[7053,7054],[3901,3902],[145,146],[2120,2121],[2711,2712],[6517,6518],[1779,1780],[8285,8286],[6945,6946],[6872,6873],[4499,4500],[8120,8121],[6957,6958],[5984,5985],[4683,4684],[4624,4625],[7437,7438],[3903,3904],[7573,7574],[426,427],[7741,7742],[3381,3382],[4947,4948],[5375,5376],[3979,3980],[3818,3819],[5586,5587],[5934,5935],[4724,4725],[4717,4718],[421,422],[2852,2853],[966,967],[6648,6649],[5766,5767],[5250,5251],[2830,2831],[1303,1304],[4344,4345],[4335,4336],[5867,5868],[887,888],[7226,7227],[29,30],[3135,3136],[7920,7921],[7966,7967],[6435,6436],[6814,6815],[3571,3572],[3129,3130],[3199,3200],[2523,2524],[6405,6406],[6196,6197],[4729,4730],[3184,3185],[292,293],[2144,2145],[3409,3410],[3365,3366],[1184,1185],[458,459],[741,742],[6536,6537],[2915,2916],[489,490],[6037,6038],[4588,4589],[3924,3925],[1667,1668],[4960,4961],[8195,8196],[3712,3713],[3600,3601],[4628,4629],[6124,6125],[2304,2305],[8219,8220],[7979,7980],[3449,3450],[2856,2857],[5210,5211],[6403,6404],[4419,4420],[7253,7254],[156,157],[200,201],[1071,1072],[7492,7493],[3862,3863],[6234,6235],[3612,3613],[7050,7051],[2461,2462],[7318,7319],[6543,6544],[5925,5926],[8100,8101],[2284,2285],[5795,5796],[5545,5546],[1975,1976],[2540,2541],[6007,6008],[7094,7095],[2640,2641],[6719,6720],[2525,2526],[3575,3576],[4876,4877],[3025,3026],[8346,8347],[5355,5356],[1229,1230],[4611,4612],[4572,4573],[3316,3317],[447,448],[4616,4617],[2991,2992],[6935,6936],[8048,8049],[3048,3049],[2669,2670],[7766,7767],[1031,1032],[6608,6609],[2174,2175],[7687,7688],[604,605],[6082,6083],[7360,7361],[8313,8314],[6949,6950],[862,863],[7874,7875],[7558,7559],[3540,3541],[1065,1066],[5247,5248],[2178,2179],[6448,6449],[1176,1177],[3905,3906],[7931,7932],[3970,3971],[5512,5513],[5147,5148],[4592,4593],[5556,5557],[902,903],[930,931],[2064,2065],[4534,4535],[4246,4247],[5299,5300],[7627,7628],[7469,7470],[5726,5727],[7669,7670],[5531,5532],[8044,8045],[7067,7068],[6565,6566],[7956,7957],[4059,4060],[5200,5201],[8058,8059],[371,372],[950,951],[7491,7492],[4207,4208],[4399,4400],[3994,3995],[3257,3258],[4595,4596],[6347,6348],[808,809],[6446,6447],[7792,7793],[1597,1598],[749,750],[2394,2395],[5290,5291],[4338,4339],[6351,6352],[5730,5731],[3462,3463],[5737,5738],[7691,7692],[567,568],[7721,7722],[1666,1667],[4718,4719],[1591,1592],[1352,1353],[3490,3491],[3883,3884],[6884,6885],[7124,7125],[1424,1425],[5778,5779],[4700,4701],[5316,5317],[7396,7397],[5154,5155],[1193,1194],[7973,7974],[2673,2674],[4123,4124],[1338,1339],[2666,2667],[273,274],[8266,8267],[943,944],[7077,7078],[1410,1411],[8042,8043],[7062,7063],[7637,7638],[967,968],[6428,6429],[5507,5508],[5672,5673],[7204,7205],[2371,2372],[5784,5785],[4723,4724],[7819,7820],[2924,2925],[5830,5831],[7527,7528],[6349,6350],[4856,4857],[6241,6242],[50,51],[8123,8124],[856,857],[1133,1134],[2475,2476],[1900,1901],[6977,6978],[1077,1078],[1137,1138],[7668,7669],[5971,5972],[2707,2708],[4019,4020],[871,872],[1310,1311],[6172,6173],[5969,5970],[4804,4805],[3559,3560],[1692,1693],[4817,4818],[3738,3739],[1677,1678],[8236,8237],[2004,2005],[6067,6068],[5047,5048],[6545,6546],[5258,5259],[315,316],[2904,2905],[5774,5775],[6767,6768],[6978,6979],[8092,8093],[508,509],[7401,7402],[6824,6825],[5686,5687],[4493,4494],[5990,5991],[6601,6602],[7852,7853],[2405,2406],[3601,3602],[2509,2510],[6791,6792],[3868,3869],[1497,1498],[8080,8081],[6539,6540],[154,155],[6225,6226],[2766,2767],[4050,4051],[1212,1213],[2909,2910],[19,20],[5831,5832],[869,870],[4526,4527],[5863,5864],[58,59],[6664,6665],[1274,1275],[3531,3532],[3060,3061],[6071,6072],[2788,2789],[5314,5315],[6499,6500],[1436,1437],[7817,7818],[5185,5186],[6594,6595],[1412,1413],[1049,1050],[6469,6470],[5963,5964],[721,722],[3041,3042],[1731,1732],[8230,8231],[3256,3257],[842,843],[8119,8120],[3590,3591],[2403,2404],[5564,5565],[5222,5223],[7030,7031],[1256,1257],[4788,4789],[4525,4526],[6911,6912],[4511,4512],[2702,2703],[5001,5002],[2368,2369],[5757,5758],[4289,4290],[2769,2770],[6204,6205],[6500,6501],[8220,8221],[7781,7782],[1613,1614],[5842,5843],[7408,7409],[18,19],[6169,6170],[7090,7091],[2511,2512],[4291,4292],[740,741],[6273,6274],[4537,4538],[2854,2855],[3028,3029],[3081,3082],[873,874],[6519,6520],[265,266],[5427,5428],[2337,2338],[2694,2695],[5350,5351],[2223,2224],[2995,2996],[4193,4194],[703,704],[3499,3500],[36,37],[800,801],[8291,8292],[3377,3378],[4176,4177],[6149,6150],[2133,2134],[384,385],[4904,4905],[7284,7285],[899,900],[7868,7869],[7577,7578],[3936,3937],[4840,4841],[78,79],[1614,1615],[342,343],[3736,3737],[1688,1689],[1358,1359],[5742,5743],[7153,7154],[3202,3203],[7935,7936],[7232,7233],[578,579],[7747,7748],[1195,1196],[1220,1221],[8146,8147],[5631,5632],[4339,4340],[1416,1417],[2157,2158],[7773,7774],[7969,7970],[2044,2045],[1856,1857],[6836,6837],[5068,5069],[6583,6584],[4400,4401],[7300,7301],[142,143],[2630,2631],[575,576],[1957,1958],[3395,3396],[115,116],[3727,3728],[4359,4360],[3233,3234],[6375,6376],[2759,2760],[2471,2472],[1793,1794],[4015,4016],[1365,1366],[6655,6656],[1725,1726],[2112,2113],[4319,4320],[702,703],[2363,2364],[8227,8228],[4051,4052],[4457,4458],[8135,8136],[7664,7665],[1058,1059],[2758,2759],[167,168],[5318,5319],[1055,1056],[6429,6430],[5061,5062],[2061,2062],[3133,3134],[5150,5151],[838,839],[2642,2643],[6925,6926],[1876,1877],[5384,5385],[6496,6497],[6953,6954],[441,442],[1914,1915],[7459,7460],[3486,3487],[2097,2098],[3598,3599],[1125,1126],[3177,3178],[6652,6653],[774,775],[6206,6207],[4179,4180],[2716,2717],[2997,2998],[911,912],[6466,6467],[8183,8184],[3368,3369],[6826,6827],[4584,4585],[5903,5904],[1140,1141],[879,880],[4067,4068],[1415,1416],[3569,3570],[6001,6002],[5048,5049],[4705,4706],[3976,3977],[2297,2298],[6706,6707],[2454,2455],[7328,7329],[193,194],[7306,7307],[2573,2574],[1509,1510],[3885,3886],[4201,4202],[4237,4238],[5462,5463],[2850,2851],[6202,6203],[7494,7495],[4355,4356],[5142,5143],[1315,1316],[3359,3360],[5567,5568],[2462,2463],[6464,6465],[3803,3804],[2160,2161],[3766,3767],[7026,7027],[2863,2864],[7186,7187],[4256,4257],[2043,2044],[7922,7923],[7765,7766],[5357,5358],[3403,3404],[7553,7554],[1628,1629],[3814,3815],[1245,1246],[6708,6709],[235,236],[1096,1097],[8055,8056],[1045,1046],[6743,6744],[1972,1973],[3450,3451],[2572,2573],[140,141],[3687,3688],[6412,6413],[1228,1229],[2101,2102],[2416,2417],[3877,3878],[8350,8351],[6571,6572],[5281,5282],[2998,2999],[2360,2361],[6807,6808],[1658,1659],[4735,4736],[2780,2781],[4272,4273],[6786,6787],[7348,7349],[3562,3563],[8143,8144],[5852,5853],[6845,6846],[2934,2935],[4630,4631],[5321,5322],[3926,3927],[5191,5192],[4414,4415],[7043,7044],[7187,7188],[3480,3481],[7277,7278],[1551,1552],[675,676],[4507,4508],[6514,6515],[3799,3800],[4365,4366],[2689,2690],[7902,7903],[3948,3949],[3469,3470],[7115,7116],[1874,1875],[4722,4723],[5197,5198],[4651,4652],[5787,5788],[4984,4985],[2802,2803],[23,24],[2625,2626],[5720,5721],[596,597],[461,462],[6763,6764],[7131,7132],[4877,4878],[1246,1247],[7220,7221],[4441,4442],[4060,4061],[3126,3127],[296,297],[7731,7732],[7582,7583],[4565,4566],[254,255],[2268,2269],[3478,3479],[4909,4910],[5209,5210],[6217,6218],[1620,1621],[7296,7297],[2395,2396],[777,778],[1208,1209],[1343,1344],[6737,6738],[1828,1829],[4447,4448],[4240,4241],[6211,6212],[1233,1234],[3288,3289],[1781,1782],[1836,1837],[3187,3188],[3387,3388],[5679,5680],[7064,7065],[7156,7157],[8158,8159],[8091,8092],[5012,5013],[7350,7351],[589,590],[3513,3514],[2969,2970],[2338,2339],[3210,3211],[4835,4836],[4982,4983],[3983,3984],[2131,2132],[2675,2676],[4779,4780],[7214,7215],[3579,3580],[2111,2112],[457,458],[6588,6589],[1776,1777],[6118,6119],[5959,5960],[7921,7922],[8153,8154],[4488,4489],[6666,6667],[3689,3690],[4841,4842],[2941,2942],[1693,1694],[637,638],[6024,6025],[8060,8061],[2158,2159],[5238,5239],[7635,7636],[7546,7547],[1570,1571],[6626,6627],[3778,3779],[3009,3010],[7609,7610],[6685,6686],[217,218],[3567,3568],[6430,6431],[4580,4581],[1949,1950],[2797,2798],[3358,3359],[711,712],[6679,6680],[1442,1443],[7772,7773],[1586,1587],[4149,4150],[663,664],[5018,5019],[3451,3452],[8181,8182],[6073,6074],[2754,2755],[1804,1805],[5330,5331],[3615,3616],[8273,8274],[8182,8183],[7953,7954],[1279,1280],[7528,7529],[3543,3544],[2302,2303],[690,691],[5615,5616],[1963,1964],[5820,5821],[1561,1562],[407,408],[1882,1883],[7353,7354],[5576,5577],[2705,2706],[4471,4472],[8057,8058],[5356,5357],[4750,4751],[1429,1430],[591,592],[3865,3866],[4528,4529],[5500,5501],[8210,8211],[6577,6578],[6092,6093],[7620,7621],[6644,6645],[7680,7681],[7674,7675],[4952,4953],[27,28],[3008,3009],[5549,5550],[1871,1872],[2835,2836],[2226,2227],[4770,4771],[3498,3499],[196,197],[6784,6785],[1505,1506],[1607,1608],[4286,4287],[3440,3441],[6132,6133],[6468,6469],[280,281],[6847,6848],[684,685],[5547,5548],[5979,5980],[3733,3734],[372,373],[49,50],[2295,2296],[3624,3625],[1862,1863],[5494,5495],[7427,7428],[1594,1595],[1530,1531],[7705,7706],[2541,2542],[8305,8306],[8144,8145],[1998,1999],[5158,5159],[382,383],[6238,6239],[1354,1355],[6391,6392],[1437,1438],[6109,6110],[561,562],[6309,6310],[5930,5931],[4238,4239],[7379,7380],[3328,3329],[819,820],[6452,6453],[6748,6749],[119,120],[1192,1193],[7818,7819],[1599,1600],[6245,6246],[7205,7206],[2365,2366],[5603,5604],[6619,6620],[3468,3469],[4451,4452],[386,387],[1439,1440],[6718,6719],[956,957],[1186,1187],[7716,7717],[400,401],[4181,4182],[5648,5649],[5701,5702],[6939,6940],[6739,6740],[7257,7258],[3058,3059],[1368,1369],[4699,4700],[286,287],[1154,1155],[1988,1989],[6738,6739],[6833,6834],[4066,4067],[949,950],[804,805],[337,338],[7836,7837],[3238,3239],[2686,2687],[6036,6037],[4997,4998],[1477,1478],[7917,7918],[4345,4346],[727,728],[4886,4887],[4861,4862],[5675,5676],[1029,1030],[6997,6998],[2590,2591],[6055,6056],[6883,6884],[3062,3063],[6198,6199],[935,936],[5388,5389],[4918,4919],[289,290],[5136,5137],[2116,2117],[6479,6480],[3367,3368],[1944,1945],[8099,8100],[7272,7273],[2729,2730],[6346,6347],[4501,4502],[1881,1882],[3460,3461],[4281,4282],[3585,3586],[6137,6138],[2027,2028],[422,423],[3114,3115],[4198,4199],[6607,6608],[3998,3999],[5112,5113],[542,543],[5354,5355],[1780,1781],[1206,1207],[4669,4670],[4898,4899],[8110,8111],[209,210],[2264,2265],[2996,2997],[1379,1380],[619,620],[4486,4487],[8203,8204],[4633,4634],[4921,4922],[4912,4913],[4634,4635],[5565,5566],[6219,6220],[4529,4530],[511,512],[3007,3008],[1886,1887],[7928,7929],[8188,8189],[1043,1044],[4061,4062],[445,446],[7925,7926],[6830,6831],[6551,6552],[2682,2683],[6424,6425],[8325,8326],[7422,7423],[1683,1684],[4080,4081],[2677,2678],[1566,1567],[1165,1166],[5652,5653],[2193,2194],[5732,5733],[5710,5711],[3349,3350],[4578,4579],[5348,5349],[6449,6450],[1676,1677],[3812,3813],[6317,6318],[3739,3740],[8265,8266],[2813,2814],[698,699],[5813,5814],[3907,3908],[6920,6921],[1656,1657],[3826,3827],[3374,3375],[908,909],[919,920],[477,478],[1681,1682],[3688,3689],[5260,5261],[5514,5515],[189,190],[6952,6953],[251,252],[2005,2006],[8122,8123],[8237,8238],[6153,6154],[2077,2078],[1938,1939],[959,960],[1868,1869],[4579,4580],[5716,5717],[1984,1985],[4548,4549],[5665,5666],[4582,4583],[1177,1178],[3572,3573],[3141,3142],[6605,6606],[2346,2347],[6221,6222],[356,357],[4255,4256],[6134,6135],[3018,3019],[4290,4291],[1845,1846],[5905,5906],[765,766],[4280,4281],[2407,2408],[621,622],[4086,4087],[7500,7501],[4720,4721],[2398,2399],[1526,1527],[4897,4898],[7031,7032],[5157,5158],[3947,3948],[3949,3950],[7203,7204],[2003,2004],[1911,1912],[4895,4896],[1714,1715],[5120,5121],[152,153],[3898,3899],[5594,5595],[6792,6793],[667,668],[7114,7115],[4545,4546],[7391,7392],[789,790],[1044,1045],[319,320],[7794,7795],[924,925],[7297,7298],[2542,2543],[752,753],[5955,5956],[2216,2217],[6463,6464],[7826,7827],[6296,6297],[7380,7381],[2023,2024],[5484,5485],[3775,3776],[1351,1352],[5524,5525],[7221,7222],[5140,5141],[7195,7196],[4125,4126],[5325,5326],[5807,5808],[6796,6797],[7889,7890],[4037,4038],[6781,6782],[2618,2619],[7406,7407],[1494,1495],[6816,6817],[6492,6493],[2495,2496],[3078,3079],[7670,7671],[2478,2479],[4929,4930],[2740,2741],[7344,7345],[1493,1494],[4127,4128],[1960,1961],[1978,1979],[5212,5213],[997,998],[5359,5360],[363,364],[5682,5683],[699,700],[6478,6479],[544,545],[4333,4334],[6650,6651],[7841,7842],[2922,2923],[6252,6253],[5616,5617],[3185,3186],[1934,1935],[8327,8328],[988,989],[1554,1555],[586,587],[4988,4989],[7059,7060],[605,606],[4388,4389],[4674,4675],[4610,4611],[425,426],[3892,3893],[5358,5359],[4641,4642],[2185,2186],[1482,1483],[2459,2460],[5488,5489],[3124,3125],[7702,7703],[3346,3347],[7425,7426],[4538,4539],[7433,7434],[2770,2771],[5562,5563],[8281,8282],[8102,8103],[3295,3296],[6859,6860],[1878,1879],[6272,6273],[7993,7994],[4031,4032],[3461,3462],[3951,3952],[3319,3320],[8342,8343],[2373,2374],[7830,7831],[2433,2434],[7210,7211],[6566,6567],[6152,6153],[5080,5081],[2198,2199],[726,727],[7873,7874],[1262,1263],[35,36],[7686,7687],[3881,3882],[4208,4209],[1517,1518],[8352,8353],[5875,5876],[4899,4900],[2745,2746],[2168,2169],[4251,4252],[7262,7263],[6397,6398],[3489,3490],[8160,8161],[5764,5765],[1983,1984],[6578,6579],[2067,2068],[1663,1664],[1638,1639],[4483,4484],[3015,3016],[7191,7192],[7172,7173],[3853,3854],[2437,2438],[6550,6551],[987,988],[2090,2091],[4978,4979],[1490,1491],[2431,2432],[7636,7637],[307,308],[7154,7155],[3147,3148],[7800,7801],[3999,4000],[5861,5862],[7762,7763],[2895,2896],[5483,5484],[5841,5842],[754,755],[6573,6574],[2917,2918],[3530,3531],[5910,5911],[662,663],[4855,4856],[5233,5234],[3067,3068],[1130,1131],[760,761],[1417,1418],[5605,5606],[1593,1594],[5709,5710],[6369,6370],[4761,4762],[6166,6167],[1032,1033],[5996,5997],[2255,2256],[1506,1507],[6325,6326],[1337,1338],[4828,4829],[7879,7880],[1726,1727],[4330,4331],[1549,1550],[4039,4040],[3886,3887],[316,317],[8107,8108],[1603,1604],[7579,7580],[3145,3146],[1110,1111],[124,125],[2748,2749],[3566,3567],[8229,8230],[1789,1790],[7288,7289],[7690,7691],[1904,1905],[3321,3322],[6333,6334],[756,757],[7656,7657],[6400,6401],[1456,1457],[3802,3803],[3375,3376],[364,365],[2351,2352],[7601,7602],[5662,5663],[7413,7414],[2990,2991],[695,696],[3927,3928],[3758,3759],[7333,7334],[5826,5827],[7022,7023],[2031,2032],[2287,2288],[7143,7144],[1173,1174],[2330,2331],[7786,7787],[1844,1845],[5751,5752],[347,348],[177,178],[8094,8095],[1771,1772],[7101,7102],[4190,4191],[268,269],[8279,8280],[392,393],[2594,2595],[2662,2663],[5081,5082],[3708,3709],[7051,7052],[1727,1728],[3937,3938],[6512,6513],[2503,2504],[1200,1201],[1221,1222],[2564,2565],[7424,7425],[5858,5859],[2494,2495],[4575,4576],[2973,2974],[8287,8288],[1105,1106],[715,716],[2246,2247],[7768,7769],[5458,5459],[6959,6960],[2191,2192],[7417,7418],[4801,4802],[972,973],[5952,5953],[5802,5803],[8315,8316],[8136,8137],[5988,5989],[5470,5471],[3545,3546],[2857,2858],[5434,5435],[4829,4830],[190,191],[3089,3090],[7485,7486],[2239,2240],[4363,4364],[3278,3279],[2842,2843],[1010,1011],[3176,3177],[3013,3014],[5862,5863],[6398,6399],[1079,1080],[4139,4140],[4398,4399],[7206,7207],[3587,3588],[1512,1513],[2091,2092],[7063,7064],[6289,6290],[7745,7746],[6752,6753],[7162,7163],[183,184],[687,688],[1425,1426],[7784,7785],[7724,7725],[6580,6581],[6263,6264],[519,520],[5550,5551],[5588,5589],[4311,4312],[66,67],[6060,6061],[590,591],[1615,1616],[5691,5692],[2820,2821],[44,45],[1707,1708],[816,817],[6061,6062],[3471,3472],[2269,2270],[4942,4943],[2720,2721],[5606,5607],[8196,8197],[609,610],[7381,7382],[6108,6109],[2578,2579],[4930,4931],[6915,6916],[8084,8085],[5521,5522],[986,987],[1918,1919],[1278,1279],[182,183],[6313,6314],[1362,1363],[7444,7445],[6384,6385],[3153,3154],[2659,2660],[7087,7088],[469,470],[6254,6255],[2240,2241],[6701,6702],[1313,1314],[8214,8215],[2910,2911],[7703,7704],[7584,7585],[4831,4832],[1864,1865],[3706,3707],[3273,3274],[1991,1992],[3035,3036],[864,865],[3413,3414],[4554,4555],[4004,4005],[821,822],[5121,5122],[7145,7146],[4100,4101],[2876,2877],[2592,2593],[2649,2650],[37,38],[5162,5163],[3364,3365],[7355,7356],[3940,3941],[403,404],[38,39],[1088,1089],[7564,7565],[340,341],[3406,3407],[3216,3217],[2798,2799],[3496,3497],[2562,2563],[7673,7674],[6584,6585],[5440,5441],[6371,6372],[6458,6459],[6981,6982],[2951,2952],[6988,6989],[1974,1975],[2974,2975],[5477,5478],[6414,6415],[6251,6252],[2896,2897],[6675,6676],[791,792],[2093,2094],[7142,7143],[5976,5977],[5840,5841],[6964,6965],[4265,4266],[3769,3770],[2942,2943],[6817,6818],[6226,6227],[6535,6536],[7606,7607],[5591,5592],[1171,1172],[1392,1393],[565,566],[6526,6527],[4987,4988],[5657,5658],[541,542],[4807,4808],[5228,5229],[7150,7151],[7014,7015],[6989,6990],[8345,8346],[3735,3736],[2672,2673],[5468,5469],[1333,1334],[6975,6976],[5398,5399],[2163,2164],[868,869],[1420,1421],[7483,7484],[3933,3934],[3720,3721],[1542,1543],[1451,1452],[5944,5945],[7974,7975],[2282,2283],[8258,8259],[2983,2984],[6793,6794],[7548,7549],[8065,8066],[4296,4297],[176,177],[5432,5433],[276,277],[7321,7322],[4667,4668],[948,949],[5754,5755],[5571,5572],[7624,7625],[2652,2653],[1457,1458],[4894,4895],[6681,6682],[1084,1085],[7982,7983],[813,814],[3441,3442],[3749,3750],[7756,7757],[5557,5558],[1715,1716],[7693,7694],[6944,6945],[6432,6433],[6486,6487],[7744,7745],[5039,5040],[3139,3140],[895,896],[4278,4279],[4473,4474],[3220,3221],[4776,4777],[1894,1895],[794,795],[6651,6652],[5559,5560],[7445,7446],[2056,2057],[3554,3555],[6220,6221],[2868,2869],[7365,7366],[2188,2189],[991,992],[4980,4981],[2595,2596],[5974,5975],[4879,4880],[7798,7799],[120,121],[8011,8012],[1017,1018],[335,336],[3502,3503],[5128,5129],[1762,1763],[7168,7169],[5382,5383],[958,959],[7134,7135],[3902,3903],[2409,2410],[7352,7353],[2438,2439],[1738,1739],[1050,1051],[6326,6327],[896,897],[8295,8296],[8241,8242],[5957,5958],[3609,3610],[4989,4990],[6502,6503],[1629,1630],[7493,7494],[4853,4854],[3154,3155],[4077,4078],[5845,5846],[5032,5033],[5064,5065],[7147,7148],[3339,3340],[7854,7855],[6541,6542],[859,860],[7281,7282],[69,70],[4922,4923],[6697,6698],[6342,6343],[5804,5805],[7802,7803],[2831,2832],[5734,5735],[2033,2034],[747,748],[3742,3743],[2881,2882],[1818,1819],[483,484],[3849,3850],[3420,3421],[7618,7619],[7357,7358],[3797,3798],[7008,7009],[4530,4531],[369,370],[5161,5162],[150,151],[3360,3361],[2879,2880],[2490,2491],[6240,6241],[3146,3147],[7793,7794],[2704,2705],[8269,8270],[4821,4822],[1840,1841],[7495,7496],[1108,1109],[579,580],[6472,6473],[2727,2728],[7795,7796],[701,702],[1830,1831],[3827,3828],[6011,6012],[7487,7488],[7610,7611],[832,833],[648,649],[6344,6345],[7327,7328],[4728,4729],[6114,6115],[2601,2602],[7429,7430],[3274,3275],[6394,6395],[8234,8235],[3813,3814],[5762,5763],[7314,7315],[1831,1832],[778,779],[8104,8105],[1254,1255],[5859,5860],[2089,2090],[6933,6934],[3107,3108],[6018,6019],[2300,2301],[6726,6727],[3338,3339],[3249,3250],[438,439],[4452,4453],[5948,5949],[5943,5944],[4598,4599],[1372,1373],[7971,7972],[2696,2697],[533,534],[2982,2983],[8331,8332],[2182,2183],[7274,7275],[5697,5698],[5426,5427],[3266,3267],[2869,2870],[4495,4496],[2152,2153],[7754,7755],[1577,1578],[4383,4384],[594,595],[4072,4073],[197,198],[1888,1889],[1959,1960],[2492,2493],[1187,1188],[2576,2577],[5336,5337],[5457,5458],[65,66],[5566,5567],[1741,1742],[4522,4523],[7932,7933],[3863,3864],[7804,7805],[1215,1216],[1825,1826],[6637,6638],[5042,5043],[1290,1291],[1491,1492],[4762,4763],[3494,3495],[4427,4428],[8275,8276],[5007,5008],[2535,2536],[5654,5655],[3825,3826],[7955,7956],[1632,1633],[1398,1399],[802,803],[5274,5275],[1033,1034],[2,3],[2450,2451],[582,583],[7567,7568],[4969,4970],[2581,2582],[2693,2694],[6516,6517],[4180,4181],[6504,6505],[7412,7413],[2841,2842],[4254,4255],[4352,4353],[5942,5943],[233,234],[72,73],[1748,1749],[3917,3918],[6483,6484],[6967,6968],[549,550],[597,598],[1502,1503],[4277,4278],[4089,4090],[1332,1333],[5848,5849],[7271,7272],[2939,2940],[5522,5523],[5038,5039],[5219,5220],[931,932],[221,222],[6081,6082],[7480,7481],[1104,1105],[7113,7114],[471,472],[4464,4465],[21,22],[6712,6713],[8249,8250],[1203,1204],[926,927],[4232,4233],[2799,2800],[2953,2954],[7065,7066],[2262,2263],[990,991],[5360,5361],[8186,8187],[8023,8024],[1264,1265],[2971,2972],[4147,4148],[5340,5341],[5583,5584],[169,170],[861,862],[7392,7393],[34,35],[4869,4870],[1145,1146],[665,666],[6825,6826],[3594,3595],[2828,2829],[4094,4095],[3423,3424],[3693,3694],[890,891],[5199,5200],[6190,6191],[8347,8348],[535,536],[1207,1208],[1432,1433],[7213,7214],[6878,6879],[2905,2906],[7570,7571],[219,220],[8075,8076],[3087,3088],[2734,2735],[5639,5640],[6710,6711],[5165,5166],[5311,5312],[875,876],[341,342],[6379,6380],[4656,4657],[7097,7098],[1061,1062],[5760,5761],[6853,6854],[7832,7833],[5593,5594],[2948,2949],[6576,6577],[5832,5833],[7619,7620],[4183,4184],[3334,3335],[500,501],[6749,6750],[5029,5030],[6243,6244],[3221,3222],[5683,5684],[1422,1423],[2382,2383],[7822,7823],[2784,2785],[554,555],[3369,3370],[4644,4645],[4774,4775],[6293,6294],[5465,5466],[5115,5116],[7540,7541],[6353,6354],[4570,4571],[672,673],[2236,2237],[6223,6224],[3522,3523],[6647,6648],[5714,5715],[8112,8113],[4044,4045],[5268,5269],[2787,2788],[442,443],[3591,3592],[7340,7341],[1225,1226],[4956,4957],[6936,6937],[4743,4744],[6963,6964],[7518,7519],[3939,3940],[8245,8246],[6270,6271],[7200,7201],[5309,5310],[1784,1785],[2549,2550],[6277,6278],[6557,6558],[3103,3104],[5546,5547],[4908,4909],[7376,7377],[2637,2638],[5505,5506],[5282,5283],[3529,3530],[5798,5799],[7148,7149],[679,680],[2315,2316],[6075,6076],[4864,4865],[4288,4289],[7298,7299],[7468,7469],[3121,3122],[4070,4071],[7738,7739],[620,621],[2012,2013],[940,941],[6585,6586],[1791,1792],[7658,7659],[1850,1851],[885,886],[6014,6015],[6094,6095],[8077,8078],[7476,7477],[4221,4222],[6366,6367],[8157,8158],[3212,3213],[5055,5056],[628,629],[7497,7498],[3211,3212],[380,381],[3955,3956],[5630,5631],[504,505],[2786,2787],[3332,3333],[7704,7705],[3161,3162],[5365,5366],[1848,1849],[1758,1759],[5249,5250],[7264,7265],[6292,6293],[2651,2652],[678,679],[780,781],[3607,3608],[4521,4522],[2791,2792],[2276,2277],[2875,2876],[1124,1125],[91,92],[5003,5004],[2546,2547],[2568,2569],[1347,1348],[2477,2478],[5508,5509],[8132,8133],[2301,2302],[6787,6788],[8334,8335],[7861,7862],[3785,3786],[495,496],[5964,5965],[6962,6963],[7337,7338],[971,972],[1704,1705],[3757,3758],[6117,6118],[482,483],[2108,2109],[7629,7630],[4805,4806],[7209,7210],[4489,4490],[158,159],[7276,7277],[4852,4853],[5300,5301],[5349,5350],[3384,3385],[3049,3050],[2733,2734],[5604,5605],[3355,3356],[4247,4248],[3225,3226],[4140,4141],[2057,2058],[7888,7889],[7945,7946],[43,44],[5293,5294],[7157,7158],[7320,7321],[7163,7164],[4465,4466],[654,655],[7472,7473],[7076,7077],[7989,7990],[8154,8155],[6144,6145],[5718,5719],[488,489],[2449,2450],[3952,3953],[2947,2948],[7736,7737],[4081,4082],[3503,3504],[1915,1916],[5306,5307],[4229,4230],[1191,1192],[2838,2839],[2028,2029],[5459,5460],[4875,4876],[3741,3742],[2836,2837],[2636,2637],[2544,2545],[4013,4014],[4637,4638],[1330,1331],[5674,5675],[484,485],[1757,1758],[3996,3997],[6419,6420],[3327,3328],[3376,3377],[1304,1305],[8116,8117],[7012,7013],[2327,2328],[2792,2793],[4741,4742],[2667,2668],[4785,4786],[4130,4131],[41,42],[6260,6261],[3112,3113],[2695,2696],[901,902],[7046,7047],[2624,2625],[4619,4620],[267,268],[7233,7234],[7614,7615],[3724,3725],[5967,5968],[4052,4053],[6328,6329],[4284,4285],[6123,6124],[7752,7753],[1312,1313],[3854,3855],[4783,4784],[897,898],[1085,1086],[3767,3768],[686,687],[853,854],[2128,2129],[2789,2790],[6622,6623],[6210,6211],[6213,6214],[4740,4741],[3308,3309],[4426,4427],[5181,5182],[8302,8303],[2054,2055],[3050,3051],[5129,5130],[6680,6681],[6778,6779],[7135,7136],[2071,2072],[5341,5342],[1805,1806],[172,173],[4851,4852],[1846,1847],[4531,4532],[7962,7963],[2864,2865],[3528,3529],[1879,1880],[7561,7562],[3722,3723],[4299,4300],[8081,8082],[3680,3681],[1438,1439],[1798,1799],[4868,4869],[1775,1776],[2256,2257],[7681,7682],[2710,2711],[1235,1236],[258,259],[1068,1069],[7666,7667],[2354,2355],[3941,3942],[2785,2786],[1841,1842],[5608,5609],[5801,5802],[4367,4368],[4252,4253],[1770,1771],[5118,5119],[5645,5646],[1342,1343],[75,76],[4560,4561],[5908,5909],[985,986],[2980,2981],[2722,2723],[5466,5467],[6742,6743],[4444,4445],[166,167],[4389,4390],[2204,2205],[3163,3164],[1113,1114],[5286,5287],[14,15],[6343,6344],[779,780],[7004,7005],[5673,5674],[2717,2718],[134,135],[446,447],[697,698],[1763,1764],[571,572],[7085,7086],[4825,4826],[7461,7462],[1734,1735],[5914,5915],[3426,3427],[6098,6099],[6731,6732],[1350,1351],[7595,7596],[2410,2411],[6917,6918],[7181,7182],[3340,3341],[4935,4936],[6076,6077],[2557,2558],[5684,5685],[1239,1240],[6197,6198],[7140,7141],[6946,6947],[2427,2428],[4421,4422],[8034,8035],[7368,7369],[192,193],[7859,7860],[5369,5370],[6895,6896],[1947,1948],[5711,5712],[7481,7482],[6106,6107],[6230,6231],[5451,5452],[42,43],[2030,2031],[3831,3832],[6222,6223],[4781,4782],[7759,7760],[2343,2344],[2653,2654],[1541,1542],[5587,5588],[6699,6700],[8335,8336],[893,894],[722,723],[6357,6358],[4934,4935],[5031,5032],[6803,6804],[5666,5667],[6938,6939],[5782,5783],[6099,6100],[1283,1284],[1801,1802],[4158,4159],[3695,3696],[80,81],[4629,4630],[5070,5071],[269,270],[5277,5278],[3895,3896],[5239,5240],[6070,6071],[8108,8109],[2619,2620],[5089,5090],[7623,7624],[8251,8252],[2034,2035],[4258,4259],[2735,2736],[6389,6390],[616,617],[5919,5920],[932,933],[1535,1536],[3997,3998],[2272,2273],[3620,3621],[6923,6924],[5215,5216],[6474,6475],[2317,2318],[462,463],[2811,2812],[4430,4431],[829,830],[2051,2052],[583,584],[7503,7504],[6378,6379],[2481,2482],[5294,5295],[419,420],[491,492],[5533,5534],[2435,2436],[311,312],[7251,7252],[1920,1921],[2656,2657],[435,436],[1393,1394],[2737,2738],[5825,5826],[2684,2685],[3525,3526],[5960,5961],[6705,6706],[7082,7083],[3411,3412],[6592,6593],[7820,7821],[6490,6491],[7875,7876],[4325,4326],[4631,4632],[1910,1911],[6145,6146],[5646,5647],[905,906],[4364,4365],[3283,3284],[7948,7949],[2280,2281],[1322,1323],[3873,3874],[6549,6550],[7743,7744],[577,578],[2197,2198],[3168,3169],[2332,2333],[7331,7332],[2556,2557],[1268,1269],[696,697],[2014,2015],[492,493],[7455,7456],[3310,3311],[5024,5025],[3484,3485],[5091,5092],[6733,6734],[6294,6295],[1812,1813],[3698,3699],[1596,1597],[7543,7544],[4230,4231],[1795,1796],[6363,6364],[3101,3102],[6842,6843],[3556,3557],[2575,2576],[557,558],[4199,4200],[7641,7642],[3904,3905],[3172,3173],[2243,2244],[4902,4903],[7980,7981],[2038,2039],[5163,5164],[1093,1094],[8021,8022],[1083,1084],[4981,4982],[3953,3954],[5262,5263],[7915,7916],[427,428],[5789,5790],[7041,7042],[6910,6911],[3700,3701],[3684,3685],[5135,5136],[5775,5776],[6582,6583],[7734,7735],[1196,1197],[5941,5942],[7377,7378],[4361,4362],[7631,7632],[5651,5652],[3614,3615],[4097,4098],[4708,4709],[860,861],[1711,1712],[572,573],[3604,3605],[6285,6286],[3307,3308],[1251,1252],[1816,1817],[3608,3609],[1772,1773],[5970,5971],[3731,3732],[6026,6027],[1282,1283],[3356,3357],[1376,1377],[6436,6437],[5093,5094],[3819,3820],[298,299],[3793,3794],[5899,5900],[7805,7806],[1496,1497],[3627,3628],[1939,1940],[4195,4196],[3568,3569],[2560,2561],[4214,4215],[7478,7479],[3079,3080],[3323,3324],[6809,6810],[1973,1974],[4416,4417],[3574,3575],[1167,1168],[170,171],[1359,1360],[6233,6234],[3992,3993],[6873,6874],[7060,7061],[547,548],[6406,6407],[5581,5582],[3234,3235],[2931,2932],[2154,2155],[3987,3988],[3004,3005],[4676,4677],[3027,3028],[3726,3727],[7217,7218],[5717,5718],[1219,1220],[6716,6717],[5230,5231],[6361,6362],[4356,4357],[1946,1947],[2774,2775],[126,127],[8323,8324],[753,754],[4215,4216],[478,479],[4993,4994],[7628,7629],[3676,3677],[7061,7062],[5078,5079],[7707,7708],[7309,7310],[4612,4613],[2962,2963],[3034,3035],[4812,4813],[1257,1258],[7709,7710],[395,396],[4917,4918],[3923,3924],[3914,3915],[5827,5828],[1854,1855],[7837,7838],[2390,2391],[1648,1649],[3912,3913],[7525,7526],[1395,1396],[7088,7089],[6138,6139],[244,245],[676,677],[7939,7940],[5938,5939],[5013,5014],[6182,6183],[2583,2584],[2172,2173],[1852,1853],[2944,2945],[4650,4651],[6235,6236],[4546,4547],[529,530],[543,544],[3771,3772],[2506,2507],[5130,5131],[8113,8114],[3305,3306],[2265,2266],[4707,4708],[1719,1720],[423,424],[5050,5051],[6773,6774],[7566,7567],[4342,4343],[4213,4214],[428,429],[3774,3775],[6064,6065],[3753,3754],[2859,2860],[7404,7405],[2661,2662],[6678,6679],[7682,7683],[2739,2740],[770,771],[3047,3048],[5094,5095],[4076,4077],[6101,6102],[6629,6630],[1951,1952],[3485,3486],[865,866],[2244,2245],[416,417],[3243,3244],[6779,6780],[1655,1656],[4998,4999],[7084,7085],[6427,6428],[6365,6366],[4227,4228],[2521,2522],[7185,7186],[606,607],[1857,1858],[5164,5165],[6990,6991],[2721,2722],[3662,3663],[3435,3436],[5256,5257],[5254,5255],[3810,3811],[5786,5787],[3632,3633],[2913,2914],[3190,3191],[3032,3033],[2165,2166],[487,488],[641,642],[3353,3354],[2639,2640],[3192,3193],[5705,5706],[275,276],[5304,5305],[1837,1838],[6324,6325],[4226,4227],[1673,1674],[3084,3085],[67,68],[6908,6909],[7202,7203],[2804,2805],[1397,1398],[4393,4394],[8026,8027],[4794,4795],[3235,3236],[2119,2120],[7611,7612],[584,585],[734,735],[2608,2609],[4112,4113],[1060,1061],[714,715],[7513,7514],[5713,5714],[6513,6514],[3896,3897],[4593,4594],[2234,2235],[6902,6903],[3481,3482],[6746,6747],[7523,7524],[4422,4423],[7460,7461],[523,524],[888,889],[4218,4219],[5906,5907],[7268,7269],[7166,7167],[5216,5217],[227,228],[3399,3400],[2536,2537],[7995,7996],[138,139],[1385,1386],[7179,7180],[394,395],[5449,5450],[6682,6683],[456,457],[3919,3920],[5122,5123],[3911,3912],[241,242],[1889,1890],[4411,4412],[7590,7591],[8093,8094],[4202,4203],[1869,1870],[5989,5990],[1822,1823],[4162,4163],[7236,7237],[6703,6704],[656,657],[768,769],[6396,6397],[4889,4890],[3811,3812],[2793,2794],[2889,2890],[5267,5268],[763,764],[2678,2679],[1473,1474],[8148,8149],[5931,5932],[7270,7271],[5116,5117],[2059,2060],[4520,4521],[2882,2883],[7070,7071],[3626,3627],[7881,7882],[2979,2980],[2336,2337],[2807,2808],[5067,5068],[4693,4694],[6420,6421],[5208,5209],[6840,6841],[3576,3577],[5680,5681],[5886,5887],[7362,7363],[4679,4680],[5207,5208],[6700,6701],[359,360],[3747,3748],[593,594],[7895,7896],[700,701],[4645,4646],[7742,7743],[8127,8128],[8106,8107],[6193,6194],[1464,1465],[7949,7950],[2679,2680],[4780,4781],[4105,4106],[1224,1225],[1082,1083],[4396,4397],[7136,7137],[173,174],[2214,2215],[127,128],[5074,5075],[2599,2600],[6848,6849],[8174,8175],[4172,4173],[4655,4656],[6775,6776],[4124,4125],[2000,2001],[460,461],[1091,1092],[1202,1203],[8309,8310],[3606,3607],[5224,5225],[6789,6790],[6595,6596],[6316,6317],[4387,4388],[2340,2341],[7207,7208],[4016,4017],[2513,2514],[5879,5880],[314,315],[1106,1107],[4552,4553],[8128,8129],[7715,7716],[5689,5690],[3593,3594],[8027,8028],[284,285],[4913,4914],[8193,8194],[174,175],[7405,7406],[5828,5829],[3293,3294],[7291,7292],[5433,5434],[3965,3966],[6185,6186],[6660,6661],[595,596],[7489,7490],[1364,1365],[7718,7719],[7399,7400],[7139,7140],[1739,1740],[8316,8317],[4636,4637],[4541,4542],[3871,3872],[4599,4600],[8082,8083],[1556,1557],[2195,2196],[5461,5462],[3876,3877],[517,518],[344,345],[6023,6024],[7400,7401],[1665,1666],[90,91],[3455,3456],[5854,5855],[739,740],[2893,2894],[8078,8079],[8142,8143],[7009,7010],[4164,4165],[1866,1867],[4694,4695],[4324,4325],[6797,6798],[4156,4157],[6493,6494],[7466,7467],[1112,1113],[1700,1701],[6823,6824],[7111,7112],[3143,3144],[5022,5023],[5411,5412],[3276,3277],[6103,6104],[4003,4004],[3366,3367],[7710,7711],[5049,5050],[4107,4108],[5987,5988],[3672,3673],[3870,3871],[5010,5011],[4782,4783],[2126,2127],[3670,3671],[7983,7984],[6669,6670],[2890,2891],[2019,2020],[4961,4962],[5596,5597],[2604,2605],[8170,8171],[3012,3013],[955,956],[2206,2207],[2610,2611],[6199,6200],[8303,8304],[7676,7677],[1100,1101],[4494,4495],[5435,5436],[4747,4748],[218,219],[6704,6705],[8283,8284],[8086,8087],[2650,2651],[3843,3844],[3821,3822],[6996,6997],[5296,5297],[3552,3553],[1314,1315],[4200,4201],[1042,1043],[263,264],[5005,5006],[5086,5087],[981,982],[7625,7626],[2782,2783],[6821,6822],[4972,4973],[4600,4601],[2184,2185],[2348,2349],[3059,3060],[1799,1800],[5034,5035],[2783,2784],[3337,3338],[1943,1944],[1537,1538],[5381,5382],[3290,3291],[1928,1929],[2458,2459],[6227,6228],[4540,4541],[334,335],[4755,4756],[1381,1382],[6368,6369],[1263,1264],[3301,3302],[7978,7979],[5634,5635],[1899,1900],[1955,1956],[2432,2433],[6494,6495],[1557,1558],[6505,6506],[1466,1467],[6744,6745],[3734,3735],[2113,2114],[4298,4299],[4591,4592],[2848,2849],[528,529],[8328,8329],[4273,4274],[8317,8318],[1503,1504],[5167,5168],[6621,6622],[1661,1662],[5218,5219],[952,953],[6115,6116],[4477,4478],[5741,5742],[5597,5598],[61,62],[4083,4084],[6727,6728],[692,693],[6460,6461],[2736,2737],[3611,3612],[1641,1642],[2428,2429],[455,456],[3198,3199],[4187,4188],[781,782],[5624,5625],[7537,7538],[1344,1345],[5894,5895],[6631,6632],[7332,7333],[2322,2323],[459,460],[2928,2929],[7132,7133],[3152,3153],[1887,1888],[6994,6995],[5950,5951],[3236,3237],[6214,6215],[1838,1839],[5497,5498],[5320,5321],[3982,3983],[3816,3817],[8215,8216],[6188,6189],[211,212],[6090,6091],[6112,6113],[1377,1378],[4573,4574],[4021,4022],[1423,1424],[4923,4924],[1907,1908],[2421,2422],[444,445],[3557,3558],[3961,3962],[3043,3044],[5295,5296],[1070,1071],[5149,5150],[3267,3268],[7361,7362],[1148,1149],[7965,7966],[6968,6969],[4849,4850],[242,243],[6862,6863],[228,229],[1389,1390],[4892,4893],[465,466],[6382,6383],[2125,2126],[682,683],[4863,4864],[2069,2070],[6360,6361],[2468,2469],[3164,3165],[1441,1442],[7021,7022],[647,648],[7312,7313],[6050,6051],[293,294],[5119,5120],[207,208],[3759,3760],[6246,6247],[2596,2597],[3649,3650],[1527,1528],[92,93],[1606,1607],[4090,4091],[313,314],[3341,3342],[3259,3260],[2203,2204],[7954,7955],[7509,7510],[2342,2343],[6212,6213],[3760,3761],[6876,6877],[5602,5603],[2139,2140],[5982,5983],[1833,1834],[4417,4418],[4084,4085],[3036,3037],[6107,6108],[1387,1388],[6280,6281],[7052,7053],[6881,6882],[1331,1332],[8165,8166],[6528,6529],[5387,5388],[5364,5365],[3630,3631],[7129,7130],[1575,1576],[7894,7895],[7726,7727],[7814,7815],[3311,3312],[6059,6060],[7428,7429],[762,763],[2561,2562],[3922,3923],[5204,5205],[635,636],[6969,6970],[2865,2866],[8096,8097],[8324,8325],[2017,2018],[7367,7368],[5975,5976],[4275,4276],[8134,8135],[2086,2087],[8264,8265],[2117,2118],[5693,5694],[4924,4925],[4936,4937],[3416,3417],[3664,3665],[2692,2693],[7815,7816],[2606,2607],[2833,2834],[6330,6331],[6645,6646],[8176,8177],[1198,1199],[479,480],[7239,7240],[415,416],[3100,3101],[3867,3868],[2151,2152],[8125,8126],[5472,5473],[3144,3145],[5271,5272],[4759,4760],[6891,6892],[4996,4997],[4975,4976],[405,406],[1459,1460],[3838,3839],[1465,1466],[4568,4569],[3345,3346],[6753,6754],[6633,6634],[8019,8020],[7593,7594],[6179,6180],[6827,6828],[3942,3943],[4751,4752],[7892,7893],[2906,2907],[5110,5111],[5636,5637],[5777,5778],[1487,1488],[4813,4814],[5995,5996],[1018,1019],[1004,1005],[440,441],[6670,6671],[5244,5245],[3186,3187],[980,981],[5000,5001],[4410,4411],[5690,5691],[3314,3315],[3654,3655],[3602,3603],[7470,7471],[1927,1928],[3113,3114],[3194,3195],[7871,7872],[1705,1706],[1210,1211],[1404,1405],[6851,6852],[2687,2688],[2738,2739],[7256,7257],[56,57],[7524,7525],[4109,4110],[6159,6160],[6177,6178],[3196,3197],[8290,8291],[2534,2535],[7952,7953],[2162,2163],[6058,6059],[1488,1489],[5696,5697],[4405,4406],[5100,5101],[326,327],[5062,5063],[7882,7883],[2665,2666],[3974,3975],[7799,7800],[2420,2421],[7295,7296],[1406,1407],[3040,3041],[5768,5769],[6606,6607],[2554,2555],[3893,3894],[4824,4825],[5132,5133],[2724,2725],[101,102],[7878,7879],[4225,4226],[10,11],[1583,1584],[3169,3170],[7907,7908],[849,850],[1621,1622],[5965,5966],[6262,6263],[1353,1354],[916,917],[7877,7878],[1652,1653],[7924,7925],[4018,4019],[6804,6805],[3910,3911],[2505,2506],[3864,3865],[4847,4848],[5822,5823],[4604,4605],[3408,3409],[4154,4155],[3492,3493],[7382,7383],[2501,2502],[1694,1695],[612,613],[6568,6569],[5532,5533],[7178,7179],[1605,1606],[1909,1910],[6976,6977],[5815,5816],[8043,8044],[4948,4949],[5189,5190],[2389,2390],[1867,1868],[1492,1493],[3456,3457],[4137,4138],[3512,3513],[1249,1250],[7783,7784],[840,841],[7457,7458],[5635,5636],[6598,6599],[8267,8268],[6265,6266],[8050,8051],[3261,3262],[909,910],[796,797],[1067,1068],[2829,2830],[4271,4272],[1183,1184],[4749,4750],[1777,1778],[3660,3661],[6228,6229],[1373,1374],[7464,7465],[3544,3545],[2891,2892],[6119,6120],[5612,5613],[3313,3314],[5895,5896],[7968,7969],[324,325],[6924,6925],[2699,2700],[2847,2848],[6636,6637],[6283,6284],[8029,8030],[5492,5493],[7735,7736],[8306,8307],[4268,4269]], 
  targetFriend = 4519

Enter fullscreen mode Exit fullscreen mode
  • Output: 0

Example 5:

  • Input:
    times = [[4,5],[12,13],[5,6],[1,2],[8,9],[9,10],[6,7],[3,4],[7,8],[13,14],[15,16],[14,15],[10,11],[11,12],[2,3],[16,17]], 
  targetFriend = 15

Enter fullscreen mode Exit fullscreen mode
  • Output: 0

Example 6:

  • Input:
    times = [[48210,85285],[46524,48493],[69982,84568],[68053,76419],[93591,97693],[10826,92490],[19366,83205],[90379,92055],[83953,88146],[6466,6795],[96743,98347],[29871,31619],[22949,83080],[58306,91003],[63487,81278],[33256,49208],[60964,98563],[17086,25143],[53332,97203],[18856,26826],[12517,27880],[49357,67393],[96514,97453],[43732,82311],[51936,65126],[17825,77373],[7190,77681],[38818,87041],[60711,84473],[3754,66051],[99983,99984],[5814,55830],[3833,39153],[71632,91461],[99252,99712],[15002,35534],[65097,77671],[6286,87838],[7891,8509],[40505,43365],[54073,74776],[89699,91243],[95158,97485],[31149,42770],[63519,87434],[61935,78221],[2380,28991],[79881,81382],[40190,94494],[41862,73438],[74482,76848],[63016,79828],[12951,13848],[92131,95646],[36030,88066],[86638,92405],[97928,99197],[97679,99457],[69204,95987],[95934,99864],[71117,95167],[1698,50492],[10030,82025],[40893,59120],[13482,73281],[12018,66449],[63542,73061],[98886,99681],[54333,57707],[30903,62762],[10177,27610],[32048,80510],[10389,89810],[62864,81389],[81477,82859],[84637,90371],[15071,27615],[42528,93941],[9344,92289],[54720,88699],[92290,95965],[20387,98404],[17024,86124],[47573,66022],[85502,86949],[52486,61448],[82220,87356],[32475,32637],[58452,59429],[30109,56426],[93029,93594],[51255,59828],[60958,88823],[63538,83957],[276,72672],[28666,54076],[29968,86864],[97360,98067],[1117,34572],[14894,42110],[92657,94778],[5953,72908],[46901,59410],[51178,69717],[1653,79730],[16366,68014],[77911,82792],[81177,82314],[71569,72574],[61956,78298],[75833,88337],[35502,65000],[24047,73173],[9286,24350],[68679,76990],[42891,85895],[65128,83149],[95757,99264],[53956,90056],[75742,77288],[45770,64643],[77996,81439],[21454,59154],[47681,75505],[94171,96038],[36963,96891],[86335,99925],[28351,84927],[90370,91656],[32595,81002],[38745,85563],[82472,99551],[99587,99822],[91156,98592],[8267,86739],[10890,86010],[10411,49492],[10720,74250],[15126,40651],[36192,57999],[69060,98034],[41147,85448],[56870,88507],[58418,77267],[95891,99661],[11388,73213],[40708,50499],[69455,80483],[89904,93067],[5648,27531],[91406,92397],[74965,78521],[48515,87121],[32058,60312],[56742,96316],[44835,54573],[94510,95744],[3323,32938],[6014,53489],[87328,88036],[81596,95508],[8626,99463],[64969,91642],[97634,98280],[84575,99213],[59643,92364],[27550,49499],[28523,30075],[18272,62477],[32870,34885],[93990,99711],[79664,82479],[79885,81238],[43488,96059],[62227,69236],[86015,99363],[52258,87524],[84395,94009],[260,61980],[94639,96103],[81610,93673],[8375,73739],[92648,98303],[43573,80190],[97479,99688],[12786,62429],[85068,99354],[65625,73789],[39586,80043],[60278,99931],[69644,77411],[87222,92178],[52067,89116],[32663,66802],[32590,43620],[11531,27051],[164,63564],[98119,99886],[60542,86235],[65210,80094],[82852,97232],[66702,71196],[39672,50854],[97270,98306],[4351,52670],[93525,95535],[15402,50714],[42024,77025],[46532,59101],[8418,96138],[77412,91249],[4775,11015],[22526,76789],[23669,73864],[64077,92284],[86509,99576],[23456,41142],[45007,65172],[4577,9088],[96650,98345],[35929,70561],[47528,72447],[8645,66485],[18387,31301],[15698,31613],[8899,74243],[94207,98592],[67673,81051],[48106,69025],[39626,94628],[9983,72729],[67724,68340],[29765,59531],[89752,90556],[21787,54950],[5324,34185],[64786,87911],[97565,97961],[81401,85960],[81947,91400],[55608,85874],[30719,95522],[39371,84566],[92294,97705],[96165,99620],[57736,74149],[13000,81640],[52622,95627],[48409,59629],[27390,51248],[63747,69043],[65597,81709],[10095,19419],[15234,47659],[34309,44757],[33863,48810],[91084,92091],[67817,77971],[72221,82727],[16295,25043],[64353,98511],[93077,96137],[16133,30596],[75551,89906],[60231,96814],[41132,88940],[84501,90563],[47674,68829],[55742,92010],[79179,90956],[55505,60411],[7914,76864],[98625,98825],[145,92328],[90200,95685],[70600,82915],[43649,91009],[78906,93751],[97838,98151],[83318,89717],[98298,99752],[73204,77019],[7553,30523],[79612,98738],[72655,80248],[68949,81988],[49684,66571],[40856,45815],[83263,84874],[66452,98833],[9840,86578],[68947,82875],[45036,74480],[8597,45642],[16608,65906],[62817,75808],[45101,93029],[69711,89393],[30250,33181],[73993,88229],[68561,97074],[10416,28408],[18613,91871],[43356,97486],[16478,80062],[97635,98588],[62841,65681],[39104,94753],[89839,96542],[90255,92840],[34444,59080],[36182,69681],[84572,91103],[29941,79497],[36183,68570],[73978,99514],[64217,79142],[98422,99473],[70793,97469],[93645,95936],[8226,18858],[28505,90716],[51201,83463],[46106,55693],[20409,87755],[62465,69983],[42227,91273],[69358,89552],[87758,94452],[50585,61421],[9715,11012],[32184,56961],[80236,85023],[49359,78848],[33379,55761],[64301,68225],[58143,59732],[57764,61277],[13392,20123],[35847,72600],[6320,17506],[37938,58714],[6931,55733],[42995,54295],[26446,55508],[60320,95890],[51491,98384],[53667,94853],[64411,73445],[35472,98590],[90014,95044],[81137,96203],[20188,54722],[97982,99708],[53844,62015],[29479,61845],[55780,64875],[7649,62885],[40659,72525],[37547,91079],[50357,81305],[17270,68219],[88440,97576],[55488,74175],[48510,98601],[64930,73430],[72043,88705],[35274,79794],[39563,48976],[14685,61638],[63394,87152],[41116,82629],[71637,79436],[67602,91570],[20474,28582],[31092,33856],[68892,99866],[46289,92097],[52586,73310],[37503,72921],[41804,79456],[59437,88679],[77483,78221],[60103,97591],[36679,95310],[40213,81817],[65240,89639],[79269,83549],[55601,82016],[21360,59862],[24548,80994],[16246,68866],[56580,89848],[39130,58524],[50841,64263],[39907,87578],[40662,45741],[67283,92731],[74322,81972],[36835,63122],[12750,76952],[28508,68179],[5664,8240],[46241,65294],[16314,80961],[69337,85186],[95253,98281],[63798,74794],[29283,64252],[41219,59705],[11976,98446],[13495,77758],[66383,97354],[92064,95491],[44046,77018],[45792,68508],[13863,65851],[4707,63866],[18769,84274],[54407,56300],[64538,98723],[97459,98943],[43487,77679],[80462,92336],[10716,37297],[78005,88552],[52181,53694],[65038,95780],[22464,28390],[61157,98227],[30002,70151],[31466,38774],[95516,98857],[33250,86754],[13818,98814],[13124,98697],[80682,95382],[1526,40615],[8427,57750],[45034,46575],[63384,64377],[75878,95619],[9667,82706],[99597,99937],[96449,97467],[2412,48396],[13833,68490],[27165,59186],[11604,13092],[81303,84643],[3496,11933],[10654,19830],[32195,75070],[10535,52659],[99987,100000],[16324,18264],[88230,93898],[55245,80709],[82361,91053],[40132,74643],[74356,96249],[91360,93421],[3868,47732],[23225,78524],[62860,82767],[72079,99180],[52137,94053],[23101,38335],[53124,78262],[80546,91353],[19556,25035],[91259,94000],[72254,93370],[94506,98622],[4074,29807],[99544,99645],[98893,99355],[73965,95892],[5109,20976],[47369,95079],[97951,98659],[42884,78641],[53823,95984],[77230,98797],[98477,98821],[4389,81523],[29068,49881],[55998,75245],[96770,99322],[3369,97714],[14218,75162],[45574,53838],[84577,98854],[89165,97666],[13854,21255],[33104,92578],[45552,47366],[21600,46408],[95147,99135],[13860,50758],[36418,41403],[25938,49904],[5608,46172],[20444,44686],[46648,51413],[17017,71283],[66708,91855],[59259,67795],[41291,88456],[96999,97786],[29214,56233],[92649,97263],[71254,89927],[89712,93161],[23421,57702],[93778,95583],[73130,88303],[5653,62472],[8087,79345],[70801,97857],[54849,83841],[74007,97419],[18434,56061],[22347,46597],[59916,91645],[98786,99702],[22513,54495],[53265,60995],[90292,92288],[92706,94755],[94596,97074],[54772,82630],[8980,49105],[50212,91179],[32509,46489],[83034,85872],[45915,81854],[63047,68760],[91668,93759],[36426,86423],[37004,91364],[69121,83246],[16247,99532],[91849,96199],[61292,97317],[23915,80238],[15928,34240],[50592,95344],[89105,97813],[10472,72695],[12574,16102],[47749,94090],[50653,61501],[30353,59078],[8604,88636],[24336,63652],[51674,99847],[15461,80223],[47568,54776],[444,44785],[43382,78665],[76892,90366],[99415,99945],[45607,55499],[53215,74525],[4523,51689],[17756,47861],[86,46919],[11334,45549],[95531,97527],[27123,62928],[90997,92660],[79666,84069],[68435,88215],[85779,95119],[94753,99796],[82952,84089],[72104,97291],[90986,97682],[82577,86709],[2478,70898],[28262,63326],[26326,39170],[6918,22915],[73633,91502],[47576,81375],[442,99140],[74713,99498],[67403,76105],[35034,54968],[29140,49864],[46352,87193],[20775,56580],[64762,73615],[69071,90592],[46624,56506],[20142,62220],[78789,79311],[89301,96406],[38055,72285],[7096,52485],[49788,69958],[85885,92793],[62559,65447],[51238,56336],[97584,99242],[93481,99790],[64610,87315],[70413,92288],[51964,81232],[70330,71367],[22611,89012],[7341,40615],[81726,89963],[59441,95279],[90043,99457],[17421,41402],[47304,75365],[38154,98965],[38104,96314],[88567,93845],[44673,74898],[16833,99027],[9879,27828],[43140,95822],[65590,69653],[68840,86138],[46713,99588],[16056,99894],[20004,62106],[75974,89820],[40209,81898],[90144,96902],[25708,66590],[31366,95083],[50469,68530],[48165,95137],[71326,73156],[30609,86246],[17685,50103],[89813,99401],[58923,83851],[1430,33408],[46147,85073],[67134,98851],[88503,98020],[52442,85340],[36713,68269],[50787,60769],[5249,21010],[22455,45057],[37326,83138],[82727,96928],[76025,93980],[26763,58264],[76652,88913],[42447,75594],[34132,90890],[52147,86057],[21043,90152],[86389,94972],[14690,93128],[93462,95508],[39363,47331],[63078,74492],[21033,77827],[75083,79875],[94685,97544],[61995,78536],[55179,97701],[20654,60942],[39083,61408],[46038,55154],[66114,69702],[15571,80475],[98552,99413],[47921,91593],[8973,46745],[12256,51041],[34294,88880],[20184,69205],[12081,39221],[6828,28556],[18609,36512],[29401,73251],[83803,91740],[54406,75100],[14199,16482],[20078,59313],[63870,97642],[56058,95510],[51064,59469],[52888,60562],[11973,50238],[78911,87630],[32726,46593],[51751,98892],[58942,72591],[65536,72614],[9700,66647],[25336,43094],[32243,55015],[68219,73776],[17494,73567],[73898,79023],[8850,73509],[13853,41565],[65504,67474],[19343,90371],[51633,65672],[24427,29013],[44362,44776],[55850,67270],[76523,90896],[40325,73331],[39769,62908],[87180,88158],[74875,81702],[51591,59957],[86992,88784],[92033,95878],[72178,91046],[96004,98754],[49578,90639],[18122,87877],[36759,78342],[39705,81703],[82712,83227],[87771,96051],[2668,97081],[39317,39711],[88235,97497],[85765,90283],[33312,54495],[72784,92690],[64680,99532],[47954,84324],[51760,66820],[97296,98087],[59497,88038],[47798,91303],[30453,79324],[89672,93174],[63912,82326],[67765,86319],[79027,98815],[16774,57231],[86136,89235],[96028,96532],[79099,96188],[54756,62665],[66001,70416],[57603,59502],[27212,84318],[30423,95980],[63280,90768],[40316,75899],[51808,99722],[10375,62260],[21499,76088],[93863,98002],[73878,99992],[89833,99220],[37149,66043],[96359,97622],[17401,89277],[10251,87933],[53090,77748],[23693,80401],[84254,89281],[81182,94585],[16043,62025],[33760,76918],[47715,53333],[20471,91148],[29420,80649],[38255,60090],[96122,96366],[73788,93193],[90800,94234],[12304,96880],[21103,21437],[12459,56164],[64811,65433],[90608,98802],[57376,94033],[21953,86887],[33833,66774],[62250,78163],[72959,90180],[13079,59745],[85737,89575],[25761,51323],[95351,98232],[90474,94952],[96153,96702],[91620,94572],[36724,87300],[76411,93477],[20600,65200],[28352,87128],[47150,52628],[73497,96617],[41614,76347],[57303,95959],[34767,97928],[69080,82501],[25962,64415],[8053,63071],[84793,91080],[46479,84710],[4826,35140],[23715,62792],[15948,55459],[59231,65504],[69300,86235],[27509,38385],[55025,82974],[64175,71114],[24981,80695],[8377,27941],[1877,20509],[68221,88176],[84512,88861],[16644,57629],[53543,94932],[66115,78781],[74511,86229],[22436,23290],[79123,84938],[44410,58132],[27696,92888],[48944,80038],[21442,89383],[11760,20347],[46181,57330],[9015,64308],[65669,93015],[56875,86158],[55035,72697],[1095,74501],[72377,94332],[90368,98870],[61598,70678],[94203,96801],[32178,75618],[43622,58049],[44782,63971],[40552,82141],[48835,56479],[60327,93264],[95410,96027],[42209,90843],[85984,90639],[17773,43718],[4394,16119],[99313,99693],[45627,71870],[14012,69931],[66568,66850],[24500,57008],[31046,60636],[50649,67242],[92234,98383],[64595,90395],[30379,79612],[19905,74066],[91304,92988],[88583,97151],[83979,84951],[31373,38657],[55058,88452],[45760,60591],[27577,33741],[82681,97188],[84244,95178],[56021,87427],[84219,87115],[65649,98363],[9555,38518],[89579,93588],[32944,59650],[83138,95140],[6773,94431],[74441,94855],[23685,81170],[44404,47462],[57513,93140],[3136,63111],[6799,52393],[55438,71626],[50172,85969],[85964,97342],[13957,53504],[74466,93491],[64673,89435],[78675,96450],[60735,94338],[70511,92808],[82256,99054],[25832,84678],[59601,75689],[31991,72096],[69353,97715],[39831,59935],[52353,66839],[11321,57695],[82585,96918],[70130,70685],[17131,72367],[57561,84885],[11888,43932],[41903,59762],[31661,98755],[31159,36016],[58683,81174],[45965,48869],[21556,42388],[15077,19012],[78776,79316],[65708,86694],[57890,95924],[89510,90942],[22563,78498],[74268,81879],[94709,96037],[31266,58471],[9998,27036],[17363,95848],[92599,94747],[21054,45623],[41832,58147],[7351,53982],[33775,83302],[64040,77914],[69346,86423],[13993,51858],[45425,49714],[96776,97521],[7207,9407],[6274,30393],[93241,94067],[73071,75561],[3172,80950],[32393,63232],[28447,64011],[8451,22056],[41675,47885],[45674,78160],[12684,81275],[81029,93555],[97449,99287],[53286,67982],[66246,76885],[92792,95511],[35116,68333],[49662,67355],[47914,81538],[7692,19693],[48718,59947],[75476,98993],[65744,80535],[50717,74879],[68231,84755],[19316,61340],[58648,85183],[70012,85809],[59366,98677],[34359,44405],[55215,97312],[68754,74010],[64590,81100],[50239,62420],[33401,93142],[19997,31337],[65613,81089],[79441,80286],[78512,97851],[58262,98237],[43441,53014],[51803,67020],[61012,95683],[19840,21343],[20699,49473],[77084,85909],[54085,77728],[75711,85695],[28752,91410],[5815,36717],[75672,93819],[33222,66757],[80515,86623],[32765,34467],[24769,66730],[24149,99001],[97903,98304],[77765,85311],[9537,84591],[53643,81083],[24516,26918],[1209,20941],[78081,87762],[55056,98309],[90662,96373],[8497,46084],[13584,74075],[99075,99162],[24176,77147],[49999,73290],[67566,75260],[98053,98796],[85588,92251],[80891,90648],[96159,96996],[46518,48324],[38429,46752],[58959,67635],[66170,75023],[95366,97476],[43480,74600],[14425,34961],[71134,83192],[30921,90420],[46990,49728],[69631,94007],[73047,81116],[21021,73737],[54122,71887],[26268,95891],[87547,95928],[3922,85323],[55846,57723],[91365,96835],[76646,95472],[90664,98872],[4232,27563],[73515,82497],[46108,47248],[70642,97110],[59008,76030],[11429,98945],[65009,79888],[16973,41058],[15775,69914],[23406,59497],[32857,81566],[15819,98590],[33129,59733],[30385,62223],[89623,96011],[2213,44786],[23641,60813],[38723,56484],[4630,62247],[48167,57424],[30564,39740],[20946,80392],[1373,55609],[77221,96184],[88337,93782],[77499,97762],[27241,40024],[1410,66672],[60234,89876],[67342,72100],[33046,63146],[62072,80046],[59448,88054],[66666,77911],[30360,43504],[93562,97777],[59558,91896],[65682,97182],[45077,94510],[28328,37656],[23612,41544],[52116,83035],[77653,98527],[51577,53664],[78817,93831],[73499,98329],[91917,97975],[37262,41910],[76060,82430],[25888,50349],[44413,53700],[2335,56512],[25058,78900],[76132,80500],[57786,74383],[26806,94067],[29729,64294],[31279,38142],[77690,94340],[52619,66733],[20642,88106],[78729,99860],[52699,83419],[38815,70010],[98488,99602],[8756,54289],[39064,62551],[64748,69153],[52340,56558],[24647,55133],[28348,72544],[7798,37728],[19435,76820],[41235,70073],[12746,92502],[67764,81354],[7130,83515],[86323,94274],[53690,57660],[71739,99392],[90027,92872],[59166,62272],[77928,81889],[50708,59127],[82489,96045],[5964,37108],[69311,77251],[58136,79621],[4942,53215],[37525,41146],[86981,94481],[24290,24586],[59396,95184],[83439,88202],[10622,37960],[10310,12001],[69688,93967],[29591,72300],[32638,67166],[92551,98523],[39018,82200],[34121,73415],[82350,91535],[54473,79619],[36201,56141],[99824,99930],[71925,80259],[42003,80785],[75398,79911],[80789,84951],[53853,80767],[74059,90244],[25198,96976],[983,35996],[25833,73780],[19117,38696],[62908,81461],[32994,59095],[63609,96939],[80973,97448],[96404,97284],[38998,86918],[6518,59383],[35999,57992],[31080,68100],[93408,93774],[95847,97641],[62398,79385],[62184,88069],[35990,79179],[2187,85829],[57610,76445],[44052,48558],[4966,69554],[28075,73463],[15109,17410],[92554,99444],[54630,92713],[62867,88053],[23431,94786],[50602,97613],[6614,33560],[71894,83706],[47826,97056],[76387,99138],[17391,80996],[28700,87970],[73582,90842],[19870,68107],[15281,65013],[85480,98035],[77160,85652],[59229,91174],[33764,94318],[26460,54240],[78990,85748],[41861,48865],[2090,66404],[30802,53668],[96774,99002],[71071,80520],[74794,95150],[15513,58844],[88391,89662],[90128,91654],[14360,55843],[1731,81288],[68774,69956],[73257,77067],[91109,97655],[52192,71942],[93530,99470],[59036,96520],[49709,84688],[52771,96747],[67433,68665],[66362,88355],[70964,92790],[87409,90978],[59995,66620],[31890,58379],[33959,39191],[92341,98390],[10333,73279],[47001,47988],[5406,23122],[70501,91323],[62580,87851],[49511,55630],[47322,89361],[1548,55372],[76587,83039],[820,2294],[42101,91653],[64807,66221],[4609,68672],[22868,33680],[15586,47794],[9067,16754],[16020,30443],[43985,47399],[6819,85595],[98278,98898],[53742,98916],[22566,87830],[47634,57132],[87921,92944],[38710,82027],[49398,83419],[99486,99821],[86589,98397],[3982,31100],[62590,93970],[54783,69110],[93215,98677],[91123,93441],[94648,99439],[87193,95278],[97627,97775],[51692,60180],[34880,90391],[10010,40077],[81696,95027],[12713,99211],[65037,92940],[93138,99689],[43513,93770],[7161,47936],[50794,94290],[67628,99580],[22103,95899],[45984,51204],[11994,26573],[46233,92169],[42977,75263],[72980,84780],[49465,75211],[77175,87997],[89362,92706],[31119,65107],[2223,29769],[11811,63200],[9288,46801],[38884,93423],[32702,58460],[57528,70524],[24646,97936],[6200,56476],[91264,97510],[49281,66239],[7110,57043],[49532,54347],[7405,32817],[92022,93992],[32187,84331],[18596,39229],[11259,20387],[89947,92633],[14801,40571],[27790,56983],[50889,60612],[18085,18779],[7652,25291],[66063,95926],[40431,84904],[42626,58649],[28157,91963],[47738,75537],[17890,27133],[52315,78563],[11211,90143],[26400,29231],[63673,96478],[14046,27213],[83311,88197],[94044,95968],[9951,78794],[9209,66436],[51516,52946],[60015,86468],[62263,77608],[87977,90615],[80416,95897],[20301,28123],[94123,96641],[15132,37292],[32686,37075],[41556,67464],[58373,67030],[59384,98648],[2955,78972],[9688,47361],[97993,98493],[72795,78328],[51586,72193],[10049,52152],[84906,87813],[93790,94411],[17307,20222],[85974,91138],[88117,88305],[8347,84681],[36918,59761],[21836,59305],[93528,93913],[83094,84840],[82956,96337],[17364,94565],[25299,55966],[30286,90053],[79344,97876],[29922,50541],[11929,40946],[29641,90948],[40457,82725],[13978,84379],[61671,94661],[96744,97791],[92936,93174],[37611,49456],[57086,81430],[12321,75375],[53187,61956],[74656,92123],[36021,99320],[45491,49264],[16886,79216],[47531,80755],[59550,78471],[6549,70575],[30482,41647],[53755,92090],[69692,93405],[18625,64164],[6734,72904],[9934,44680],[41992,79046],[83429,91575],[64711,89187],[21605,44358],[67932,69075],[2918,23220],[99670,99706],[80768,98812],[73198,95745],[26162,60989],[51722,92237],[92398,93282],[33191,89532],[52391,94016],[5905,82529],[29338,99525],[67191,77209],[42023,81399],[85474,88135],[40276,82932],[51973,89344],[2023,65620],[36175,51104],[82639,99677],[76546,81319],[36072,86381],[90440,95297],[84433,98278],[53584,72564],[5181,86113],[50410,90416],[26258,38660],[86330,90594],[44375,81513],[60455,96756],[99358,99859],[38307,55687],[10443,13757],[14980,28416],[82324,98125],[34856,54381],[91875,95706],[29531,86084],[26988,29840],[75967,99939],[49654,89516],[63238,94993],[62042,86079],[93406,95957],[17293,24546],[34897,36731],[4996,99868],[8442,72646],[33350,37819],[82847,82852],[45018,75349],[55805,99621],[53435,73616],[93482,99314],[12976,71895],[12592,97815],[75875,77575],[3292,47907],[23144,99173],[45225,64548],[21440,68804],[88997,93286],[37210,48190],[83520,95215],[89501,95592],[30018,97885],[91499,99041],[12129,89363],[7346,29319],[43571,80880],[99919,99922],[99818,99878],[6416,32413],[23390,97256],[39285,48642],[17628,58612],[31758,87831],[82797,84925],[10210,27759],[29121,85291],[2608,11147],[68585,75876],[14135,79274],[74345,74410],[57822,81792],[92670,98418],[66699,71667],[42603,88523],[9142,46802],[47226,70718],[64607,83773],[24698,27245],[1100,17476],[83593,90838],[80679,86027],[78772,83136],[32714,51844],[1996,28548],[63887,75145],[46600,82987],[53663,71028],[64127,86496],[68350,78799],[57937,76935],[65927,79876],[70706,99246],[53421,62721],[30992,45989],[48954,72154],[91969,98277],[30633,83023],[88758,89042],[50285,98381],[99014,99106],[91496,97456],[83725,86605],[69331,86874],[9685,40655],[46891,98521],[74749,77515],[73567,99832],[15632,47014],[9158,41598],[65538,73533],[61799,97360],[56895,79131],[92995,93037],[62886,77620],[37968,86423],[4248,97070],[66521,86308],[39422,44007],[98372,98859],[26746,97115],[95803,97942],[72302,78381],[68164,98752],[20056,82959],[99142,99493],[54748,65632],[66618,79566],[83687,99602],[83483,94195],[8412,50178],[7689,68197],[39957,94477],[27927,46058],[52993,62720],[5212,79788],[23224,62098],[24120,49584],[27686,88050],[85240,93970],[13503,19484],[61831,94464],[59200,91060],[87176,87489],[74510,85737],[87720,98936],[1972,97164],[98638,99977],[40105,47796],[85054,87349],[26184,53949],[1322,36688],[92955,98858],[18884,41975],[52868,61277],[65241,69298],[13521,41795],[48749,74552],[36973,41044],[15564,87837],[3089,23541],[35108,54314],[16474,67390],[64987,65997],[85673,87247],[20086,90062],[89287,91016],[78157,79821],[14689,57497],[57678,72035],[42552,95212],[31629,33909],[1265,91842],[65347,69487],[32061,32537],[78792,84132],[73021,82218],[37796,91375],[24368,56812],[47695,98286],[49338,74597],[82247,93373],[91812,96847],[49667,85662],[78251,91136],[73103,95609],[93999,96360],[46176,78290],[87496,89926],[19140,23688],[65112,92858],[37317,37918],[81845,94357],[38174,75417],[66506,94816],[25032,70593],[12916,61097],[24145,98394],[74449,75895],[68733,71254],[40269,84231],[94151,95221],[14651,50381],[86179,91657],[9364,86149],[79826,99335],[93825,93907],[75856,97371],[89328,91537],[63693,81832],[62338,95700],[41425,99911],[62058,87187],[90058,96519],[97874,99732],[55083,91864],[6589,89853],[17945,46493],[11586,47321],[25662,88171],[89790,98992],[5794,95420],[60163,67736],[47203,95272],[49383,84413],[1459,82001],[32779,83934],[47301,50440],[62803,68431],[28358,99050],[66415,99980],[46349,65556],[23057,46742],[51092,76112],[8526,83734],[6857,69217],[14603,91967],[33188,85019],[81165,96399],[64920,96723],[68601,86767],[28591,86683],[84715,98630],[10031,81993],[31562,90188],[1838,13714],[3016,88096],[50023,63268],[9660,35813],[11706,25423],[98901,99987],[70967,86547],[23894,95060],[48095,69667],[32953,46732],[54065,70805],[33873,85691],[13349,71476],[99288,99525],[40591,41196],[10409,66795],[79820,88188],[19270,92932],[15517,22911],[15568,36484],[5137,48043],[64257,92191],[99410,99517],[94205,99280],[27351,76479],[48237,49358],[10775,87665],[65480,80488],[75184,98898],[33689,58050],[61611,95259],[59821,93808],[28988,63410],[58242,72164],[91303,95227],[44270,55371],[31287,37105],[77243,96887],[11953,95971],[89725,93986],[33947,73144],[95112,99513],[65961,74221],[18207,70526],[90706,99504],[34208,45214],[86078,90748],[14231,32723],[73404,75174],[98941,99962],[55194,59906],[16305,46411],[70306,73299],[48268,62539],[30161,87973],[21030,29662],[94485,98546],[34415,67692],[19240,88057],[91534,99938],[11317,37715],[98707,98793],[9259,11694],[70363,88398],[51055,52840],[34394,95920],[87703,97797],[92160,95864],[4530,47931],[41797,63798],[66631,87182],[29221,62360],[98820,99321],[89562,93059],[46334,72995],[21109,41626],[48066,61831],[52760,82626],[97799,98993],[16881,64680],[97200,97285],[20398,80453],[67381,92303],[57173,74155],[96136,99485],[65425,94307],[19104,66208],[25233,79980],[24636,70151],[17783,35848],[51940,99843],[37851,79463],[45091,62811],[65145,67527],[22419,96264],[27177,83507],[22910,30849],[6061,46619],[6470,22756],[45089,68052],[797,74125],[91970,92972],[87518,88240],[33734,71800],[61763,77103],[42610,91905],[20046,47209],[37939,58811],[59147,80738],[17271,81638],[18883,96757],[84329,90693],[13499,90904],[92700,96097],[10292,51348],[77308,95044],[15644,47280],[86684,87256],[50933,78748],[11635,22982],[69319,78580],[50738,78099],[62438,82317],[43294,84656],[34929,60998],[40895,49133],[46026,88676],[94726,97601],[41637,52881],[65768,99906],[68335,96776],[92850,93804],[10723,35311],[62962,95815],[30490,63740],[61077,86766],[63853,70516],[81209,83289],[70896,89327],[27838,58886],[25547,45102],[54988,80815],[15965,74355],[70445,77235],[93605,99124],[87252,97382],[92130,96911],[76154,76188],[1945,95431],[51444,98273],[62134,92861],[71346,81081],[78381,91256],[56278,97270],[98572,98885],[5876,80230],[45720,61992],[42468,63732],[5025,44041],[73661,88099],[97936,99767],[90827,96438],[77333,86817],[77504,97773],[83625,84587],[37269,85412],[35106,64712],[59282,86993],[36636,98792],[18823,65356],[47481,58682],[82938,99821],[22058,97487],[75407,77049],[53886,74947],[30569,99728],[95927,99216],[40716,64912],[18874,66221],[51747,66661],[35939,85108],[9561,15134],[60257,62534],[59086,83627],[20407,22672],[66758,77316],[35042,36798],[4608,26344],[71555,73944],[35982,76451],[75728,77551],[9695,63939],[66363,91185],[63758,75260],[33230,45572],[80502,98807],[31633,68043],[22991,84225],[65117,90567],[82074,91270],[17353,33817],[15681,22907],[75552,75871],[6205,19329],[90336,92279],[31855,57386],[69630,75624],[39604,93991],[72315,82154],[78006,96967],[85370,97459],[65013,92596],[2256,48062],[76453,87216],[15569,40348],[25539,81587],[97886,99924],[81436,90669],[5620,8934],[9722,10494],[76828,92470],[49552,89398],[53888,96392],[12751,77438],[9475,44264],[93321,95441],[94200,98844],[7434,45512],[85250,87781],[38201,74425],[69850,92511],[18100,68290],[10353,79840],[91374,97446],[16723,66751],[26841,89225],[73344,86121],[28260,89365],[24620,51631],[22637,54502],[21393,46903],[80022,92281],[79316,98183],[82432,92896],[22209,32145],[62940,68637],[29332,38010],[44875,71901],[46286,76637],[31256,60772],[25730,54470],[58023,76874],[98864,99593],[99215,99464],[89680,99545],[93392,95342],[91598,94636],[54266,67044],[30162,46783],[76356,89369],[40356,71003],[96240,96259],[973,57492],[66791,95980],[12307,84950],[39776,71140],[50513,79847],[39777,54853],[28990,88729],[48193,81632],[58646,70863],[60761,98004],[1352,61950],[12198,25046],[9405,58468],[58041,78649],[81201,87798],[5809,94285],[32282,35286],[12652,56034],[9590,38160],[51805,93649],[24249,77790],[45106,71598],[23104,24151],[69338,96947],[19747,30219],[17120,63234],[70318,99787],[41944,61422],[66630,77233],[53235,91814],[6782,10457],[77386,92965],[81470,93823],[60029,87331],[14788,65630],[83886,98953],[26431,36627],[5524,98960],[67789,92818],[90095,92577],[40582,54426],[80979,87066],[85544,91562],[70382,91572],[27724,45838],[78561,80354],[65086,99107],[50246,71738],[39613,49194],[18080,77755],[2611,61024],[36682,58225],[46010,72318],[63200,95989],[37532,98104],[20002,90986],[14084,88512],[12306,88667],[26396,47417],[59597,88907],[79287,86449],[43053,65012],[44368,58152],[74664,92413],[33310,73398],[9848,43721],[64951,89437],[61143,89538],[7487,60245],[84670,92377],[97498,98688],[97008,98398],[17462,64940],[64767,69925],[5002,53884],[2051,18759],[63513,91739],[37273,69678],[58254,63106],[24143,99183],[16753,95813],[77204,83050],[75548,87221],[8557,40114],[38474,65494],[71885,80155],[16838,87610],[8820,55654],[58922,66160],[78336,97022],[31457,82610],[90101,94140],[26034,30452],[92759,95795],[3363,92113],[49832,91907],[57211,85036],[43763,68013],[70954,84238],[80142,90371],[261,8194],[95386,97439],[47751,92198],[992,68399],[9554,16248],[44820,92765],[99349,99966],[13087,35168],[53164,89361],[61490,80378],[62970,98611],[80948,86498],[15351,62373],[55622,92421],[70280,73745],[8145,12457],[56394,93395],[31246,75196],[23898,99887],[88984,99937],[17444,84395],[77641,92634],[72856,95713],[57062,77466],[15742,48559],[89295,97111],[53625,56298],[69594,83802],[54617,72483],[49168,54328],[33176,76217],[10940,63123],[17508,73151],[43397,67245],[82214,93735],[49139,75605],[70796,98879],[71335,99074],[25404,99572],[20000,45481],[75873,76802],[88617,90765],[82985,98447],[45326,66097],[59263,91940],[71138,96897],[75245,93443],[93636,95735],[4515,69330],[39543,90668],[88780,96455],[65570,85719],[48227,97295],[20182,33032],[86514,98009],[27077,52269],[88461,93486],[10858,45837],[95528,99973],[99641,99763],[77191,82744],[80524,95831],[91268,91423],[47679,70851],[39057,78138],[75409,78113],[85416,90640],[51960,64255],[8601,49370],[30539,79879],[21101,67585],[8876,96114],[86898,94820],[37906,78749],[63763,78099],[54995,63278],[7996,90759],[39797,86625],[53191,73504],[9898,56266],[87594,91642],[54657,96754],[33132,90475],[36295,61302],[67492,97693],[21349,35178],[46651,88148],[3628,12486],[10857,57880],[37225,93682],[18809,56798],[51231,99875],[7208,68005],[73400,86998],[95767,98996],[8524,38550],[98236,99301],[89219,91150],[46434,93767],[2764,47804],[62414,78316],[1676,9076],[56578,62583],[19158,72274],[9294,76549],[53519,91808],[6899,52865],[9602,42446],[63506,74147],[21740,28320],[31262,77436],[97531,99700],[27964,42430],[33420,82283],[22264,76859],[85345,87159],[1909,8627],[79785,91506],[55024,88022],[59801,88764],[30047,99531],[5818,54954],[49223,84248],[69528,81167],[39876,59747],[18568,42220],[54149,92890],[81200,82598],[70502,85938],[47156,56462],[9588,88694],[5657,69090],[11780,15580],[13468,62265],[6142,45563],[58636,77002],[14493,69983],[29618,87396],[38138,56444],[48068,53929],[67553,72696],[70452,83159],[11834,84223],[62236,90448],[47383,47984],[31009,51972],[51790,83639],[61350,74495],[67560,83925],[43988,68096],[99791,99995],[26577,89155],[33031,47784],[24206,87471],[4195,5638],[65403,80734],[87297,91274],[13784,16773],[93575,98126],[19892,73700],[64024,76965],[69956,94351],[94035,97564],[42949,70310],[83419,86972],[5698,72078],[48972,54123],[79560,90758],[86954,93685],[38851,88663],[21279,38184],[29924,38544],[54563,59519],[70109,72084],[33228,84582],[62015,71293],[3380,64265],[710,41475],[97023,99428],[20895,72779],[1281,19648],[19105,67517],[60107,85361],[64679,76250],[46446,70990],[60690,98843],[34442,68100],[36178,49782],[77219,83282],[2556,96815],[67840,82746],[27610,29094],[62025,88921],[27603,86887],[61735,94521],[42521,44179],[85485,98255],[97691,99636],[71443,79066],[17889,45512],[37499,55426],[18570,94230],[8784,37996],[64274,84165],[10312,41369],[35000,86525],[49809,78613],[80598,85079],[8234,48840],[5527,52172],[64619,73218],[4788,17648],[54714,59811],[60974,79899],[90073,93152],[24503,85730],[19517,76189],[12736,65446],[35938,88971],[99893,99942],[31047,69816],[79066,91432],[79261,90361],[66498,97191],[79845,81371],[83789,86846],[85963,86678],[93282,99858],[74087,92579],[52789,87044],[74581,95973],[85123,91619],[84345,92213],[74419,78331],[19497,48125],[17068,25548],[90704,92935],[73802,75271],[6911,57358],[8977,86614],[31942,39491],[30272,91867],[5146,87438],[4126,56800],[30325,30552],[34414,72375],[34047,53809],[82896,87932],[93436,96183],[16689,46621],[7140,58848],[13118,78472],[81273,93896],[62218,64503],[82763,89413],[75528,90814],[17607,19870],[69410,75161],[92621,95771],[52599,99959],[53410,88998],[33765,46757],[22874,54450],[1492,14834],[23265,92952],[45777,65800],[36893,38139],[35577,71342],[23061,93358],[65102,66189],[72050,73509],[48714,53141],[77189,86567],[36233,78054],[98671,99724],[32382,62869],[91729,99252],[54320,93770],[15599,72188],[8842,17942],[40418,78867],[13573,17176],[57511,90039],[26455,61015],[23468,32275],[40012,84810],[39958,64891],[7883,41677],[7954,28150],[40087,55804],[62268,99095],[96921,97866],[49846,89181],[20018,68802],[11099,59033],[26916,92242],[15013,21094],[56374,89079],[15539,85207],[44217,76530],[20381,30585],[72883,90208],[30603,99667],[21503,48052],[30533,42098],[25695,40134],[32673,97172],[56773,87044],[29801,40298],[37048,88069],[8607,94505],[61485,94884],[91176,97452],[99610,99787],[82436,84745],[42991,74482],[38,27177],[36554,73683],[32035,48110],[83457,98590],[91920,98809],[12195,85262],[22459,43733],[2482,86443],[16569,84439],[17333,64251],[98666,99232],[38216,93454],[32344,47037],[95736,97859],[31761,97071],[70788,99342],[70586,71710],[24700,53789],[3471,61579],[36251,47543],[48001,94609],[32018,92600],[12852,15906],[40403,91569],[2095,42824],[28512,29086],[10372,95520],[73123,81308],[38663,44897],[65939,96674],[20527,87762],[7204,58097],[90005,98822],[46599,83042],[98250,99242],[84074,95379],[94547,96917],[15498,54674],[9546,50302],[87369,92497],[11153,18291],[27266,85900],[61678,64840],[23965,49367],[3359,76795],[85906,99958],[88347,92902],[4249,24290],[19977,75123],[4894,79092],[33495,43413],[50714,51770],[8409,36171],[61253,85050],[90854,92611],[38497,84949],[94156,99493],[88889,93632],[15617,67767],[48916,74641],[98454,99953],[21220,49069],[53372,88332],[29776,62429],[62232,84426],[64967,70946],[58833,65512],[56324,83239],[93440,94506],[26222,73479],[99662,99937],[65116,71349],[65189,91488],[78147,95714],[59694,73145],[28492,57714],[25,36261],[6475,84355],[18224,76143],[63296,69571],[83529,99245],[38491,50319],[28790,42268],[54158,57047],[62729,83281],[56363,82703],[53321,94275],[23027,56528],[55699,95206],[64082,67583],[20470,51451],[89406,91194],[80166,98449],[25657,55093],[55183,64678],[83782,99167],[15688,58075],[77310,91921],[24640,50532],[92848,99291],[42998,99530],[70584,90098],[51094,87843],[85267,88172],[1077,58272],[21666,83383],[60197,96326],[59849,79865],[22646,53219],[45833,62364],[68249,78517],[67862,75762],[86897,97730],[43159,72490],[89590,93601],[70513,85255],[72769,76867],[59860,62715],[41353,72398],[61731,63053],[52533,94368],[91965,96524],[12473,47954],[22253,52289],[38653,57672],[76655,79988],[25531,84023],[87455,88697],[74189,92266],[14480,68730],[22173,32999],[35452,41262],[49433,62224],[23394,99807],[75581,84961],[57092,79907],[40939,74487],[58971,71038],[95746,96646],[70931,73849],[92556,97408],[82423,86150],[99325,99831],[48006,91193],[89537,95418],[69393,80012],[56393,80221],[49230,81792],[9328,19763],[55528,97703],[62682,86966],[84856,92586],[7421,59435],[60228,69312],[6067,66009],[54230,79899],[34238,75495],[99757,99855],[41843,69295],[37196,51458],[31654,42304],[43700,87609],[17308,20974],[82891,87106],[61823,76367],[95962,98024],[43966,71764],[39103,89292],[58112,78941],[15444,80601],[67203,95078],[17336,53660],[46769,87656],[93858,98504],[96134,99231],[49962,79649],[68572,93420],[16223,50884],[41912,88891],[75378,77246],[50329,50367],[21023,67208],[39085,99060],[57241,93060],[40477,94944],[7178,16351],[70503,95975],[64751,92977],[6239,59720],[16943,23773],[60352,78264],[92940,97075],[61816,76808],[14901,85871],[77838,95282],[49530,55382],[20330,84458],[78156,91765],[54878,80713],[37669,77156],[66272,81412],[22615,95334],[88136,96068],[38697,54036],[28210,54767],[98288,98504],[15955,75404],[9218,29385],[77129,81354],[88308,89083],[62500,99580],[60603,89828],[10929,89049],[41728,73571],[22586,35941],[15763,36771],[14385,20058],[74958,78678],[35690,37381],[36837,96463],[92777,98807],[51627,62566],[66043,83437],[89768,90291],[94499,99512],[77404,97508],[64622,88983],[47891,56489],[94856,99147],[82396,86095],[3770,5011],[7410,94846],[36064,94498],[16978,56282],[6984,54571],[36498,60765],[55669,59700],[10743,36818],[50807,89946],[39145,80019],[49521,50390],[55520,74043],[94657,94946],[86461,96819],[64312,98538],[18520,78961],[35866,70770],[52138,52359],[41041,87859],[12164,75081],[91604,95781],[89147,96787],[8425,17941],[71523,91020],[94552,99646],[62369,68605],[6648,47414],[55811,56314],[13202,88513],[68831,74175],[45610,67327],[24949,56769],[75275,81370],[54808,98947],[66537,96493],[93275,93317],[19792,77018],[19990,56031],[26012,53921],[32928,66496],[33767,50425],[20547,48137],[93163,99429],[32527,48939],[4419,8408],[68871,69300],[51954,95348],[86095,98420],[89377,89737],[96074,97514],[61248,78432],[64287,78809],[73714,84288],[18518,30001],[16291,20898],[41456,94654],[55085,88616],[89631,93299],[42792,99219],[33009,51929],[8010,16695],[42086,77167],[7528,56079],[11169,44433],[9820,11862],[81592,98600],[72252,94185],[25860,64429],[20781,44191],[89665,98010],[4675,61828],[48767,51216],[26239,30212],[49714,92558],[90026,97599],[57053,74664],[19368,62580],[27795,58229],[78123,80210],[15652,77985],[2813,43207],[90355,93345],[69776,82759],[64019,83329],[94878,95035],[94629,95983],[92729,99850],[37017,45929],[49650,85588],[12822,91428],[83570,94342],[49989,58694],[80194,93968],[82809,89919],[92627,98764],[92974,97062],[79899,87972],[27210,30147],[75574,95845],[72518,86386],[61677,63582],[47943,54244],[81575,84271],[16914,31753],[12848,65239],[67532,73269],[66137,81234],[16259,59367],[68180,81944],[18094,69883],[23026,55155],[33975,76632],[33321,39684],[74893,97047],[66635,98224],[15034,39338],[11788,14867],[75503,94776],[10941,54133],[18247,27333],[98766,99083],[63849,94496],[54861,75950],[28087,39537],[79915,82111],[15471,47373],[12157,15689],[33357,89058],[45242,67115],[88702,98088],[49162,63683],[1504,40887],[90118,99095],[88047,88115],[5813,21515],[10955,55581],[37386,48287],[81101,92102],[20694,68322],[29967,94281],[50318,51087],[10343,93542],[93972,98797],[55123,85078],[32791,56919],[30920,68901],[43889,43899],[18498,91448],[23701,74741],[54533,65800],[77969,78454],[12155,14333],[55845,60654],[81529,98040],[30196,73125],[71571,97660],[96284,99807],[13261,42208],[59358,71418],[94728,96111],[25957,77640],[98810,98873],[57153,99018],[24743,33599],[27150,38666],[28222,72947],[70932,97325],[36453,78611],[51053,52792],[28275,69755],[18496,33008],[38638,84938],[65967,98229],[22045,77073],[61305,88518],[41087,74005],[57650,58520],[98984,99953],[91796,95379],[79745,81190],[94530,97308],[74754,90958],[60833,85145],[20889,49516],[19960,25305],[61097,80175],[40890,83554],[2671,99742],[84082,93871],[59469,86116],[1419,13684],[47684,58369],[60227,67742],[19564,22133],[21970,82728],[5416,75035],[98608,99521],[49840,59173],[65821,83964],[3673,48581],[22423,27634],[18040,29575],[85108,89789],[1928,8196],[29250,83312],[65295,96974],[34115,93949],[29842,49120],[99714,99810],[60593,76281],[21431,38344],[39612,81553],[12407,24467],[60983,97570],[9645,14015],[14391,81884],[25477,76174],[92637,95606],[48385,84003],[34502,40283],[27034,76158],[98613,99298],[40770,65904],[94242,99289],[52188,87101],[55377,56281],[85311,91042],[77509,78873],[15668,31985],[87654,97847],[12580,50712],[79173,90571],[27141,56554],[14628,69484],[28824,44592],[50991,62601],[30302,63413],[7966,64411],[74843,85791],[86588,91340],[42548,79812],[3251,75449],[71761,76600],[3918,12162],[13890,60260],[52729,80756],[5046,19374],[8751,92046],[95580,97404],[56725,61980],[67442,88858],[50199,77394],[20572,65625],[66844,69599],[25395,68034],[49477,57174],[50971,55839],[25385,71672],[48662,60793],[35426,79000],[20179,97283],[70007,88142],[69,24868],[76159,80500],[6629,11959],[85782,92573],[75682,99201],[14131,98897],[15365,79226],[9605,16823],[59290,71680],[47663,96058],[97037,98312],[7939,32408],[83114,86328],[70030,96592],[19052,52873],[80128,89238],[42392,45737],[73450,94663],[94537,97566],[38501,66552],[69057,90986],[89747,98835],[62385,75784],[80207,94922],[79346,95874],[25064,60131],[50844,82968],[15656,55761],[48778,89273],[40367,51820],[48989,61254],[4173,76881],[28593,43666],[99012,99301],[51346,62715],[36130,93254],[61107,73262],[30880,48433],[70555,96761],[37255,83755],[84646,89142],[21650,28560],[80667,92406],[19589,59507],[96282,97970],[35857,47864],[45328,64936],[6236,39181],[89437,93989],[17399,80815],[74809,90500],[95196,98455],[83861,88714],[86264,97997],[17337,67426],[37612,80265],[17794,24334],[79153,84958],[5136,61616],[92175,96499],[85286,92163],[43242,71762],[67826,72014],[6783,9993],[69215,72477],[38145,95040],[12224,28422],[93907,96947],[16812,75974],[1744,85272],[28829,80054],[14821,90005],[72592,84167],[78801,92345],[66761,85014],[78200,92344],[59634,87653],[9395,58647],[59780,80021],[51289,61038],[23878,70305],[15751,55084],[6347,92348],[23088,68873],[65489,78603],[72308,88521],[50264,61884],[59463,87859],[27825,87165],[74011,79845],[89552,92595],[25991,62980],[16367,76125],[72852,95545],[77227,87611],[6669,12785],[58918,84930],[39666,46348],[12361,14615],[56693,83491],[98640,99675],[4484,17324],[70474,73355],[72824,87775],[43389,63791],[32776,50767],[74317,77600],[54341,75634],[51309,80878],[49836,59611],[53430,64587],[87801,88048],[34689,69184],[26011,99541],[43186,92135],[32023,35384],[433,36638],[34860,46445],[77562,99205],[66420,80335],[44530,72818],[22507,41955],[15795,67549],[97172,98537],[9229,74503],[72287,96605],[84500,94366],[49794,54103],[87546,89921],[87477,90731],[38923,67745],[36565,59054],[26029,29307],[75481,91903],[21049,59162],[52444,89786],[2939,20994],[4037,6283],[29928,40712],[27081,86044],[37181,46097],[35875,57209],[52237,66547],[45660,61691],[17236,72265],[29852,47070],[35911,49298],[81233,92920],[34215,70137],[91125,97953],[84123,94038],[47527,96365],[91107,91755],[21419,43257],[74825,98928],[63657,73545],[79635,95680],[79181,99354],[50945,99289],[20465,58951],[34460,38639],[23725,45506],[29693,82253],[72066,93294],[43068,92593],[37727,48103],[20221,52854],[10153,60740],[30439,82732],[49261,69523],[48525,67820],[79530,94071],[50770,72819],[13217,45081],[87379,87594],[99540,99622],[43960,88528],[82128,89100],[47882,53581],[70172,74998],[64765,91013],[49774,73330],[23655,60645],[6218,73036],[9828,91196],[63830,95835],[44802,75818],[58564,97033],[69235,85311],[84281,87128],[42419,84497],[13531,30954],[39549,44940],[63537,68112],[24386,32336],[55397,65332],[27324,78815],[84748,96935],[70115,79421],[88344,93286],[92497,98896],[79097,88771],[32723,60205],[72867,94047],[79499,94578],[25062,79953],[84609,92852],[98964,99458],[35827,44904],[78475,90938],[79524,83689],[84310,94939],[69948,88922],[16704,75667],[87400,93843],[6486,98521],[90943,92756],[7889,73246],[44963,78541],[31402,90983],[93543,93866],[51528,78518],[96057,98438],[40003,90534],[45967,58366],[57449,57832],[72444,96332],[80562,92438],[92772,94997],[11647,57148],[2713,67074],[67177,73469],[67892,99059],[23800,84269],[26337,42756],[29038,66903],[30702,62411],[78919,96160],[17440,63627],[25481,54001],[92277,99527],[99376,99902],[75825,98234],[12985,79882],[71774,77862],[6897,8242],[79689,80998],[65437,99577],[88251,97781],[5530,27292],[41268,73592],[18814,49212],[41901,72440],[51328,91743],[17619,94342],[754,56298],[17834,22231],[22902,78932],[39017,94372],[57575,89610],[90985,91054],[57322,82712],[84200,87299],[9805,26186],[1547,89775],[32690,86142],[85927,98468],[55146,96631],[67394,80837],[18499,42723],[73152,78457],[95233,97829],[2701,51045],[18800,75481],[969,40038],[62397,93831],[43992,45709],[37176,93855],[16849,94772],[28812,86510],[67514,97003],[10481,32151],[3900,89555],[46812,62471],[26165,50625],[68211,70633],[22335,24172],[29653,34385],[36646,40207],[33346,93746],[46101,67249],[20614,57902],[7592,34351],[29532,98353],[22171,63156],[69269,87066],[81860,86065],[98672,99647],[24857,68353],[43554,82501],[58283,89039],[86708,98888],[90110,93662],[79540,82098],[36915,79323],[9477,44914],[26902,61621],[19252,69464],[53873,77244],[33229,87352],[65842,71359],[83703,98320],[78079,83462],[92987,95073],[83957,93773],[13362,26402],[4006,12935],[29696,94393],[34194,72006],[5472,59367],[47878,49671],[16103,64443],[7785,55663],[21068,99395],[81493,85542],[1023,29384],[57307,58806],[41830,60341],[43327,55679],[93604,94823],[70462,78639],[26216,98916],[85530,89784],[43144,73775],[72512,74086],[66911,84073],[73746,80441],[20627,67506],[46315,65243],[52418,63537],[5625,91180],[84450,91319],[39796,86837],[13421,43654],[24595,94980],[38749,41544],[29173,59140],[34370,89968],[11853,11959],[47048,59528],[90535,92736],[923,5199],[77896,94529],[73277,96136],[78551,90011],[71830,74066],[42118,43054],[48059,73535],[15487,61796],[78090,81643],[93558,96671],[20976,49962],[80100,91283],[85475,97010],[22215,51771],[47739,72142],[13007,53512],[89993,92928],[77844,98107],[27977,31578],[52677,96809],[27378,28483],[88639,98314],[63834,88481],[93343,98029],[96861,97059],[12986,81131],[37308,71162],[4806,85031],[81578,85484],[49080,60964],[13130,58977],[75999,83399],[92879,96538],[14047,57376],[10678,20006],[91846,99313],[72378,99230],[11030,11642],[362,25978],[24720,88413],[98539,99145],[52900,84583],[40044,79176],[76353,89937],[60869,95553],[31251,91259],[64219,90316],[27707,84796],[40482,41547],[98634,99568],[29977,50166],[98249,99780],[78428,93413],[208,35973],[36240,38460],[30359,42714],[53592,70588],[94399,98668],[90503,94268],[23258,85612],[91612,98466],[89367,97090],[40390,59080],[91625,99454],[62680,96267],[31424,79708],[66341,97256],[95088,95983],[18741,46654],[49711,67588],[27043,38949],[1865,91237],[17041,71181],[12887,91263],[10646,94418],[14596,46088],[21083,99338],[46468,86682],[35908,65766],[65329,93421],[92896,97649],[32970,97139],[30695,95455],[77686,81298],[90194,94299],[63344,73256],[80699,96202],[62094,91885],[644,26102],[28695,99063],[60720,74665],[23743,67099],[90842,99570],[69706,85985],[74659,90226],[49302,66932],[80191,85959],[30712,52790],[99040,99968],[5220,82922],[63006,74602],[74252,99762],[16659,29698],[14748,19430],[86016,89699],[88314,93603],[91863,96447],[90857,98365],[81064,85400],[88122,91703],[38775,67369],[74944,96549],[56140,91569],[25046,64096],[90527,94685],[34698,90231],[22232,95596],[38676,59407],[77313,79641],[26254,54928],[95044,99441],[47517,96786],[11910,88687],[23727,27258],[91434,95243],[37954,56001],[77722,83568],[32679,39398],[7389,36010],[30017,68914],[25673,77632],[59177,91637],[7379,30399],[3038,66305],[9283,24048],[87959,88416],[19645,52371],[64984,99350],[60592,97835],[35091,82023],[62517,99448],[69042,86269],[36805,46142],[75111,83146],[4144,25934],[25624,53507],[39136,79359],[16717,40382],[78003,82048],[6109,46323],[38643,51412],[15456,38440],[10739,25605],[53960,95986],[73503,88050],[11181,57124],[74978,85350],[81282,94363],[7228,71921],[30450,69598],[75932,77513],[86743,88644],[99905,99929],[49258,66002],[35735,67190],[65107,77159],[54445,79641],[98521,99487],[55081,78748],[53576,83434],[505,28966],[35041,55850],[35886,71029],[18649,23589],[67419,86527],[46024,61451],[66399,71763],[31189,97209],[93755,99712],[94269,94625],[87045,94726],[3394,45295],[71035,74297],[78278,83759],[94065,97710],[9032,91599],[77621,78969],[41122,81443],[51206,85148],[77724,78179],[69135,98321],[5126,13004],[12426,71413],[20216,72030],[97575,98001],[63369,83255],[14824,61988],[35361,97988],[16195,28168],[5770,9712],[83273,87299],[46390,82733],[94185,97594],[21551,42688],[48115,63415],[93564,99943],[86845,96840],[8585,25779],[67637,91852],[3438,64269],[16592,69515],[77754,87515],[97487,98312],[84976,86214],[34866,99502],[85848,90024],[74577,97602],[62527,95033],[19730,78860],[33736,38501],[17012,34112],[94799,96391],[46719,91632],[82531,88868],[84366,98357],[19608,55538],[35118,89636],[32000,69918],[32659,51080],[28716,87589],[14378,91534],[13344,60345],[76699,98429],[86722,89986],[48585,79408],[58412,78093],[7398,11757],[9052,61345],[59565,69764],[28696,34796],[17644,33784],[70646,97586],[52241,78888],[48124,52220],[84499,99971],[31727,32279],[20729,26139],[69704,78129],[22152,39063],[23520,31537],[20339,53583],[5238,35360],[55141,69156],[43126,54678],[83281,99607],[13042,46731],[63972,76920],[85556,88915],[22702,94449],[51085,70538],[78627,87950],[88488,91168],[77497,91331],[56225,97747],[55791,95350],[43317,84373],[72408,93410],[41042,59366],[13839,53585],[41394,96480],[75853,78402],[25162,72531],[88124,98143],[57201,96345],[8738,98985],[99619,99864],[29790,75297],[35547,75385],[97944,97946],[13843,20821],[1800,16601],[1282,51666],[35173,59853],[22211,35231],[39601,87729],[99881,99965],[16816,24097],[89606,95064],[18357,74838],[63024,90684],[65176,94625],[27279,81494],[26314,70758],[30846,98526],[66716,90136],[24064,90622],[66372,91031],[98111,99014],[68440,79263],[27962,83800],[72354,83654],[24707,94885],[82753,88098],[61630,89196],[89701,97667],[5557,96260],[57478,88021],[28843,97773],[84573,96229],[20109,39590],[65129,79524],[87134,99189],[48704,98500],[84973,87169],[64949,67356],[61887,79384],[19147,46932],[25602,88989],[76049,85010],[1199,61441],[64143,74277],[73129,80642],[61390,66742],[42555,74525],[80702,97072],[46242,49719],[74675,85314],[88323,97083],[78563,81590],[63975,71677],[87679,93176],[26543,55046],[44004,60185],[58679,78981],[91340,91928],[94147,94676],[59185,60035],[97972,98902],[2353,22943],[81957,91881],[86998,89921],[40757,94255],[83738,98162],[36008,69749],[60264,96277],[40066,65968],[48433,80675],[67349,95732],[23136,25755],[79629,87927],[22804,55275],[46702,60366],[50712,96478],[61372,96828],[92933,98827],[72489,96869],[60829,96987],[30799,57699],[81294,90352],[2033,4900],[23051,38690],[28792,50160],[21026,38203],[87988,91191],[18986,96611],[76723,82447],[35128,41924],[53318,64809],[4005,53008],[77553,84319],[68749,95489],[27196,66400],[83701,98374],[42838,86432],[82698,92147],[49579,96497],[36830,62933],[99820,99961],[25329,90531],[89894,90952],[84188,93075],[8241,34499],[31249,85010],[64528,98702],[75325,95464],[22668,47401],[92491,94670],[70174,81016],[95415,98027],[54638,61541],[64401,95061],[83681,93870],[17413,19857],[20738,21289],[64634,89886],[16695,84050],[83792,99611],[69318,75644],[72989,92305],[84360,84373],[46437,96514],[67441,69356],[66377,94167],[8316,26503],[96888,98710],[50642,83598],[74290,78480],[79709,80537],[2269,33297],[78892,88837],[65234,85626],[9710,30465],[15393,53082],[10363,20692],[46207,52970],[9301,85413],[7018,51539],[59808,60361],[18009,51608],[8015,15688],[34431,94330],[69925,96910],[58399,98795],[95354,96622],[53966,64131],[92982,98232],[94694,98812],[87979,93247],[58448,62027],[83099,91635],[85608,96940],[53601,68381],[76290,84096],[72766,91940],[8554,87812],[38284,65400],[10789,90614],[28882,59736],[5453,75274],[32817,91174],[71589,87048],[20208,74192],[51449,97436],[68952,90599],[3687,90991],[32526,41962],[88106,92420],[82692,95237],[55216,72127],[70723,94057],[85897,93776],[59695,65058],[60133,68822],[86111,99791],[91295,91884],[85396,95941],[92919,95841],[78478,80226],[8376,63169],[25594,89154],[49053,98659],[51193,92499],[63266,64753],[32186,76303],[14958,96221],[47315,64047],[50168,56208],[51235,99535],[45517,67549],[36863,93020],[75572,83709],[53574,60061],[30258,47558],[45691,80419],[6504,70130],[99345,99829],[27194,33216],[14274,18415],[38694,44812],[77635,86182],[90513,96500],[13270,90935],[44697,99158],[71391,87998],[80232,99084],[72411,98132],[51437,95016],[70494,74718],[1705,86610],[58639,75360],[1767,10947],[37541,63683],[69483,74463],[50096,51306],[37024,87507],[62893,70631],[13336,85507],[9037,67618],[59747,90894],[49596,83052],[81053,96948],[70652,96610],[24495,30159],[31081,35506],[72875,94025],[61788,64726],[79532,98738],[42586,84023],[96816,97993],[46951,61254],[39012,82626],[44907,75994],[43290,79588],[31199,84932],[49982,62220],[38064,71430],[28403,80919],[54719,61226],[79788,95553],[48484,65001],[65608,68012],[35132,50335],[63388,74177],[75088,78105],[8967,74426],[43329,89672],[63913,70708],[71783,92675],[68703,82418],[30747,62536],[20641,82031],[239,58964],[63736,95829],[50182,97083],[82017,84095],[46531,88950],[78182,98270],[11511,49787],[27326,34428],[895,18630],[29996,41901],[16932,54090],[90831,95239],[16468,27632],[668,63474],[79610,87304],[71471,71686],[24574,43063],[82034,82590],[43658,45850],[40042,95363],[99158,99561],[83089,89484],[47321,99931],[39197,77981],[8577,82293],[34658,51855],[72840,83143],[62357,78583],[85728,89945],[76862,99201],[86559,89571],[60979,66594],[19335,33887],[91518,92498],[66181,85621],[50667,59117],[24684,65683],[41615,86973],[70191,83832],[61457,90618],[10188,87628],[76325,92733],[25856,62079],[2151,58583],[72607,82726],[38044,70418],[17504,34741],[76208,84502],[53868,84063],[52803,67781],[55675,89586],[90263,93931],[25532,79681],[40091,50359],[63247,65846],[54726,69129],[15574,28090],[38480,99808],[6603,52563],[92056,97399],[32512,36965],[60680,79559],[85799,96175],[87026,89046],[62647,65675],[95582,95685],[40999,66288],[24998,26047],[20842,24074],[38809,67794],[52536,77102],[20119,27524],[22512,57458],[45396,57974],[15694,33098],[25716,55875],[43641,72008],[19255,29938],[87405,97546],[15983,60290],[8656,55318],[93268,97909],[2837,80345],[99853,99919],[66411,88714],[23905,78598],[80949,86349],[21992,47778],[93951,94487],[66526,77269],[70250,85928],[52854,88309],[91022,92039],[65039,86112],[55614,56426],[95816,95983],[71551,95227],[86294,97405],[96668,98588],[39262,90508],[30608,74189],[64120,67730],[2885,19320],[42649,97666],[29154,86018],[29000,79821],[2961,95125],[87331,89473],[53379,78915],[28779,36833],[79201,85011],[41,98363],[43611,86359],[99021,99295],[19127,62703],[34393,98515],[6505,32781],[6099,56900],[58774,92815],[22865,84498],[37903,85780],[69845,86317],[34685,72363],[43362,70384],[27542,59285],[77739,98107],[17546,74424],[36802,70297],[51742,98581],[13476,69791],[20845,47419],[70984,74817],[94498,98804],[8566,63323],[38887,83174],[6941,73998],[19728,78213],[24267,28190],[78195,91053],[25200,89506],[59493,64979],[57147,68855],[10451,81842],[91347,92565],[86751,97876],[15891,73629],[68145,87189],[85577,98681],[89749,98367],[41853,72956],[31067,60710],[15271,72283],[42376,51490],[54520,77937],[23105,61906],[66905,74595],[48757,54777],[11903,57927],[75686,87396],[61244,61895],[95637,96794],[18138,25771],[78358,99805],[8391,75486],[88857,98265],[30677,45184],[96031,96982],[22917,88751],[1919,15356],[90784,92700],[3497,84191],[99782,99930],[35621,91273],[50356,96394],[15602,37267],[18793,39317],[42427,80873],[25828,68412],[21778,61184],[45899,90910],[66655,92853],[61825,75989],[20312,91985],[84198,86813],[39779,60669],[68003,98584],[76124,86628],[44417,98521],[94779,96217],[6701,53554],[81739,97973],[1334,64525],[70276,92451],[70498,97920],[62555,81559],[23324,45008],[18328,79453],[92558,99777],[53880,57222],[26601,79423],[67206,94207],[30982,54159],[78800,98035],[19336,92566],[80613,87698],[8330,23955],[22863,76800],[5678,72293],[75327,93581],[64482,90270],[88648,99754],[37286,41337],[68293,93974],[4648,60768],[92483,96652],[96669,98515],[75793,92913],[55418,89989],[56181,93095],[35229,74508],[85627,90527],[13870,27118],[82085,83299],[93905,94089],[21127,85674],[80318,94640],[89422,99747],[90064,91579],[80938,99040],[94663,99602],[237,70567],[56390,56391],[82493,82773],[9453,40102],[96386,97810],[91878,93639],[68985,82639],[10181,56889],[91186,91692],[89635,91002],[84318,94295],[47050,50040],[46519,64672],[46355,71095],[56286,56452],[66165,96803],[50344,84063],[28917,47618],[33676,51022],[40292,73940],[28668,65062],[29771,44010],[95187,99942],[74196,98542],[90387,99272],[95145,99249],[70116,81113],[77073,79675],[70552,94124],[1543,98303],[90446,98141],[13129,33058],[55615,69540],[75367,86146],[88285,89232],[69562,93412],[12788,22505],[82890,90831],[55043,57193],[67228,87630],[19107,44374],[3191,69445],[45364,62555],[84465,95611],[10490,48361],[52846,68908],[96382,99389],[8423,55239],[57424,62471],[25448,73078],[85007,92760],[36797,61734],[70765,72562],[78255,87992],[58096,89854],[80233,96807],[93012,98732],[16010,37971],[27120,58034],[36730,54538],[69857,92731],[54052,91362],[59235,82649],[18896,90093],[55051,94084],[73966,98084],[63812,64964],[71862,73543],[69815,97734],[74876,79419],[65056,88652],[78972,94870],[40112,94301],[11283,91324],[86781,92983],[14125,37469],[14509,16391],[82566,84299],[91809,92117],[72328,95194],[60947,76633],[27245,74643],[81062,81904],[2167,54588],[3124,61283],[97190,97730],[20938,76506],[24914,56138],[76420,96896],[28765,77297],[35665,73681],[72462,97272],[51393,60071],[58757,83814],[12066,64711],[62244,81295],[59890,97338],[40495,53696],[58559,73929],[39216,50296],[36294,47931],[18643,80541],[39135,41060],[59806,86885],[97532,99425],[71104,85551],[69366,70279],[32470,73784],[51892,60419],[28355,63876],[10134,25261],[85750,91429],[12512,83026],[11945,22850],[5468,51245],[47492,75113],[13410,62474],[80584,94016],[92447,94708],[24199,33822],[48143,65990],[79650,98435],[95424,95914],[11497,47464],[88632,94094],[37201,95965],[44536,98853],[23963,29902],[57592,75795],[59090,63045],[70410,96976],[70102,73487],[46254,85996],[77631,80093],[52892,62824],[58313,66645],[77296,81663],[93037,95473],[34251,90210],[99669,99925],[22662,81373],[66907,94950],[54278,82350],[51798,73642],[83177,86323],[24476,56425],[8220,89405],[35548,43255],[88941,99090],[59859,85273],[60128,83384],[52869,53250],[50941,82544],[49965,83221],[10726,57172],[60867,98373],[8206,39025],[78864,91179],[63580,66364],[99368,99458],[32482,60494],[95512,98538],[8657,13023],[10195,55261],[30507,92793],[69011,84818],[63365,76129],[53426,68188],[60745,95856],[98943,99161],[23474,42104],[86800,99739],[17470,34144],[94328,94831],[92455,99042],[40672,89564],[66687,84016],[57893,92556],[80806,97356],[81599,94124],[65759,70694],[95689,95968],[33479,43480],[87528,97368],[32258,82473],[89353,93116],[37234,37973],[30082,81568],[57671,90876],[13397,78879],[21935,60522],[91617,97734],[43321,96003],[55974,96197],[41663,63761],[5095,32718],[24779,74975],[55422,55922],[90863,97640],[60076,72084],[1304,32358],[40354,77847],[45592,74937],[92788,92829],[49956,52556],[92105,92607],[7428,10308],[84009,92396],[16108,68936],[6461,48449],[84141,98510],[7056,19374],[7195,63612],[24394,74604],[81706,82158],[90738,99972],[49198,50914],[54685,99442],[44512,77586],[79158,79601],[60633,93798],[41037,97878],[79685,80574],[89186,95828],[48339,48615],[90626,90751],[47930,58225],[16786,70052],[68168,99516],[92486,98385],[38253,97551],[65358,87099],[88200,93668],[29226,91502],[52971,61710],[65306,92083],[95639,98176],[4424,8052],[86643,98673],[66382,71112],[32098,75003],[77264,90901],[86760,87838],[7922,60496],[15275,86002],[79110,82335],[6565,95110],[37446,81086],[79827,98094],[76431,84134],[76971,94992],[8281,64878],[25270,32129],[71013,80916],[26118,65882],[36115,97969],[33671,88449],[21985,95920],[46337,64333],[22502,82567],[62859,77781],[63526,83398],[26508,71903],[36711,49106],[85117,91948],[35205,48592],[51109,58009],[86970,99845],[61651,96037],[66208,88300],[95200,96617],[92453,92569],[49970,53159],[94261,98329],[95391,98791],[89949,95989],[26541,52739],[54734,77187],[38576,44497],[78463,86849],[97878,99257],[68147,73201],[43293,79518],[81078,96268],[24399,56724],[59013,97712],[79898,82430],[21599,23172],[49604,85550],[35182,42724],[9161,85462],[17883,75567],[40755,93144],[87433,89158],[63543,74149],[59451,79699],[8894,98920],[96522,99100],[10397,50103],[78646,90098],[10683,11797],[95021,98272],[24510,96992],[71872,86095],[51573,54446],[51812,91997],[26914,41680],[37545,98116],[79698,93634],[84225,85346],[17159,54570],[64200,91448],[59278,67597],[55389,73291],[1873,57696],[33740,79379],[163,97714],[75906,97006],[47831,89110],[71423,77290],[97303,97386],[62111,96707],[7660,59356],[45417,75632],[65601,87722],[48741,67437],[13802,55471],[3376,82840],[63197,89296],[96989,99912],[50964,55183],[73597,90180],[77214,89825],[15860,74463],[35130,83499],[99799,99999],[84293,90041],[55847,57498],[31349,62490],[95241,96763],[14957,76095],[27291,97147],[6610,73266],[2293,26879],[88288,89132],[61204,92315],[88746,89278],[76779,91369],[48070,58761],[38807,71525],[191,47932],[4835,40304],[78188,85996],[46256,50774],[87171,95758],[33727,42022],[51679,87313],[14803,82295],[72258,90236],[73751,85771],[77743,79548],[43833,44891],[24367,70565],[30262,91988],[78448,95046],[94366,96837],[78650,83502],[27339,87329],[34602,72024],[28701,77808],[78763,94459],[11942,82085],[26701,31609],[18813,95880],[53587,89504],[79967,84725],[72948,78091],[85439,92717],[13423,35471],[21374,36149],[15164,58712],[40076,94245],[40953,99923],[41734,42416],[16733,98954],[49984,97469],[39784,91988],[88790,93606],[71195,75365],[78934,99811],[24809,65033],[71247,91272],[16493,73804],[34899,90704],[12545,26495],[64499,94294],[26380,57648],[13255,88007],[36999,41697],[7114,7181],[57996,84773],[57917,61901],[14774,22360],[28977,62234],[77601,83134],[65177,87859],[37931,90722],[88558,93489],[59537,95686],[86390,91634],[63217,93126],[3169,23467],[20598,75348],[96962,97306],[30678,55715],[89745,94790],[99293,99841],[74530,80566],[80597,93687],[81483,92260],[46480,99847],[16869,81550],[10123,98865],[98969,99411],[66793,92787],[96095,98713],[29378,68788],[3589,76532],[89504,90472],[45779,59554],[67652,88380],[57444,60240],[61599,76879],[19428,53692],[4639,92014],[39464,73462],[4540,84034],[51089,98021],[3056,66290],[57891,69893],[70575,72910],[8043,51989],[36834,45022],[59176,97449],[39976,52833],[39694,59990],[12076,20250],[14132,29003],[47099,83179],[66470,95301],[10618,16695],[2239,16062],[46906,49691],[95479,99284],[31680,61701],[27729,30703],[80568,83505],[43676,95722],[49527,99117],[16164,97389],[10699,54667],[60481,95417],[34109,81342],[17795,23040],[55866,87512],[3969,23926],[98029,98173],[87323,88352],[34540,45661],[32305,96426],[45458,47886],[66861,71486],[7738,46553],[17420,65827],[97960,99561],[63852,79401],[51367,79782],[98260,99625],[28249,50188],[82912,95889],[61189,74359],[779,72994],[29439,61370],[92881,98227],[4368,7538],[55346,93019],[19637,31889],[95607,97489],[57543,66824],[41329,96598],[84182,85337],[50795,61794],[61856,62162],[75568,79421],[87512,92175],[43770,82641],[73611,86405],[42532,45214],[78869,99736],[60190,67205],[54759,62748],[37523,40955],[83383,84448],[45244,89999],[98263,99811],[95012,97310],[3709,99205],[41194,88469],[5687,71457],[50564,94203],[91225,92929],[52489,89415],[69267,88958],[32570,93514],[60770,84951],[40211,63852],[60822,91094],[80884,97957],[62733,95837],[91351,92085],[50875,56237],[96429,99887],[16068,84593],[89796,90363],[92590,92949],[79567,90329],[11846,35291],[48941,68443],[37350,47668],[68081,87783],[65588,70533],[23729,64497],[33189,68650],[87363,96647],[34586,94098],[85503,96975],[98239,99221],[68708,79345],[97996,99235],[58444,92526],[34165,41703],[78170,85666],[95154,98227],[62582,74688],[12253,23374],[77585,81431],[29720,42380],[23397,33835],[98217,99242],[20554,27807],[63092,71480],[34674,36403],[35732,37409],[9525,25713],[14276,88158],[18316,98261],[90820,98968],[3847,80766],[86644,96504],[36493,89142],[22601,40210],[76763,89680],[82451,86020],[81308,86887],[28044,33562],[95173,96333],[58051,59929],[56979,69135],[18647,60362],[72823,77052],[15501,35043],[90567,91785],[4837,93478],[36451,91537],[1752,80705],[62510,91383],[57518,79388],[53172,66040],[91644,94591],[77117,88566],[51134,57100],[95101,97805],[63766,73630],[93977,99086],[95606,99107],[11987,14469],[73529,95493],[23864,98930],[75881,96678],[22157,29432],[11095,24170],[60323,87857],[87183,89260],[45345,92664],[55789,75196],[36092,89638],[89143,90457],[51635,94221],[98847,99964],[51372,85177],[98424,99038],[78043,79860],[89596,91352],[22144,71512],[72502,91294],[10438,28716],[17348,49557],[80799,99076],[28165,37935],[62470,87285],[22672,33729],[74431,74632],[45279,51421],[29141,30827],[11311,78705],[47476,72297],[60329,95562],[64724,74519],[19443,96949],[55540,83263],[5272,73795],[75940,89546],[8262,38393],[89023,93940],[2845,25911],[21195,72222],[7159,96290],[67015,83527],[43830,57272],[35368,64617],[62482,73007],[12885,59176],[10426,28202],[59332,83240],[23706,64946],[11799,70406],[19037,53439],[6375,47897],[390,68856],[97503,98043],[85817,99044],[13558,90452],[48518,74234],[18770,98193],[14993,96900],[92014,98095],[25142,58007],[97688,98461],[73982,90593],[63066,70561],[4632,32880],[74716,85300],[26375,34894],[76089,76592],[24547,93665],[12106,71773],[64132,88834],[80602,87848],[74536,97829],[80323,90962],[72168,78008],[68407,96339],[24626,48717],[26280,59717],[62948,70630],[66228,82380],[22185,97840],[67530,82251],[92173,93348],[74178,96860],[78260,93254],[1618,78258],[44765,59503],[19294,79988],[11083,22322],[10897,82504],[23847,82193],[56464,67060],[7126,59877],[35225,98737],[87472,88441],[20287,34588],[83727,91468],[23545,87069],[23150,66317],[48175,87478],[60563,79398],[62936,68430],[21225,24519],[90297,98077],[6292,54922],[26556,83193],[66269,84130],[78141,98325],[91096,94020],[92880,95520],[34859,56645],[1821,77518],[75414,92635],[82732,93167],[18186,29272],[894,4775],[65936,89133],[89155,99993],[7179,61575],[72720,86601],[21430,41107],[37653,69543],[52014,64591],[66297,87353],[9373,89817],[29295,29337],[58236,68433],[14038,25226],[73969,82314],[47592,66973],[96051,98233],[38126,91251],[59434,87531],[45753,48466],[58189,76100],[3143,10730],[38988,62295],[38102,61134],[7896,79682],[87240,98776],[94385,94638],[72845,90227],[65125,72295],[55884,70425],[4374,4664],[38473,67041],[9461,91569],[29698,52922],[55787,80484],[28088,75868],[43341,85197],[59874,78368],[74097,84197],[60301,79851],[92189,94077],[96720,99989],[44772,44891],[17968,98110],[10257,55407],[64367,87731],[47206,91771],[39000,52930],[5962,80042],[31822,77211],[71166,92729],[34429,67782],[20610,81595],[36575,62762],[38305,83849],[77650,84908],[16663,76576],[80607,82900],[82455,95419],[30266,44308],[93736,96273],[78518,83960],[93989,94359],[59049,73321],[79944,91528],[95625,97624],[42221,49712],[17130,75541],[51504,71382],[85536,93722],[89523,93651],[85591,96762],[72808,75354],[38006,52970],[7601,34725],[84531,85867],[1830,32914],[61509,86536],[9571,52445],[1828,98288],[70189,99620],[23550,39019],[72920,90413],[17036,81932],[94380,96802],[17759,33065],[74273,92727],[76158,77140],[65679,83434],[34878,45124],[48050,49203],[8615,9103],[74083,79830],[6342,73096],[32209,44786],[81203,95288],[57056,64233],[58202,81711],[56919,81304],[11190,93573],[46290,60005],[65734,89547],[47722,92156],[14705,43182],[37765,92286],[89205,96867],[25988,97439],[32681,43053],[37223,59001],[93073,96894],[31567,56078],[5752,84825],[83545,93472],[7113,95342],[4175,70159],[41010,44579],[94440,95991],[90633,99825],[15323,61023],[22711,64785],[47626,64087],[37292,70090],[98076,98196],[79747,85843],[57880,82368],[89210,91460],[41448,96511],[47560,65802],[24742,97528],[30744,42878],[61918,69029],[16873,92814],[42307,56512],[74182,90267],[82889,88973],[22298,57594],[54173,69864],[23204,44615],[58463,97437],[40496,87584],[80829,98141],[13055,51592],[18199,57026],[98692,98980],[15594,52346],[49307,68167],[16168,55994],[70881,90345],[16526,31808],[71941,78570],[83405,89259],[2746,18531],[48014,93431],[9098,56310],[66477,94114],[86326,90902],[29506,37504],[64246,98193],[37568,55621],[28499,70464],[98115,98500],[67511,95059],[50249,66873],[24236,99434],[46641,51198],[15802,19398],[43134,63752],[67776,76152],[11027,27560],[31334,85867],[27908,48372],[2544,10872],[42160,95060],[50594,70757],[59656,83687],[34998,81291],[59778,65973],[12620,79401],[64829,76833],[14938,92930],[34184,57695],[25319,58735],[70419,87428],[62804,83078],[86763,94400],[87763,97535],[42736,67098],[67698,72046],[46076,61562],[64703,76258],[49257,93937],[57701,59365],[95050,99181],[79160,88038],[92548,94149],[36169,67818],[74626,79351],[36495,73175],[56033,58322],[61543,94991],[43935,99026],[62806,72805],[1544,23265],[41776,53639],[89160,92770],[7700,73030],[81151,91605],[5723,96833],[46107,93572],[42073,47759],[1935,33604],[92316,98948],[89961,99547],[96350,96889],[85306,95704],[71200,80621],[16977,56870],[73375,75641],[63862,75444],[75307,97741],[7843,48915],[95708,97524],[8684,63351],[43883,55685],[74578,78991],[77135,77919],[7620,71891],[86420,91954],[29515,50927],[82517,93862],[33060,58048],[42800,62171],[74113,97483],[88359,96550],[43567,73297],[94162,98105],[75899,92369],[69628,86425],[56061,74879],[85188,90107],[65969,88418],[95271,98206],[4112,5990],[52255,76998],[171,18188],[78174,90429],[85746,88848],[57715,74254],[84292,87066],[12610,62147],[42200,47082],[95525,95591],[24694,38795],[14834,97708],[91790,99487],[31843,75368],[5761,8575],[68216,85269],[15111,22088],[99972,99991],[26358,93454],[61521,61770],[28159,41406],[14775,54289],[77535,96208],[82739,98217],[84792,90424],[60604,82473],[83932,91422],[37382,46391],[49017,97274],[16315,96421],[44683,90009],[43233,73598],[5822,64872],[44733,97609],[49264,60834],[22844,67384],[1155,48938],[94473,96056],[86544,86861],[17523,65216],[71726,72790],[68996,96900],[4135,14948],[28804,94260],[64368,86885],[20822,25089],[29009,68265],[15951,57941],[15017,25922],[92583,92805],[71737,78339],[40541,93084],[59661,70408],[90757,98102],[88514,98635],[95624,98809],[68291,82389],[48897,91676],[70026,94178],[79383,97902],[30311,65953],[91265,96631],[46496,47469],[20777,70367],[14816,58896],[62126,73024],[84468,97288],[57075,74488],[43820,70160],[99337,99424],[68463,94552],[4699,40164],[60127,90144],[98158,99613],[61588,90014],[92143,99172],[99660,99678],[73447,85307],[79834,96103],[16009,81432],[10187,12590],[9615,11781],[4250,31678],[80678,87554],[15053,46748],[731,23810],[32027,79326],[36374,46260],[46993,70988],[60348,99016],[48581,67140],[2828,8575],[61423,74079],[84315,86466],[88418,99598],[30780,42438],[28195,46963],[84947,90223],[10299,76754],[51553,72431],[56541,77291],[73808,81726],[55770,67671],[96491,99037],[4343,70966],[73760,85520],[5007,52011],[99426,99546],[82542,95791],[37015,71528],[64814,78688],[20167,32196],[78144,78312],[34270,50449],[15863,26114],[31973,40068],[35834,92605],[5441,76986],[78461,86086],[39462,69314],[89673,91446],[68784,86375],[77226,94493],[40052,40826],[78643,94298],[7342,76257],[33408,57049],[25382,70970],[73951,93637],[96952,97209],[93403,94707],[5716,33310],[78180,99087],[83530,96024],[6068,86022],[14833,74102],[59918,97107],[77459,99648],[35588,95378],[6905,52534],[67418,70984],[39722,90369],[80984,93171],[71939,77678],[88573,89722],[63192,69807],[48935,93644],[76354,92230],[94441,99582],[57692,74890],[24727,32076],[93476,95068],[23353,97360],[31034,94233],[14756,33558],[7235,80900],[52303,67988],[82598,99435],[68636,75723],[56879,77330],[41021,74490],[44546,82826],[64650,95261],[21653,94786],[93593,95303],[13823,34707],[93136,99054],[89879,98282],[15048,50398],[95159,97325],[61949,69807],[34816,36505],[82136,84645],[61109,97553],[72726,88384],[30433,62549],[39358,99658],[81071,95879],[28879,63075],[6039,22006],[42631,46932],[23749,47877],[77727,81028],[38137,70791],[97559,99508],[27761,77106],[52000,58090],[87617,97102],[28254,31989],[18155,64844],[80031,82100],[70378,92288],[33080,41316],[80259,90525],[38411,53674],[16642,96027],[1029,15452],[56740,67008],[9701,39857],[80129,96273],[25947,51874],[25920,61604],[363,76075],[79000,80614],[85883,98521],[99890,99905],[87422,98434],[22091,46289],[84864,99042],[64931,86608],[79642,84695],[18620,58822],[27308,63792],[59117,95954],[5945,85467],[18674,54180],[35076,79685],[62601,71775],[46628,81208],[1325,46523],[76252,98418],[20574,87394],[75703,82382],[73910,93226],[58188,86314],[27723,95283],[12687,95316],[67925,88427],[8958,27728],[26157,41450],[88935,94969],[10946,96067],[77976,85174],[63308,67129],[1351,41564],[97621,99680],[32780,64035],[62596,83601],[98227,98635],[38962,91802],[42057,53062],[68403,77267],[51941,95570],[93566,97077],[24460,40558],[29721,62576],[57470,77315],[8389,18243],[1788,84142],[14068,96946],[99925,99966],[87276,96643],[22700,50057],[66522,70854],[9732,75823],[1110,42009],[6641,73763],[33528,53425],[69902,74997],[1133,17243],[32303,84562],[67783,96327],[60376,96545],[68442,77990],[76073,86390],[55378,69152],[62051,92984],[34087,87823],[50623,70031],[83393,85769],[39662,86546],[79692,99671],[10892,46982],[37994,42591],[39213,91105],[45640,85064],[65505,93013],[31418,40997],[25861,68432],[84302,87856],[30275,42539],[49634,98056],[12821,89765],[70125,74587],[74378,81107],[70043,80993],[66759,82297],[37543,54109],[79563,98022],[74774,90201],[7687,84390],[8598,63885],[47557,97813],[27474,68739],[80080,87722],[51175,64679],[96223,98540],[98273,99126],[77248,90280],[92582,94820],[43870,57908],[17948,81290],[21858,79225],[99411,99523],[7185,56896],[20346,22749],[51804,81516],[12793,72618],[93958,99855],[95053,98354],[42940,61077],[22438,98994],[77280,89995],[83255,93223],[46892,51637],[26952,77323],[25348,30458],[16221,47489],[72613,75622],[82778,97522],[52960,73208],[31926,93899],[1588,21971],[86658,94640],[39232,53533],[87490,94194],[90248,97716],[29096,56887],[47232,89769],[85620,88511],[20881,80297],[20386,57474],[24599,50422],[61867,73815],[96994,98133],[25212,37931],[50966,79858],[56751,95810],[56358,82574],[3809,11108],[14271,76561],[6555,41632],[92364,92377],[40975,82885],[91528,91603],[84336,86383],[69265,95851],[49241,68946],[76624,87359],[51931,75961],[93668,93712],[94650,98697],[84718,88719],[49536,56391],[50690,54826],[53698,60681],[65653,65983],[33459,59776],[54192,83233],[55297,56051],[82540,98653],[78711,87338],[22420,84775],[28070,80516],[21743,63141],[93731,99738],[81973,97735],[95375,99113],[35105,92681],[9056,42819],[23267,90392],[74537,80579],[53450,78462],[868,19217],[23094,76640],[90609,97291],[9191,90198],[72605,82051],[2733,45503],[36350,79170],[58199,98459],[11791,60085],[14289,80014],[33567,88368],[29749,97787],[80741,93300],[26103,31354],[89666,94465],[52711,64063],[79228,86209],[43859,90063],[98935,99913],[32665,47256],[85383,88616],[84396,99709],[28678,42589],[55175,62365],[50823,55731],[36879,64459],[96867,99845],[47552,90145],[3181,65883],[69383,76586],[60899,95599],[65666,93012],[11117,21571],[13394,67934],[79964,86183],[85153,88238],[66745,78428],[47940,66838],[49700,84043],[53891,94956],[44464,96844],[35092,80682],[75137,76087],[2058,88185],[81337,88703],[20107,44999],[38234,58683],[45892,63099],[18414,82863],[97905,99632],[4100,66026],[61556,64712],[1132,11039],[22196,60623],[49845,83449],[82429,94511],[51848,88890],[113,62918],[79668,93255],[294,27693],[66116,86655],[79949,83832],[66055,99653],[20937,64665],[52009,72322],[99620,99814],[11059,63806],[54541,93472],[82174,92696],[55661,76348],[53665,80153],[27467,64804],[42494,53519],[31386,55426],[69033,83439],[9343,85859],[51129,85328],[17731,38359],[26689,44449],[54824,73316],[85563,89106],[13433,23941],[82205,98964],[77035,88557],[7916,86002],[38227,76412],[14,7092],[37592,58059],[82533,90495],[69537,98140],[77134,91023],[80786,94535],[65589,99964],[43696,63702],[12281,83739],[31096,56935],[32466,74695],[86626,99153],[44984,96332],[38143,53162],[50364,99730],[6681,83634],[87204,92209],[20797,40285],[37680,71297],[43752,76684],[20290,42098],[46188,71312],[44275,47710],[33056,58434],[72127,88698],[14456,62113],[55530,96590],[16158,48946],[48963,81346],[62822,69390],[54712,98549],[65596,66681],[50225,72923],[67270,76231],[65985,79163],[28883,66384],[59722,67850],[40073,42110],[34635,43556],[96276,98206],[81374,86698],[47949,78974],[85222,94975],[56273,90421],[5121,74625],[20671,99471],[85429,98994],[12416,52734],[51263,88160],[19229,19424],[88338,99263],[3126,38625],[88107,96552],[50905,98071],[41033,91935],[41210,55396],[86502,99926],[34915,71096],[27657,76722],[85644,94253],[91860,95869],[87644,88651],[55794,81486],[55077,59143],[50963,60406],[32560,66268],[68856,75262],[81226,95615],[16912,39161],[56056,72741],[80101,86979],[68402,72491],[72983,78626],[31594,85966],[28023,96216],[35957,67457],[79894,88422],[13193,40932],[34239,63368],[88350,91744],[63072,88585],[39557,60237],[47725,69186],[16191,97301],[28298,31689],[42858,57585],[34891,63927],[28147,41367],[73949,79291],[87287,98995],[53051,94996],[40172,69699],[48354,84240],[27855,60381],[38009,75488],[95395,96413],[2080,87736],[88895,92170],[58229,64956],[15225,74305],[67458,87873],[79476,91014],[69304,77625],[70219,99463],[96866,98474],[21117,93751],[20143,72651],[42950,52871],[56321,71393],[29372,33782],[60369,65992],[65031,82223],[92470,99325],[68296,90917],[92236,97602],[95955,96711],[81016,96579],[4601,97547],[75467,87290],[77877,83538],[84053,85793],[71424,78850],[59179,96124],[5239,65161],[68339,74767],[61896,76684],[41916,47673],[60791,82130],[52546,57918],[41423,97303],[88553,97137],[43596,87490],[24021,32763],[49926,78924],[42502,45412],[85131,88521],[69809,75168],[8159,76132],[89113,98555],[4030,83593],[74037,76371],[63934,97729],[61194,65117],[98821,99071],[98491,98570],[88271,93209],[92960,94165],[39300,50796],[39339,80705],[77810,94975],[12780,42247],[28090,31723],[3171,4623],[49839,72483],[48568,49565],[62124,95976],[35610,53517],[6523,96333],[58173,97998],[36281,97587],[79076,87045],[89388,91256],[23102,69013],[10499,65778],[94181,96528],[95192,96970],[23213,80166],[42565,42616],[80278,87977],[39187,51639],[84530,97781],[35645,78128],[28283,97082],[15433,99166],[76278,82797],[28937,62986],[31995,79590],[49618,91608],[50709,80781],[73355,92025],[17555,68179],[35212,86105],[83431,91644],[23405,71940],[35238,78581],[50666,61467],[71895,98051],[18621,43690],[87352,93143],[13233,78262],[84249,92695],[80147,95848],[70071,93039],[28183,35753],[29201,39852],[22583,72870],[1918,9824],[90990,99886],[89004,93625],[51735,84970],[64816,74589],[43296,60272],[15319,21061],[82482,89915],[89888,95155],[30536,37012],[11276,39798],[68951,84953],[21046,49326],[93240,99386],[60408,86203],[67829,85627],[15916,54005],[21324,42625],[98680,98842],[47022,61432],[8966,85174],[2170,76822],[51045,92919],[48079,91168],[97145,99997],[23888,49881],[17381,70009],[15179,32827],[11113,20106],[68233,96719],[95406,96391],[43261,58979],[62995,81609],[42892,70402],[75227,84284],[70810,87485],[50919,97844],[61329,90856],[27753,35882],[66975,92444],[19658,97703],[44369,90082],[50467,94949],[15579,44303],[5372,76467],[61101,68700],[74448,86996],[80849,90368],[62329,96008],[12975,69118],[72416,97768],[62118,93450],[88227,89016],[68726,74304],[88903,96372],[76693,82252],[19420,27216],[86677,99197],[91786,95712],[51121,81244],[94783,99227],[85581,86409],[22041,84045],[5185,62192],[77975,85497],[59704,87932],[36698,79291],[90075,93106],[29762,45036],[46634,59383],[18924,75132],[48002,57610],[70416,76535],[66388,66734],[59026,79092],[52006,81436],[20997,21332],[11639,27155],[11319,66667],[13625,77323],[47533,78385],[57985,92401],[44121,79391],[15503,82889],[43491,67132],[13878,62615],[95432,98951],[28761,38873],[92123,99204],[43848,65304],[16204,24481],[73912,91754],[67387,82021],[62814,83154],[44600,89193],[60734,85467],[84490,97248],[50321,86124],[48036,55810],[98669,99148],[92523,94023],[27176,96743],[68803,73321],[48505,57828],[104,19776],[23454,55607],[32713,56812],[29582,48058],[50705,62294],[55606,86504],[41358,75921],[57277,79613],[99269,99622],[30551,76091],[22330,76859],[19405,82683],[72632,73408],[8462,63418],[33267,66542],[45263,85952],[52552,82152],[70873,99928],[24943,45935],[5492,46312],[77995,79098],[68176,91406],[89812,96440],[56527,74360],[38042,61800],[90313,99600],[54882,68363],[29866,75897],[60205,95223],[99496,99935],[4998,87862],[42744,97358],[55352,59325],[82258,92740],[41209,64999],[57032,85507],[35423,76434],[47763,83838],[5731,51044],[3600,93546],[10713,85214],[31342,49933],[98627,99185],[63353,78737],[24265,43307],[26782,65717],[75480,78372],[56699,85652],[74542,98420],[51720,91848],[20621,52204],[53617,91935],[28415,41788],[81179,95957],[36496,70555],[59683,76310],[1491,22952],[95798,99386],[52196,70595],[35446,92693],[94250,98787],[93444,96168],[64980,81966],[93009,99873],[17478,33161],[30807,80212],[76867,80401],[35913,65427],[91834,96740],[83126,90176],[14916,68442],[62361,95752],[43238,63457],[18542,53165],[42916,62140],[72453,73390],[71341,90658],[32396,39493],[66986,74172],[47085,71505],[59091,95023],[71384,86592],[17806,30908],[62421,81965],[19278,93255],[86265,86591],[56673,88973],[93150,94969],[90647,94826],[48356,84039],[65540,93098],[20535,24695],[13401,93885],[56914,66868],[43181,74895],[81124,95885],[52498,84931],[40498,89829],[90383,97131],[83058,99069],[65740,90168],[20371,45449],[47666,69692],[30501,46841],[62303,89957],[28534,62185],[99613,99693],[80152,92387],[49663,78031],[93856,93968],[60959,66754],[72996,92789],[31475,78732],[83498,84511],[91980,99459],[9481,22513],[77298,79089],[7737,59256],[5055,33073],[44029,51325],[87087,89339],[74736,78680],[37933,61616],[72593,97905],[11339,58028],[28946,87613],[14531,29388],[59523,62426],[45667,64760],[88561,91020],[3269,71861],[39582,57313],[65595,68608],[91102,93049],[18241,66553],[58707,74445],[28331,73518],[56954,90265],[66869,69723],[5983,15523],[39731,52963],[46058,62156],[37730,73411],[33847,52084],[59480,83861],[21135,96804],[8477,13983],[3583,86531],[71560,83182],[12791,50745],[64929,75387],[78344,86399],[83363,94721],[52248,58742],[9899,50354],[45150,95035],[70849,92499],[43221,87734],[59899,63269],[91242,95064],[33811,58010],[99819,99989],[51195,70913],[46243,84400],[51697,64981],[39379,99522],[22595,64298],[65396,65680],[94563,96006],[27369,57018],[32247,88016],[34978,85859],[82022,85256],[36300,40403],[54203,68241],[27422,71056],[70536,94225],[56820,92449],[44408,98658],[35015,99886],[52473,76730],[49163,55057],[18735,30566],[35616,56146],[86823,92809],[88977,93587],[51660,81895],[54654,78018],[68630,90946],[2399,38745],[51314,98912],[94127,99689],[93573,94040],[5053,58641],[86196,90800],[47120,86402],[73000,89446],[12471,90164],[96038,97717],[48883,52391],[68834,92850],[69100,87956],[39411,93232],[42412,65410],[7618,29458],[72604,82537],[33798,85260],[79071,93177],[72456,86184],[52149,96787],[69254,95551],[31090,47733],[39346,93820],[36466,54695],[67720,95470],[61245,93990],[45400,61962],[69636,70046],[61313,87179],[88181,90392],[39201,51705],[41538,67677],[74708,83874],[25942,32648],[79765,83954],[91709,99397],[78710,94680],[19606,22474],[13403,17588],[69000,86937],[67453,69073],[54517,85802],[27965,85197],[36812,89437],[19994,31358],[83572,92849],[73290,87528],[47300,68705],[84427,97117],[39180,45687],[73824,99247],[72661,79676],[4636,93802],[22925,30390],[81317,82789],[32937,74374],[83708,95450],[75803,94935],[76498,79443],[79596,93897],[62067,62699],[11876,43906],[96213,96527],[33890,52976],[54342,84611],[94153,96205],[49719,59228],[92682,96194],[24295,40144],[36344,53973],[65739,90115],[1019,53415],[73038,95521],[81370,92303],[84108,89003],[26354,80976],[35557,43708],[21025,31441],[41919,93953],[66795,94177],[7569,10071],[2371,31223],[19349,47767],[30420,83906],[39693,89311],[94976,96693],[25011,66815],[41949,79052],[35825,51283],[30973,35021],[63919,89609],[61973,89971],[51048,61236],[6836,77225],[50698,61792],[14696,50411],[86368,93039],[18196,25342],[6802,62093],[72137,85227],[25461,41953],[99,63102],[14075,17297],[77910,83256],[67494,85760],[75401,88520],[50037,51231],[51703,88078],[91252,91518],[14953,50471],[51766,60255],[12050,87943],[27579,74967],[58269,63275],[53533,69739],[56692,66890],[65193,85950],[84337,91214],[46934,80597],[37161,42387],[12546,23793],[93510,93975],[5409,8598],[2403,25475],[3310,9478],[77620,85477],[87956,96395],[96731,96828],[7462,7708],[5872,25445],[60654,81851],[409,34283],[74031,85917],[48377,83126],[22603,28053],[21802,40604],[77629,94241],[26964,72069],[97630,99420],[82848,90585],[77983,83205],[2698,4353],[46715,66020],[58509,86315],[5253,25669],[61850,73099],[10044,72359],[2937,27096],[72285,87830],[37112,87907],[90262,98574],[24722,44789],[41174,50172],[46225,72941],[28182,49262],[25265,48680],[24737,47891],[20871,52967],[21160,66798],[12723,75390],[18868,19049],[52605,83370],[76826,94226],[67900,90152],[59626,91664],[91823,93208],[24963,93912],[48044,70989],[8971,16965],[8103,58942],[35288,41745],[66732,97679],[21522,63229],[69350,75526],[87283,99910],[70106,93371],[82846,98572],[28426,97227],[75709,91893],[77859,91657],[17944,94153],[11390,45232],[22683,60927],[10894,36991],[22114,51885],[55756,64189],[2560,57710],[35677,49599],[77791,80116],[75035,90190],[23399,52433],[81509,96584],[17934,66435],[36268,37666],[37905,70665],[49485,78407],[81642,96809],[6445,28750],[82299,86349],[23869,80442],[67213,88006],[40225,66349],[49078,86072],[53245,68458],[28541,89094],[98731,99535],[96824,99438],[99455,99928],[27067,67401],[4780,88031],[65712,78722],[5078,14337],[31088,34683],[54324,60176],[51590,78488],[1815,29475],[73906,99690],[10811,33593],[9419,94922],[15678,80646],[97890,98327],[38601,77529],[68098,99386],[96313,98423],[42172,96881],[6171,65658],[40979,61599],[91549,92597],[42879,97844],[6095,36816],[45884,52546],[56555,97168],[69182,95905],[65275,98557],[3196,47570],[86506,92356],[67869,87382],[17904,33453],[28169,40625],[73638,77022],[68195,92284],[95690,97185],[95224,99811],[87786,89317],[27831,40205],[86142,89297],[7753,91462],[17958,39591],[98789,99036],[70455,86280],[56162,71807],[47076,63439],[11281,72812],[7492,58247],[51465,93194],[43647,79542],[56344,57191],[54807,69479],[65932,66760],[60134,77106],[41066,41081],[28806,56241],[79133,80437],[54129,64512],[93918,98338],[43847,87640],[28740,72216],[88137,97143],[25195,87251],[56455,58573],[77771,89566],[24652,68929],[30524,97693],[2633,46802],[39851,96176],[27479,69425],[4320,56329],[14794,71169],[25157,75108],[92159,98264],[8976,58092],[82850,85701],[26641,57853],[78572,91651],[33826,53578],[58233,89625],[25522,73870],[52961,61219],[98241,98672],[53216,73943],[75991,92666],[91436,98436],[87408,98000],[25971,56101],[54130,63473],[74816,99112],[15211,68361],[69866,92805],[42346,61942],[85771,92763],[54411,98412],[6066,76050],[26123,95606],[12864,85242],[9517,79553],[29107,60794],[78645,84635],[61903,73680],[62290,76672],[74271,78443],[92713,95567],[62711,84600],[55402,84287],[93288,98605],[5051,83513],[54275,81624],[74094,83860],[8494,75301],[72468,96345],[76439,90428],[40331,94046],[81210,96926],[25845,84839],[38742,67343],[8766,41554],[12353,83618],[29343,96305],[21301,65931],[70257,84723],[75493,79856],[77755,78096],[83644,97720],[1501,31473],[1417,25333],[72895,82174],[44314,83435],[92007,97368],[58613,92626],[55582,93379],[2069,95391],[1342,32271],[74920,78529],[70079,90427],[54675,57950],[36965,84605],[630,40309],[39016,59527],[86958,97626],[14101,98330],[57712,99892],[7176,73221],[39623,63686],[3459,15550],[16470,61779],[57045,71689],[14398,81169],[37722,52539],[71497,72664],[70757,81530],[33991,70659],[861,28530],[63857,74923],[87398,96316],[39069,82182],[17310,56933],[48773,60881],[77063,89928],[60189,63212],[5935,33188],[188,45401],[16490,61123],[88824,96164],[55279,77627],[96622,96935],[64883,87210],[90717,96800],[63302,65923],[64417,97670],[29888,68194],[99635,99892],[86164,98900],[10097,16610],[98028,98289],[21717,92833],[73314,83969],[78526,97765],[55191,70168],[97708,99189],[38583,44117],[5862,47665],[6165,54823],[91321,93002],[80578,86234],[36992,66672],[86600,92533],[56671,72797],[90353,93886],[76928,78751],[27732,29844],[33917,85667],[92976,93204],[64054,64568],[37452,54786],[17693,28198],[49548,81563],[17099,93544],[34827,36847],[35496,36511],[69804,70936],[20982,88027],[62153,85957],[5189,64491],[22020,28254],[77224,93039],[58318,70975],[11662,43203],[18180,87013],[12936,50258],[30634,95254],[59216,66894],[11598,57071],[43923,76670],[95489,99700],[44248,92422],[36227,92263],[20690,80388],[23048,98497],[78257,83778],[7105,44735],[51628,89377],[87500,93736],[58895,93871],[84769,94510],[39393,76403],[79266,87811],[38376,80048],[59425,61305],[11461,94344],[30346,33527],[29796,74804],[20907,87393],[88443,91805],[87860,96975],[3901,80001],[40391,58751],[59739,74797],[35775,43176],[20495,73644],[36408,73046],[87495,89071],[95447,96910],[47152,79822],[68603,69241],[92761,93892],[24441,74522],[12348,31327],[94300,96948],[82665,95868],[96202,96539],[22674,52808],[12105,22263],[73744,78138],[8188,52526],[20367,61721],[46478,76149],[936,97413],[56425,60315],[17660,88922],[7626,18818],[40101,72628],[70727,99839],[72475,75470],[21463,76038],[1126,83753],[1524,73737],[73231,73309],[34954,78719],[40155,82008],[77651,90082],[48569,71087],[16942,31304],[24272,61544],[5902,75809],[13052,45679],[71607,78044],[60237,85640],[1727,99822],[90162,98419],[70643,93473],[20461,23699],[44242,52070],[11073,92203],[69786,73173],[53194,96886],[30932,34607],[839,89332],[61284,98616],[22417,37955],[41920,49035],[48748,64933],[37354,85681],[59755,72068],[63983,79346],[5075,72993],[85844,98054],[50864,77397],[45652,53944],[10580,21232],[47726,61194],[40370,83909],[5617,29730],[91492,99729],[27391,95190],[10854,78334],[45835,47358],[67767,90821],[91131,96484],[15812,54911],[79190,83963],[26708,27496],[35679,37750],[57809,86077],[18764,86661],[30562,40756],[82576,91912],[90289,91089],[81876,92959],[27278,62331],[28976,46014],[75869,78257],[14632,86999],[39133,81173],[91069,92253],[30620,33514],[13588,85008],[1220,29030],[46913,75795],[44850,74308],[95570,99396],[69197,98419],[31948,77991],[80619,85748],[97896,98425],[25222,62555],[30503,69046],[8816,45817],[2902,4727],[10003,78382],[15309,47641],[24379,45062],[51086,80342],[26084,66294],[31372,79463],[29408,63578],[6507,95630],[74732,80488],[83933,96752],[17091,88497],[83118,89544],[22706,23808],[39893,78563],[63621,91512],[68372,81034],[70403,88603],[17691,41030],[36765,47035],[81919,83000],[95452,99498],[7163,78363],[66182,92107],[91932,92073],[39202,45999],[35069,77602],[37158,50420],[76648,84657],[82551,87235],[58726,95871],[2043,63172],[64307,76900],[38542,63896],[43278,82063],[29177,45714],[11270,35115],[61218,93985],[48240,61660],[46723,49387],[44307,73918],[94376,98335],[96090,98258],[82929,84449],[74153,90924],[38701,45539],[36217,95083],[48583,91297],[11570,43445],[3118,88034],[15797,56597],[31425,60678],[84926,90030],[34529,57302],[81140,88443],[98486,99281],[53867,61578],[51994,64129],[32691,48743],[80977,87320],[77865,96333],[1563,39280],[64908,96710],[64354,92640],[66011,70859],[7529,13656],[43210,68782],[99243,99496],[38018,54612],[77913,90497],[42039,75871],[24255,57627],[48043,92390],[95830,98069],[43143,50241],[43347,52954],[98995,99282],[23909,96997],[55479,88185],[5542,89731],[68990,75005],[2754,49664],[42689,45338],[12552,42772],[89434,96880],[14235,51549],[41554,61095],[72751,75814],[57927,75041],[43580,48315],[62724,67850],[81487,97466],[8119,94350],[51644,92529],[8140,69092],[28460,58541],[14092,64127],[23677,54053],[98049,98340],[85378,97368],[49541,85513],[34726,90514],[89734,93171],[69053,77688],[39701,61503],[22953,43738],[12938,87115],[44749,63939],[26919,78047],[41613,54510],[32788,46529],[4767,75567],[22430,88217],[98814,99229],[70489,85131],[11285,22568],[9661,29381],[80301,98085],[3547,75862],[3211,31433],[948,28002],[5343,93191],[45182,61979],[14736,36248],[34913,45878],[1252,5291],[2321,22808],[35398,99408],[27370,54745],[52260,87356],[58016,83124],[74918,84167],[64423,77309],[85107,90020],[92663,93185],[51626,74114],[72421,98407],[66167,68559],[28595,93277],[56854,67985],[82604,84386],[27185,81420],[8600,63440],[28201,81078],[51933,96025],[11588,79748],[44467,68144],[19023,19839],[77806,93313],[81841,94423],[69141,80947],[84930,94164],[59028,93890],[58508,95418],[73505,77119],[28105,66318],[29954,47461],[79342,83666],[55831,96447],[90131,94455],[48102,74899],[13534,39943],[47480,92363],[60082,77469],[27128,72089],[89824,98370],[77861,88320],[65551,84928],[41403,54476],[65799,93018],[59372,96515],[48758,73851],[69001,86936],[20124,99002],[64707,66016],[3403,80870],[83031,85989],[75114,87001],[45896,46823],[12333,98409],[98927,99049],[26517,78502],[66048,67191],[16667,82116],[39500,73789],[31982,37413],[53555,86342],[24810,64635],[4459,59563],[66686,69580],[64241,73241],[2279,92808],[80217,95348],[935,49518],[5465,62920],[64484,93016],[32692,64014],[99995,99999],[41657,62856],[86617,89242],[89700,90401],[74607,84571],[8011,42831],[82920,83406],[9001,13122],[35356,46015],[47385,57623],[87224,87375],[92370,99905],[15257,64714],[96321,99568],[7714,25270],[88004,90766],[47218,69357],[79024,86762],[44332,79944],[42951,80693],[32169,96660],[12101,62268],[964,33761],[48370,54458],[45773,66422],[78799,99851],[91691,98634],[60469,96908],[94247,96832],[16962,82848],[48599,73687],[33053,35499],[5140,33028],[8092,22892],[65313,98598],[47020,90689],[74495,99073],[47042,66124],[81526,88322],[91103,95806],[48740,64436],[66677,68037],[47648,70869],[39898,77631],[59058,87971],[45134,48662],[26127,56518],[44844,56945],[11147,74443],[33314,55783],[1395,97900],[84467,89871],[88025,89982],[8490,12018],[60479,88477],[82683,82790],[81870,82412],[97835,98755],[77986,81052],[33932,75125],[2102,92805],[60579,67908],[35743,48873],[23582,80432],[47065,98104],[2138,45190],[24085,68345],[92203,98083],[50439,86826],[51731,59366],[343,4211],[91241,93447],[98615,98838],[27147,64344],[79889,96675],[51457,88017],[49352,96624],[87789,99703],[37494,90102],[64556,67757],[99912,99991],[93149,99784],[59420,82677],[40413,79375],[33172,45582],[25394,86709],[59400,69621],[53835,56539],[92662,93490],[79171,90426],[10243,48033],[22958,87154],[99675,99914],[65271,81732],[79743,79921],[84384,91652],[29946,73163],[91742,98581],[58593,97831],[74898,96444],[39883,85381],[97072,98236],[50718,81726],[5183,25465],[99566,99872],[48065,98555],[97492,98167],[84719,98122],[25960,33769],[18563,42613],[45729,54040],[83130,90750],[82183,95038],[39033,80036],[38397,65910],[68494,80337],[79439,85917],[29012,54752],[62045,86310],[80548,94696],[76637,79817],[23439,23827],[5144,87421],[54711,94965],[67141,84709],[56600,81903],[37953,45031],[89351,90629],[61899,96267],[40950,85207],[62968,96045],[74574,75917],[6368,53673],[12958,43107],[64059,78790],[236,34894],[19377,33235],[94030,99653],[98659,99912],[83812,95720],[56264,60988],[93545,97368],[31571,64430],[43237,73256],[1528,63930],[60468,63007],[41521,62329],[10150,72737],[81780,89663],[73057,92278],[48799,64025],[50,36360],[92701,96608],[10778,32419],[76209,87926],[48822,83337],[66100,93896],[55268,86529],[15621,25522],[87468,95417],[80464,83408],[86202,89823],[89292,90796],[28046,71520],[32080,76884],[65043,93735],[50980,83168],[73710,77529],[1553,6581],[75127,86676],[99428,99568],[15313,70987],[42926,52749],[71420,98542],[12528,85139],[20703,77055],[21994,95619],[25585,26202],[14278,53135],[13621,81774],[50785,56269],[79067,82069],[67365,85317],[95702,96545],[94916,95853],[10604,73960],[85658,87704],[23647,84584],[13072,36950],[45513,52906],[44083,69309],[70040,73235],[92614,97867],[66504,79929],[27016,51464],[29792,89511],[69093,84095],[26590,87884],[41884,89641],[87814,88272],[15832,89421],[52878,53071],[28273,56276],[70629,89437],[67722,93221],[63530,83427],[90989,94508],[21604,74943],[78544,93919],[58733,60715],[94957,97212],[54792,61116],[33113,59333],[58380,62939],[81299,85123],[75098,81592],[35615,70184],[35797,42352],[27882,44959],[68980,98634],[22294,23820],[21065,46788],[48578,82675],[62335,91688],[67981,80445],[68790,74203],[96832,98804],[79242,94835],[80670,94163],[50736,80712],[23007,30420],[71980,74418],[1091,99132],[27772,83820],[56152,86694],[79299,95458],[75496,99881],[4160,74471],[23068,65647],[80549,81333],[30513,51860],[24786,75331],[58473,72762],[36392,75634],[49321,51313],[24762,25130],[41753,71463],[8028,71913],[93157,93499],[91126,94472],[79122,92146],[38713,69030],[47743,68270],[56468,86804],[50475,53315],[36346,97226],[69055,91347],[13095,45370],[43671,58532],[17260,58784],[58215,75937],[47532,66146],[72133,74177],[615,13270],[38442,75828],[68367,79036],[93653,95125],[22617,87952],[57266,76650],[38545,71785],[34732,67175],[82779,90198],[58620,88371],[82204,90597],[56768,89213],[81379,98453],[39319,45703],[92015,92386],[81478,96072],[43804,78229],[62639,93021],[33282,99215],[87667,96971],[87714,88837],[99934,99966],[19682,35576],[73020,97927],[68471,80432],[77753,94587],[11389,50568],[79705,94622],[70541,99897],[27393,97071],[29430,48204],[37166,40683],[12510,71334],[74784,94907],[94542,96519],[90526,98171],[46348,65789],[80442,97238],[71054,75645],[42903,43711],[81524,98423],[38750,93505],[85816,93722],[89235,90325],[23508,95230],[44090,49457],[2651,53944],[92137,99971],[51975,62534],[63074,77787],[22840,80601],[25190,58957],[58642,70242],[43121,50925],[87218,89010],[46248,54948],[71091,72101],[86762,99733],[19841,52466],[14490,24601],[28710,72021],[36919,39481],[42611,90213],[92644,95231],[93570,93989],[87010,91388],[11138,73435],[17852,64132],[83621,96784],[86385,96582],[54234,86047],[86679,89640],[87315,90731],[52221,80834],[73166,80112],[76834,87728],[33682,50501],[88070,92994],[80051,85179],[60861,91819],[99731,99836],[18062,39677],[87742,99641],[98242,98832],[29874,77358],[20158,43869],[91016,98613],[22642,47301],[30299,69841],[72465,95093],[94722,96125],[79848,91097],[79109,85350],[24764,94610],[26897,95208],[76146,94945],[89077,96248],[42466,76450],[95857,96491],[29150,43585],[71793,82274],[91488,92844],[21767,92668],[39068,98532],[36845,79269],[42504,64360],[3991,77348],[28903,64536],[51524,67513],[29317,70027],[87231,90999],[36659,42000],[38679,85435],[80347,88154],[70922,86383],[67393,87922],[71242,91180],[57009,93280],[22652,60132],[93387,93898],[9000,45805],[91922,95625],[70557,88846],[50435,57175],[29920,63921],[54605,87098],[74812,86524],[74806,86918],[27275,68618],[23568,38056],[70651,96770],[27857,63282],[50850,68361],[584,90174],[52201,71868],[75584,79856],[71170,87968],[63719,95374],[50322,67070],[673,7501],[48962,52469],[66184,93489],[71082,99613],[80658,96023],[89797,99406],[31241,79739],[74807,75418],[63337,96675],[34013,90962],[65078,97859],[17158,49479],[95098,97709],[69385,74246],[5516,42628],[68498,79749],[57549,83318],[88636,99172],[57796,68681],[12261,20884],[49550,49789],[42922,52911],[31943,35746],[9408,70080],[25199,98018],[36246,51932],[83235,85795],[5251,53269],[62742,77521],[96815,97399],[57783,94227],[57373,59552],[89850,97763],[66006,76625],[29291,68178],[67166,94119],[40580,55481],[91027,97303],[41585,44164],[84247,96248],[93904,99236],[91493,94630],[87030,91395],[62239,71529],[55901,72524],[8929,69147],[88823,96389],[41952,56560],[78275,83315],[3647,21085],[67078,91475],[68634,70537],[91132,97152],[73132,92931],[26745,42179],[18678,65301],[4489,63219],[57202,58869],[61111,69285],[79726,92011],[29298,64659],[92389,92645],[11878,94188],[65971,66062],[93021,95201],[12654,23393],[13112,83351],[78312,98628],[9723,68480],[83978,85331],[45176,73201],[26886,49340],[78716,79163],[53963,70127],[50701,80041],[67757,79738],[8091,37419],[25941,59334],[95608,96845],[84855,92166],[89459,96415],[32931,61605],[57129,86805],[77746,86162],[77429,79543],[52544,90262],[3046,51003],[9097,64628],[96211,96350],[67914,84515],[30574,48798],[29233,57246],[4815,24741],[19883,50882],[70140,92580],[92829,97020],[85468,97365],[98963,99344],[36489,77219],[27087,61033],[82987,93215],[56591,59651],[72274,89886],[99677,99715],[9831,57343],[63427,84866],[62709,67889],[39163,80690],[51935,86325],[42976,44222],[72690,92580],[36716,90334],[10867,54832],[35278,59054],[64022,76336],[58622,65493],[41230,81937],[22224,88897],[28216,93941],[68121,85934],[9385,88288],[60740,72905],[60762,84594],[34854,37452],[53967,73577],[24478,36109],[45289,75198],[56491,88151],[5838,94719],[15409,18847],[52913,58968],[43872,84828],[56493,94718],[33153,45378],[59099,96266],[85008,97373],[47875,90557],[15715,48872],[12391,37229],[62248,92824],[53727,84752],[22647,41229],[35574,84173],[42006,42867],[69978,87532],[1040,53465],[82176,87166],[10410,96506],[30788,73836],[38204,87057],[49647,66374],[41070,92894],[24373,59423],[31637,98086],[68152,71002],[5738,30872],[39919,83009],[66401,95150],[65749,89496],[31700,81551],[77618,94992],[98246,99438],[87781,95109],[79043,81096],[62055,78567],[79331,82194],[31574,85361],[76311,81092],[22176,35331],[11239,59137],[67666,96950],[80438,86001],[80005,86100],[24948,49456],[98722,99267],[61761,69667],[26499,30685],[2799,91355],[76843,86832],[17581,72254],[15430,47921],[30733,49563],[56287,85136],[14202,43621],[12403,13547],[74919,75957],[76890,80266],[96016,98388],[52435,70594],[99788,99957],[42204,82086],[7481,55877],[54382,61921],[67797,72085],[67054,91858],[60339,99543],[22483,79955],[61847,90423],[75457,98714],[59375,69784],[93314,95950],[4939,32837],[47853,95388],[91981,98828],[11839,30000],[83083,98008],[82545,85292],[47046,58024],[51150,60634],[57882,84681],[65665,66640],[77638,83976],[59328,78545],[62258,84957],[67140,95911],[6634,67074],[8709,95270],[36807,97141],[46491,54785],[94606,98843],[97136,99900],[99870,99974],[15664,42073],[53850,64156],[41933,75545],[48828,70642],[17137,42466],[30895,60260],[47662,94659],[73295,85178],[27202,89418],[27136,82355],[61913,79220],[84044,93835],[6532,90776],[43502,77484],[35060,70152],[14086,41180],[56881,76896],[7174,52761],[19493,80278],[33585,92266],[73013,81693],[34657,49917],[43876,45734],[99159,99929],[17640,65050],[39968,42550],[24876,74483],[73163,75915],[55814,98620],[45868,88705],[60033,65128],[45639,66467],[88367,99451],[14610,49054],[96545,98147],[59668,82838],[17615,99489],[96081,97436],[62871,63671],[48953,77806],[29935,46703],[70620,74565],[8378,90822],[99763,99958],[55993,87725],[58592,62439],[33794,51857],[41025,95041],[24426,57114],[44302,67655],[71845,74379],[52791,59428],[40402,53583],[20128,29844],[79824,96410],[13259,74363],[14851,71078],[28476,98617],[51866,55554],[24471,95458],[80057,88916],[38119,93561],[68361,72017],[55769,99685],[50614,88916],[27765,55912],[46972,78469],[61721,86741],[20522,70612],[90156,90548],[1221,99926],[71101,72513],[26588,54090],[7516,91724],[79807,95749],[13050,36412],[10519,76321],[18073,33757],[81260,85109],[97567,99159],[51373,95466],[46158,88968],[58172,72753],[25159,76869],[15879,70771],[11267,75013],[60600,65701],[43395,48625],[26626,30556],[2373,98603],[11002,82119],[62322,96825],[52370,54865],[14712,56195],[89300,91176],[8836,67795],[54957,59315],[3759,42497],[24109,79378],[35232,50647],[99282,99762],[74451,80844],[68583,85146],[47100,58637],[71649,91983],[88600,94677],[70305,94827],[13527,83081],[46351,90173],[49588,98593],[15964,55482],[54743,68508],[2191,28382],[24333,60890],[92538,95680],[40000,56621],[46249,89259],[94392,94458],[70895,72330],[65718,74310],[45247,80457],[90643,95765],[5922,30144],[58763,98403],[60629,77938],[22056,66743],[27005,27422],[899,1522],[7331,89103],[52374,90982],[11307,16336],[90750,96385],[46608,80293],[35079,76661],[50305,69647],[1191,99719],[46473,99486],[45052,85249],[14203,29375],[97168,98468],[21736,46053],[22135,98354],[26019,57385],[3334,53427],[33994,77547],[59716,95334],[94448,99067],[32044,69554],[67116,68577],[34745,50936],[73067,80640],[96248,98091],[92494,97880],[45741,77382],[26815,86376],[14233,94630],[18465,55006],[10988,58997],[86467,86623],[14855,21984],[13941,35583],[81095,86730],[30154,70926],[85840,87817],[64781,83067],[50739,76742],[41759,56044],[56709,94624],[85898,93804],[48647,82887],[36122,41178],[34479,35019],[59066,84516],[95759,96366],[83254,88095],[13474,51446],[14595,48859],[82926,87908],[43223,70513],[86103,90836],[72038,88964],[93979,96243],[37641,84991],[16342,80689],[25646,80331],[83279,97333],[72700,92162],[1514,28682],[46627,63017],[92505,98545],[69161,99412],[45838,81226],[17030,21490],[80934,92408],[30544,57257],[70224,93479],[88280,92262],[46668,81804],[74640,79490],[15227,34378],[5325,67131],[20594,77595],[10982,20171],[85975,91859],[71373,91812],[56896,97951],[8869,14334],[15373,18678],[12010,99541],[49529,60428],[91204,99769],[68944,88819],[31828,33657],[62705,68143],[13943,86980],[46467,65360],[72919,99806],[8717,75937],[70599,83082],[28951,74851],[79617,92557],[25423,76741],[92885,99828],[34977,80928],[51152,64388],[14484,58811],[4535,83212],[42654,81313],[70214,77286],[16311,45896],[91426,92151],[86416,92507],[88253,90222],[59726,83215],[56081,66055],[46465,61525],[72554,88157],[24458,36568],[59267,84377],[66351,88669],[4493,39040],[77980,90517],[56686,64171],[71062,82167],[14395,80948],[36800,64708],[91341,99615],[52644,53647],[48517,79447],[81688,82740],[73543,87680],[63168,65946],[44145,85221],[39910,66754],[48838,75912],[29592,33057],[3100,53317],[10632,22776],[132,59055],[60564,70977],[37285,97153],[24317,26726],[81356,97686],[49681,52024],[69151,72469],[14533,79855],[54509,94229],[94952,99724],[74019,78733],[60351,84463],[94972,97159],[59302,86790],[35793,69619],[5932,44877],[37569,47368],[7549,90215],[62034,67351],[45070,57202],[71515,99122],[27262,43663],[92511,99270],[2666,27084],[46124,72770],[74632,91218],[32343,52209],[30937,76506],[93875,97123],[71976,93022],[78125,91828],[62526,89267],[18927,77702],[57460,58423],[17168,98387],[6561,97097],[44998,65063],[22528,86361],[23019,34209],[29128,47362],[51600,76173],[11938,30293],[78390,87618],[61212,79991],[73513,95310],[98971,99926],[4340,46684],[66523,73646],[32804,35441],[75950,78452],[1908,51893],[10450,50970],[87362,87429],[19546,45525],[34232,49168],[58443,93133],[59790,85710],[94381,95936],[55313,79304],[63620,87254],[52153,99119],[30398,31107],[12693,44552],[53697,75742],[74733,82903],[81638,89874],[38086,54871],[86761,93650],[19626,42640],[65434,89337],[16970,85041],[20967,31547],[40790,92377],[8049,68719],[23896,39516],[12778,15767],[12571,86093],[93242,97290],[11857,26646],[92658,93537],[85255,97994],[8244,25840],[57965,66804],[96572,97655],[1328,44942],[31229,88005],[93922,99560],[28228,33262],[28001,38541],[77328,96823],[61120,88260],[60110,97873],[3670,71943],[6008,23420],[52139,96323],[60878,67459],[61580,90962],[37650,75334],[45021,93150],[45478,86873],[60337,67138],[95944,99184],[77356,94885],[44258,88993],[39924,59973],[25562,84639],[64415,70517],[6448,58857],[54392,58411],[18495,34271],[60167,85972],[90919,91869],[3615,55254],[87576,95103],[6331,7271],[10907,78970],[77614,77828],[96974,99591],[35608,47912],[25807,45309],[38279,39247],[86102,93102],[35217,85214],[26731,65926],[8680,52875],[70780,93542],[59680,88604],[20613,93218],[67711,73155],[41247,48139],[92769,95120],[40368,76600],[72560,94227],[53498,60650],[94895,98440],[95709,97672],[2749,67088],[43927,52157],[20767,99999],[72882,73087],[65261,96075],[85057,89490],[64199,77885],[24250,72105],[13668,23177],[7683,88513],[38970,73347],[45827,50845],[99878,99979],[12249,29946],[33664,55919],[27812,62034],[15458,38956],[89525,91692],[33828,87120],[80951,86853],[19092,97699],[8765,71668],[14882,21440],[86133,94195],[65217,91799],[79812,84842],[79722,95526],[6999,30470],[922,26757],[17846,31917],[72216,86877],[85438,92080],[18854,44332],[27521,88809],[16172,68559],[12762,24919],[289,32821],[4870,11656],[88318,98472],[22999,95228],[32001,34204],[55623,75682],[96035,97778],[93313,98007],[96913,98515],[48922,93671],[96552,99064],[16891,69537],[28284,33489],[87836,99464],[71413,72693],[76861,95970],[3542,71404],[17028,78960],[39644,94939],[32039,41198],[25822,43914],[85347,95805],[65810,71000],[44247,55671],[52887,96151],[83942,99556],[91948,94117],[51165,78317],[16820,23875],[18210,89134],[87415,92019],[73448,78863],[97384,97685],[1087,60497],[64677,67384],[89517,95939],[98811,99297],[76327,84874],[99182,99277],[40739,65205],[63294,92077],[18227,89624],[44676,52673],[39211,78822],[38450,58861],[57923,66066],[1079,34769],[84163,94863],[45659,68272],[4274,43149],[10636,64237],[38991,66741],[25480,71568],[96833,99111],[19178,91939],[21742,97580],[29084,52610],[87936,89066],[63304,76155],[63993,74340],[19200,35599],[65134,70615],[14703,28269],[27919,32615],[90830,99341],[25245,61636],[80734,90641],[32635,35175],[2527,82093],[15756,60509],[82819,98194],[32505,76700],[28337,99223],[68656,88900],[84624,94798],[9465,90381],[15162,35614],[62955,64093],[88219,95804],[79217,97692],[57974,60984],[78513,91200],[44279,70672],[72627,90525],[1541,39472],[59015,80999],[67184,99988],[95418,95657],[21729,34931],[46064,60986],[841,18509],[77574,93899],[58066,84115],[34405,96252],[89135,90813],[36704,75097],[41159,74449],[77400,81681],[82761,85628],[60255,76041],[25169,91673],[22363,37078],[590,46113],[36602,78831],[14279,80329],[22055,63269],[37405,90744],[74130,74815],[47807,69000],[74035,93477],[20924,48653],[93888,94819],[56369,72539],[47180,55154],[32236,43272],[70227,74642],[76390,90490],[62978,65822],[40546,44711],[37705,98201],[74726,84004],[32096,32575],[59549,72333],[90984,92675],[6598,75998],[51260,72394],[43972,85557],[33675,91371],[87483,96406],[33366,91352],[70090,84906],[218,11121],[31365,88023],[78137,99940],[72792,79429],[14006,75235],[20476,34293],[76101,78259],[46578,83990],[23141,98626],[81810,85367],[26074,54200],[19514,76780],[19119,71996],[68876,97876],[9345,10300],[40944,93388],[43722,55494],[17295,40180],[51962,60432],[94827,96531],[26401,84913],[8116,15267],[57547,72333],[99806,99891],[12565,56686],[23219,82466],[26328,30284],[64366,91719],[25700,66166],[77988,95220],[57966,88370],[63782,65868],[46060,69248],[7612,42589],[63109,73910],[76160,91246],[57872,71862],[55945,91635],[22133,77512],[72642,90229],[860,17976],[12783,45923],[64663,81246],[61922,79490],[29263,89033],[85972,93242],[9564,26487],[21281,55388],[58378,70990],[58438,79399],[97560,99099],[12502,99143],[18508,36967],[72241,86718],[7530,77925],[74246,89381],[42669,74374],[37084,51858],[1453,53697],[29472,77994],[76939,90191],[68770,68771],[7030,9543],[95530,99130],[93022,96817],[71697,77827],[96812,98028],[78782,91549],[12854,60298],[32630,77996],[72773,91470],[98462,99032],[50910,77075],[97946,99700],[41969,63017],[91721,97477],[550,56818],[44688,57758],[37312,50049],[93737,97897],[18982,24619],[16554,56937],[95630,98805],[4049,40206],[42432,90574],[77796,88746],[96814,99537],[22935,39188],[52058,71721],[87229,98120],[82402,97692],[54460,72451],[54787,98730],[35256,62475],[59326,83610],[79630,82735],[25679,40161],[37381,98734],[29926,93780],[46380,57444],[29511,89164],[54393,85238],[89306,97131],[56368,88265],[26172,65900],[4093,44393],[1897,84507],[95100,99220],[87103,91550],[45490,74954],[2849,42383],[91053,95909],[61499,70442],[94335,98473],[27158,92884],[83965,86906],[34962,64761],[40780,74884],[60336,71660],[37648,61002],[60847,95619],[79091,80891],[56170,83759],[40229,58960],[21089,94177],[40314,55033],[52825,91865],[87340,90324],[55128,91791],[58329,64824],[72930,86493],[30090,70159],[5828,39018],[30230,83311],[40967,67114],[40068,58221],[98270,99162],[67830,88271],[53566,58224],[54272,67892],[21712,74376],[74521,77277],[56521,65076],[90108,97536],[38046,88401],[19464,59479],[81815,98054],[26474,79948],[77812,96209],[71034,91616],[30440,34600],[93089,97424],[86937,88611],[72746,79350],[88830,91632],[61614,81489],[48445,95386],[39775,68530],[7948,11477],[49225,83397],[83883,96652],[75349,84276],[28782,38773],[31830,77766],[88352,94693],[1711,55468],[29254,77231],[51951,84072],[30887,78365],[53988,81673],[13916,60218],[9527,19424],[80119,87874],[81307,94657],[93259,95027],[6572,77611],[80508,84950],[1988,82282],[30429,53521],[20498,80104],[60183,91323],[45819,56837],[55214,63574],[77057,88674],[88885,88936],[71431,77503],[49424,56213],[79489,84172],[83377,83632],[66736,86060],[30977,64349],[99395,99885],[4372,67970],[98228,98737],[64985,73758],[88058,88969],[96862,99337],[593,53561],[79512,90587],[33830,75631],[1635,85724],[66271,92419],[6831,55118],[14856,38388],[52409,72622],[60937,85717],[52083,66104],[95988,97336],[73096,92530],[74723,86457],[13066,71056],[78893,87969],[4024,44195],[33888,41309],[93335,97582],[93042,98943],[2762,26218],[1879,72584],[4331,23992],[15199,60749],[53808,73139],[4234,78722],[94017,99024],[51835,66358],[70825,99164],[98366,99263],[93055,99678],[30891,99509],[25683,36129],[67445,81346],[25975,92954],[65913,92368],[84704,94130],[79717,82999],[8832,98673],[98043,99115],[469,92374],[48387,85935],[15947,23855],[663,48841],[10591,19325],[94410,98827],[53488,92472],[71859,97187],[4892,24171],[10506,94557],[35084,87797],[47825,47929],[97464,99730],[4930,32297],[99297,99788],[6064,38357],[54653,55892],[86634,90710],[32573,51708],[23063,71133],[27528,44206],[91055,91498],[9387,71389],[22354,25800],[32114,45278],[51319,66874],[5283,20340],[67587,97239],[45577,74631],[41643,83431],[59065,99989],[14869,52146],[56314,60475],[36864,96786],[27085,56573],[74719,77526],[72307,92281],[95699,98853],[31258,39166],[62702,84587],[15845,79530],[13862,49871],[25556,45967],[69367,84628],[25923,98793],[41863,58254],[19272,88543],[78564,79611],[26650,62149],[1028,87725],[87986,99725],[17172,59834],[23099,80130],[38890,57562],[94170,94172],[59431,99754],[2760,59201],[35312,72333],[58946,84441],[35742,72529],[21433,32833],[32410,34892],[85176,90627],[60634,77003],[80296,99020],[94411,99365],[75504,78420],[87639,93412],[52249,58457],[31846,32156],[91643,91973],[157,31045],[15967,66957],[292,55149],[23143,57806],[91881,93296],[67506,99443],[43060,90143],[24,23266],[18680,48253],[61474,66859],[61829,99057],[15914,18510],[88483,96685],[38072,98281],[14030,62383],[1451,29509],[10919,36165],[93512,99015],[84149,90733],[41074,72679],[26629,71775],[70456,92863],[77627,91725],[7370,88920],[22068,87692],[8930,63957],[46460,60486],[7124,23422],[93316,97199],[55213,84418],[19570,71892],[40043,57800],[78416,98156],[82995,98932],[92324,99565],[30248,61890],[55365,88702],[43276,68450],[32477,58623],[12648,88397],[49587,77124],[72240,87382],[78679,89070],[99429,99590],[80765,82764],[29830,85432],[38674,39599],[19452,49688],[7499,65363],[43373,61769],[26955,71036],[17565,19397],[22174,36599],[43971,63856],[81935,93371],[78657,88039],[96297,97407],[52974,99619],[58920,92302],[15178,92219],[79357,84266],[71695,87813],[67896,75254],[4848,63848],[44871,79786],[32240,61986],[73037,83943],[23434,35151],[6936,50725],[91358,92872],[20903,43732],[99029,99440],[28484,96655],[29248,52091],[65376,77195],[76449,87814],[11671,90544],[69226,73263],[94888,95444],[35181,83589],[66674,81588],[34086,54790],[84699,98286],[65655,71751],[21765,83133],[45637,74425],[68911,84806],[89253,90368],[57318,57497],[69368,72861],[37966,79907],[28612,89906],[83404,99649],[10119,79735],[59428,64163],[21028,35271],[84089,90433],[44426,91008],[70993,79627],[75068,80401],[35889,39146],[56603,81730],[66599,88524],[15679,62196],[21973,67818],[41868,73078],[41110,81440],[5498,65893],[72775,81582],[56669,70082],[4333,40103],[81685,95728],[32450,46609],[83817,85236],[45593,62840],[31967,60538],[62332,67853],[28329,51028],[94573,96796],[72759,96028],[37097,64084],[75992,85685],[86579,97350],[33503,46903],[12558,37835],[26728,90852],[32610,81224],[7083,28167],[93847,97258],[94567,98940],[70764,88614],[54818,80479],[12370,42053],[45041,61378],[90272,98136],[85743,87629],[11535,86340],[83903,87930],[32188,94765],[28401,73916],[49601,64025],[5010,84491],[70687,87485],[16388,83316],[32559,73223],[56986,98919],[49895,72118],[20656,47055],[42509,45526],[92541,99494],[45858,79758],[3861,38624],[71566,92662],[13061,28847],[64472,95365],[50310,99186],[18331,88572],[62811,66682],[71504,90959],[95047,99506],[93928,95178],[73557,89572],[21716,90945],[15961,59718],[30035,31502],[96847,96916],[45011,68317],[75358,75727],[80055,80920],[83660,95543],[28772,90088],[73437,78155],[6551,15274],[77947,92248],[58147,87917],[10599,18677],[16098,34458],[58047,95425],[49723,67983],[19510,76095],[42770,93619],[22120,53284],[87384,87543],[10249,87753],[89411,94784],[26376,67092],[60000,92610],[96332,96368],[43510,80029],[54559,73956],[58788,85317],[8521,62454],[30640,54127],[15494,32621],[76140,91129],[73381,85100],[54132,64023],[89682,90012],[99733,99958],[50685,83141],[96575,98416],[98202,98931],[35848,63426],[56002,96511],[38179,41383],[12880,96858],[19507,82305],[45232,86599],[14120,82611],[77152,78579],[19958,86814],[95874,97934],[76494,86709],[67905,88495],[52837,74873],[30882,40267],[82654,90023],[57476,97860],[6823,49062],[19555,93025],[27690,85837],[86795,98484],[20601,98761],[776,59138],[82210,87004],[53618,91232],[1257,33100],[80457,88593],[9996,81317],[96435,98378],[27288,94022],[19204,31400],[82348,91476],[49101,79856],[59123,85131],[83653,92509],[84520,89154],[75434,96188],[56690,59674],[2750,73366],[86982,99933],[33749,63050],[24785,27948],[2947,86879],[86737,95666],[95011,99029],[63778,94174],[5525,28998],[23341,42392],[70884,96598],[6987,88644],[51490,90975],[87260,92037],[4185,37893],[70792,71666],[11499,75891],[46686,57517],[83473,90164],[66993,91788],[59356,92650],[4122,97047],[1244,18921],[5261,72591],[12025,70800],[78227,83194],[85456,97665],[11297,18556],[98224,98533],[18145,93063],[37098,64090],[39401,45279],[43166,61318],[16436,54758],[91938,95957],[17446,43859],[59162,70461],[8456,27924],[24381,95193],[29560,69448],[93791,96621],[32162,66301],[42523,77241],[3138,32543],[73818,93968],[63504,87274],[17173,43152],[93191,93459],[70559,86658],[3915,15711],[2001,77539],[33592,62971],[80273,97896],[52456,80831],[71549,79952],[76885,79384],[55049,56022],[40704,93154],[95431,99721],[48420,83342],[75323,80816],[27901,95832],[69939,98296],[13310,32223],[99992,99995],[96472,98467],[18703,80274],[39972,70560],[98042,99902],[49754,97251],[32028,99602],[18928,33960],[33681,34905],[20166,66943],[93577,94830],[34787,51821],[15015,26240],[87795,94286],[64442,94016],[85569,85636],[67604,76073],[18533,19359],[32488,84017],[44283,55849],[42179,68707],[93186,93514],[71856,80230],[68105,69227],[75695,98704],[24430,81248],[53044,68153],[36771,92014],[14427,31147],[11264,15934],[46766,82876],[77208,88954],[44360,56229],[42473,99944],[46161,59131],[46540,88116],[58065,95894],[46177,67640],[93718,98575],[32289,85899],[5906,41260],[45410,48646],[76170,80979],[38592,86015],[89491,94388],[43152,64089],[21626,29905],[12148,30161],[45017,60961],[3639,66965],[6113,86580],[78730,84186],[13550,70610],[19239,87309],[4830,72848],[30040,31484],[29661,61761],[74827,79603],[24222,24637],[49103,68004],[52597,88931],[41586,81417],[99929,99953],[45888,83119],[73823,91149],[81794,93701],[89298,99023],[11514,29725],[40605,70069],[48185,93478],[87246,99648],[59845,69324],[11532,39647],[94396,95197],[765,37103],[29668,93806],[86311,99555],[54635,77443],[58089,83347],[71901,91154],[40974,77241],[70404,82039],[43668,46915],[54401,57036],[56732,60057],[97784,99929],[41265,63209],[2178,29405],[29979,49738],[90179,91823],[24437,25262],[27086,43170],[24603,31887],[6697,65410],[29619,97887],[56810,71320],[15375,58046],[7157,59443],[281,42306],[13297,59476],[23118,80645],[64560,66905],[88444,88464],[69670,95060],[95790,98465],[21367,84089],[28339,45640],[61005,83901],[76011,79038],[55133,99780],[78349,94663],[43568,93412],[4186,9773],[44644,97757],[18598,70780],[15933,17729],[67105,79609],[36497,87416],[78826,81462],[13702,26216],[86456,89248],[41745,90991],[10469,11668],[65005,66044],[11265,45703],[93110,96389],[61991,68597],[80534,91296],[97229,98793],[97866,97977],[39121,64229],[56477,85666],[57942,93912],[47107,82153],[76380,82891],[98385,99434],[49050,99686],[13729,47479],[88585,96598],[63065,65770],[20545,90571],[39134,47645],[22081,52619],[5356,91628],[10561,38907],[52292,71855],[92809,96454],[44764,50254],[34751,90975],[54170,69287],[48919,98089],[30563,95791],[75587,98865],[12539,67550],[62728,82338],[82934,87601],[26353,81330],[8501,83494],[54399,63289],[45360,49908],[48042,72311],[96835,97731],[30558,98219],[45643,56175],[71998,74376],[78184,85442],[29256,31873],[33732,62721],[98556,99886],[90152,97870],[80069,84781],[7512,58705],[69362,92956],[38894,59150],[94398,96864],[70152,93060],[1569,41885],[70233,92771],[95160,98396],[31228,87209],[83115,96781],[85230,88939],[49457,81966],[89275,96051],[81444,89206],[4615,31602],[68385,76044],[60195,83504],[90337,91621],[10106,44689],[80199,97324],[63796,91199],[40245,76879],[11828,54648],[10525,49581],[8469,22674],[14681,28204],[88299,97987],[95060,96998],[11937,74936],[41744,63978],[81359,93676],[21548,57908],[23637,27488],[2210,30595],[42535,55197],[96702,98471],[77416,96603],[55087,81591],[59834,99962],[74450,91021],[26288,41089],[28766,79766],[19031,43799],[19326,67930],[79277,84481],[53500,93900],[49896,59109],[28160,82125],[29123,36909],[8172,72147],[55484,78351],[20882,96952],[89584,89700],[4878,85837],[74596,83100],[20150,78804],[39239,83926],[32792,68496],[66753,67201],[98177,98549],[16545,62585],[3383,86241],[60246,74458],[66805,69244],[65242,82585],[42536,55828],[45808,47573],[88000,90133],[58447,68731],[35320,84110],[13927,57567],[97267,99841],[76604,87935],[12356,29374],[1594,43377],[76043,94876],[90826,97045],[58044,86942],[63563,86420],[90190,91425],[98497,99799],[39888,44387],[68652,85177],[79490,88594],[52679,79060],[36499,60209],[13938,70704],[36291,50679],[80113,87871],[11747,31612],[62171,84375],[27047,45924],[45795,70544],[31980,89976],[35719,96728],[96010,99629],[9845,12055],[17026,57620],[29544,63980],[52861,70168],[30466,34444],[50295,77502],[96387,97997],[70991,80192],[71026,94346],[48913,78537],[64977,85434],[57381,89522],[76187,83175],[96521,99189],[83369,84815],[89286,95697],[14282,84218],[64026,69693],[49561,88866],[14011,58462],[2427,72314],[19375,49916],[62578,67231],[59951,90063],[37123,57649],[13587,51006],[443,31844],[31810,67622],[21034,71201],[61917,91390],[93480,97969],[70391,80076],[30059,73101],[50784,81527],[48366,63697],[57010,72875],[34740,93266],[75259,84637],[89547,94103],[85024,90593],[80156,84149],[49866,83363],[13805,27970],[70888,92997],[67440,78436],[87165,90191],[73700,80362],[85424,87420],[19850,66420],[37100,52315],[47808,65293],[96012,97265],[39651,72849],[18426,56650],[94089,97376],[68099,90992],[83658,91226],[72045,72169],[56031,89693],[68504,87799],[35531,44037],[79107,88387],[8062,76215],[19871,49009],[35707,60747],[99974,99990],[2790,65896],[27060,77752],[27345,40670],[33490,59953],[67913,84064],[91633,97858],[7793,58119],[88016,90705],[25463,81151],[12605,19515],[76537,91964],[96500,97391],[61882,99043],[49058,68279],[60916,94351],[9335,60702],[56294,57861],[53331,90249],[55316,66995],[13006,30326],[16678,51105],[16004,26995],[94877,98589],[32672,37709],[61315,89519],[57388,96794],[38942,70525],[3872,47750],[38837,87201],[85064,86853],[76572,93590],[29655,33570],[82845,87006],[96943,97163],[96716,97812],[4682,43452],[30116,49541],[53474,83750],[22374,74523],[26210,62677],[87937,92215],[30784,82382],[80705,92094],[67631,87695],[68320,95965],[8492,81467],[23291,81797],[57744,69454],[97913,99486],[61526,92080],[98009,98710],[55842,79801],[74857,92682],[88552,91659],[55735,74383],[24425,74049],[91532,92723],[4758,94856],[55514,79356],[94477,94802],[28120,73341],[72218,84599],[34009,96857],[17708,81938],[75647,95976],[8308,46437],[37747,42817],[33217,43817],[65563,86237],[13206,54377],[54381,54780],[41314,50237],[82736,99634],[46589,81786],[47376,70083],[25214,66209],[32454,99839],[4821,68642],[59080,61424],[65018,91421],[90188,97100],[41435,70430],[46429,77509],[16988,79909],[71678,93815],[31469,36909],[71604,90373],[35482,53367],[69496,85068],[41948,52788],[5369,10689],[56413,99677],[48224,80187],[47740,65226],[25417,97780],[72309,80465],[28933,89711],[97396,99176],[65620,67894],[27379,94931],[20619,61939],[94816,98509],[26531,55969],[8681,21701],[63891,72095],[63531,93745],[56204,62581],[84532,99030],[24820,98950],[76490,92644],[32087,51673],[94623,95126],[70740,83290],[40167,75149],[27015,99130],[13808,44491],[35260,99844],[45171,55315],[62907,77661],[42687,81037],[76569,84506],[21344,45266],[7,88079],[70879,93391],[13373,97381],[94060,95535],[30944,57967],[74564,91420],[38547,74822],[38523,65243],[81476,96668],[12165,32552],[77780,94170],[22956,29253],[15473,39646],[74239,99442],[12446,60683],[70295,88494],[59658,89819],[42459,93128],[98906,99745],[74621,94408],[46386,67788],[43541,96046],[55415,72921],[25446,30374],[66908,75713],[874,71954],[1080,19739],[29380,46401],[31827,55959],[66779,92952],[82988,85559],[66245,94263],[58372,59789],[81409,89114],[24716,53081],[56850,72687],[1293,33496],[41322,47835],[8936,96817],[9268,73896],[6123,65615],[65573,74817],[49042,66852],[74054,80858],[85524,92466],[56744,70444],[85571,87140],[97730,99202],[31951,59396],[26697,81199],[62222,85316],[38778,98089],[91962,97395],[46488,78949],[30560,87330],[22818,70268],[45797,84469],[25024,62158],[10024,81608],[50462,52552],[49069,79367],[6024,90748],[60434,85272],[52405,94613],[79720,80761],[34248,37458],[55208,73246],[53427,97337],[10846,69081],[5411,32225],[77407,80302],[53193,76392],[36674,79699],[48108,99532],[89838,99612],[12150,47717],[10021,83637],[85285,86791],[83162,93321],[65845,78059],[98595,99306],[64361,70512],[87123,90627],[78966,96377],[65191,70238],[53162,82448],[24207,29537],[83945,85037],[89622,93418],[1266,8050],[91775,98673],[56496,63432],[25603,52810],[15693,75323],[23256,40366],[5333,31727],[49912,94525],[20921,79689],[74447,84253],[34701,52598],[13395,31042],[597,68076],[13844,65448],[83560,98183],[69094,77117],[903,34346],[28493,52098],[67686,71622],[59153,95087],[95951,96401],[30576,88658],[1664,49388],[66616,83332],[95782,99887],[18549,34382],[19097,58676],[57337,84442],[3820,16610],[21181,63264],[15976,47330],[96883,97628],[85336,88343],[75336,95477],[61967,73539],[67000,68043],[64540,99536],[48521,62458],[6357,74100],[83847,86177],[90518,95838],[27685,64731],[4987,88480],[54823,57190],[43506,78002],[84825,99406],[65546,92102],[67749,98687],[8802,21549],[21741,90714],[65391,93758],[99447,99998],[55159,94353],[3728,27082],[83599,89596],[26062,79891],[37539,88051],[41490,64280],[7931,27430],[84152,88162],[16093,97682],[97530,98861],[70338,73419],[29258,79593],[3152,33484],[23451,59109],[96123,96540],[27073,54100],[27808,65714],[70754,99797],[22083,68256],[43725,81525],[96296,99212],[84693,97409],[78805,98199],[67023,79403],[37848,48729],[63096,95101],[1537,10362],[34126,98993],[28584,97699],[69229,98384],[93633,96423],[68812,87063],[26015,83924],[21803,25060],[11522,96090],[53135,74641],[13187,26772],[28353,55049],[72117,79639],[10997,37046],[34940,46694],[11327,12195],[92124,93370],[88194,93703],[10006,69105],[49968,53124],[99911,99950],[71958,80106],[18670,95259],[950,51131],[71623,80970],[97880,99488],[4370,75459],[88974,97647],[37702,97204],[26208,79777],[6115,8110],[5364,52986],[42773,78704],[93261,94231],[56490,74587],[98693,99260],[56574,66009],[74061,97030],[57781,74087],[28711,35361],[63041,81749],[7911,35540],[45669,52501],[13537,70364],[29611,44836],[92187,96208],[61489,82302],[5887,93188],[13950,57121],[72916,74435],[49509,57126],[19859,85552],[2748,51328],[6939,83033],[4206,71424],[44382,67828],[13920,99103],[96823,98538],[56741,74647],[74313,83382],[41040,67837],[50710,87872],[90176,94199],[40572,54990],[51347,60379],[92888,96285],[94330,95609],[22581,66150],[32446,73141],[90867,97589],[77381,95361],[78437,97162],[49599,69097],[55335,82194],[81898,95547],[42333,97234],[71779,92771],[39209,92947],[40650,51197],[71074,94029],[22968,65090],[8274,90455],[60673,61588],[46840,72237],[25067,54530],[88752,94563],[9374,92378],[54838,63919],[57428,61176],[40030,57238],[13339,21648],[30706,53557],[22389,23059],[18602,89037],[36450,45279],[13267,82522],[81980,84836],[85911,94536],[38665,61775],[13803,17019],[75665,82398],[43026,91029],[24657,47077],[70165,86377],[74117,85851],[49523,53451],[37277,54585],[70628,98019],[12738,99556],[98190,98287],[22882,59759],[93963,94070],[45352,81891],[26537,29295],[12103,21785],[57812,61279],[54601,86705],[53586,64298],[98567,99705],[73506,90373],[48299,52945],[21464,72007],[31158,71120],[44225,72540],[47617,88933],[26433,37234],[47570,69044],[97641,99865],[18531,72190],[49493,70684],[10261,35423],[21971,79968],[95409,98311],[25241,42934],[26420,62292],[14724,17796],[36537,69232],[89200,93521],[59228,68998],[29970,43918],[77851,83049],[34320,76993],[38191,83877],[90060,92789],[7543,75085],[79928,89250],[95280,97040],[84714,94336],[7182,64018],[47070,97502],[62880,96935],[90666,99578],[98140,99221],[75694,90863],[98404,99165],[61473,91103],[24190,75140],[88458,96578],[70017,73799],[22054,90910],[68849,95399],[16051,99547],[54915,97906],[84841,87449],[57194,57729],[71938,72205],[51536,68833],[97616,97971],[43863,48769],[49351,69669],[2896,98783],[48703,74383],[47032,86456],[54161,77166],[32536,53316],[29183,29630],[15268,47330],[16676,85706],[25228,72878],[85207,87986],[24730,27572],[68917,81939],[52406,74003],[18775,23447],[65258,69328],[40669,79667],[98905,99898],[69592,81207],[51160,74319],[76502,89066],[45394,86051],[77656,89383],[7668,21775],[19963,37626],[15998,42215],[11975,37252],[19221,32810],[96607,97225],[92714,97392],[39455,84024],[86098,94204],[62096,82218],[39152,84592],[29751,77302],[85759,91127],[70084,94056],[97601,97645],[79763,82860],[53562,84740],[37160,86410],[78640,78745],[88795,90969],[3724,44151],[18270,53290],[34125,93516],[24536,63364],[36327,78222],[82706,89515],[44130,74648],[31503,79404],[22905,76856],[38100,87048],[67495,87506],[71217,90818],[61796,68783],[93895,99986],[28419,79583],[88097,94602],[69921,99082],[7120,77668],[76541,78645],[28705,87441],[2827,49298],[16841,57606],[63485,99880],[58771,81709],[68237,92850],[48140,56503],[232,77125],[41819,80796],[52379,61991],[87443,90693],[16541,35344],[91818,95922],[22730,90952],[86237,93879],[4544,40631],[29308,64614],[69848,86857],[81345,83216],[70750,96460],[16947,33896],[71385,85548],[5178,72340],[61989,73574],[31695,72714],[35563,61250],[2681,28119],[18336,90013],[64489,97446],[42321,57881],[10644,81944],[8327,50518],[41052,67708],[61618,64386],[68077,96217],[87665,96110],[23554,73071],[95219,99738],[69650,98183],[86205,97945],[42291,73350],[62879,86000],[95372,96072],[16254,66965],[15247,66861],[60632,99262],[85555,87013],[15311,97102],[15331,72448],[37242,58363],[71934,95755],[14248,31676],[95729,99924],[22042,34918],[80844,81549],[93623,98448],[15030,31493],[72616,79923],[36503,91356],[63784,97586],[15138,61991],[73930,77227],[19310,37989],[1042,42801],[63461,95308],[16936,57255],[35409,69485],[56696,81432],[75715,88529],[13225,70224],[31866,71671],[84710,91089],[42821,44596],[66684,98019],[89495,93910],[41840,48251],[64356,84555],[66095,68799],[50166,82508],[4507,36741],[76457,99815],[59510,79370],[8982,40328],[75868,87467],[90286,97676],[45957,54946],[31530,76392],[56349,56834],[46710,53315],[3853,65046],[17186,63143],[95135,98824],[95444,97048],[90196,97932],[29230,79631],[97418,99668],[73399,89295],[4202,25876],[27536,96181],[15037,99318],[44450,90064],[24090,49345],[33285,91888],[95216,99559],[42020,49409],[74375,79141],[82387,86572],[24305,73519],[37336,49142],[23563,94631],[35388,49884],[20421,75753],[79132,98884],[20798,85796],[21167,86761],[22271,60531],[59541,72649],[74048,79624],[81435,88697],[72439,99149],[83853,92177],[24081,50501],[91583,97693],[54961,93572],[11290,54505],[31795,33237],[95018,98274],[51914,69220],[92785,96810],[37008,98744],[34148,56455],[51184,51844],[36787,44043],[39890,52025],[49466,57659],[58718,96702],[80255,84059],[74508,84646],[37936,75805],[81677,89466],[60211,83024],[896,97800],[75877,98474],[83294,96372],[26690,74082],[63450,73008],[51843,84621],[85700,94407],[89762,92886],[9051,99014],[26853,82899],[43507,75020],[35831,48745],[33617,44272],[60457,85709],[14615,60013],[36087,87528],[84518,97431],[25605,42137],[43714,56488],[35631,82346],[88757,90794],[75224,87180],[40706,43445],[96390,98128],[79130,84102],[67953,79317],[3304,94712],[6100,81072],[60090,68651],[95592,98653],[91910,96484],[17483,27396],[68045,94109],[51713,55497],[66883,85207],[71812,90747],[55547,86170],[94084,98047],[78765,89656],[1851,85789],[89524,94770],[28382,39087],[94900,99751],[72288,97845],[41646,68287],[46607,99138],[40334,59877],[1933,33339],[53649,68575],[12717,55003],[11477,33554],[34959,99309],[78701,91719],[40710,87832],[58558,82954],[90330,97319],[82640,99908],[58282,62089],[27491,29638],[94358,96424],[93454,93509],[67979,92098],[65776,94287],[66977,79832],[43331,79353],[82368,93325],[77173,88510],[94389,95430],[52505,64972],[20478,90383],[10687,60099],[35150,75388],[29919,37196],[75941,85297],[9095,73943],[9777,53774],[63704,89242],[51630,90367],[23926,30973],[56330,85114],[74828,91169],[66985,93360],[70343,80843]], 
targetFriend = 8916

Enter fullscreen mode Exit fullscreen mode
  • Output: 2235

Example 7:

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

Enter fullscreen mode Exit fullscreen mode
  • Output: 9998

Example 8:

  • Input:
    times = [[22426,84367],[75329,93393],[16727,83539],[36174,69610],[1205,96372],[92090,92614],[54318,68966],[2108,45037],[33071,97071],[10136,32984],[61156,98710],[5352,26672],[69124,73060],[36589,67343],[9489,99078],[56391,79127],[88275,91841],[47717,71477],[77283,94145],[34279,62828],[93594,94673],[86554,86912],[39556,46739],[53675,75259],[49687,76186],[98841,99920],[71395,71859],[77560,90201],[19800,27407],[29293,36331],[19298,69257],[45777,51071],[88102,91436],[13402,91278],[75702,90696],[35933,80138],[5409,76632],[69427,76986],[22387,42315],[81578,87718],[23495,89502],[31443,58262],[78751,84610],[49378,73936],[57481,99920],[63048,83860],[29535,72348],[89222,92226],[91976,96524],[93321,95260],[2985,80101],[33096,45591],[34892,89098],[71393,75635],[71885,97563],[74351,80224],[70755,97651],[31640,57431],[85098,97725],[52658,58804],[45399,66232],[26851,39059],[81438,83643],[12196,47170],[3859,67920],[61379,85651],[28430,95048],[92417,94207],[93228,96597],[6785,41005],[57995,89468],[89198,89557],[83057,86667],[89833,89939],[44572,86692],[7582,67737],[23988,84070],[67055,98564],[17603,19265],[47502,78080],[7604,31781],[39812,71979],[92551,99714],[61947,79505],[24114,49424],[85626,87737],[58459,62467],[82399,98463],[29555,95257],[29806,71224],[53662,88132],[2228,95288],[14511,93026],[81984,85276],[25902,99856],[20185,29203],[98840,99213],[14791,21666],[26187,45536],[3948,23037],[46754,61956],[53204,97607],[73600,91312],[53148,74118],[8123,75415],[72830,81231],[71516,76002],[48913,61144],[53494,94575],[11622,30017],[89469,98388],[86631,90355],[70085,82969],[66542,82854],[53223,76940],[95413,98935],[84331,92617],[59795,96805],[62877,77297],[90834,92357],[98516,99205],[1335,30749],[36134,39169],[10902,15147],[85022,88653],[96363,97541],[46187,84429],[47101,91808],[6381,29128],[90360,93219],[678,14919],[31908,60036],[40179,82797],[67855,74554],[80220,95471],[98962,99729],[3438,37747],[64847,78496],[2696,41421],[31478,31717],[52990,54936],[98901,99063],[29069,43478],[63633,80235],[80021,80679],[48405,62811],[86712,92198],[11335,69289],[63829,96943],[88025,99197],[22243,78723],[39726,47031],[3674,76470],[28839,85178],[49939,98708],[70724,79599],[56434,88892],[46924,78658],[88332,98027],[149,51884],[31693,83801],[2982,8380],[53085,88474],[99479,99603],[74758,96516],[72069,88990],[89990,93045],[62167,84228],[12199,29553],[49976,56856],[67653,98565],[68522,76794],[67032,91388],[81732,92415],[6704,14173],[3813,57358],[30028,82717],[39697,52527],[44618,45237],[74779,96499],[87531,96157],[38515,90279],[57110,66630],[68505,70468],[77731,80244],[81590,99464],[72188,80823],[89076,94703],[10215,70391],[57010,61892],[95915,96351],[30708,80862],[85150,87096],[42273,99632],[17736,65771],[56542,81567],[19812,80923],[8790,96532],[53282,75169],[18460,34017],[73567,90066],[39660,66128],[38350,70951],[58029,97782],[85992,98758],[59643,60330],[9901,18076],[63362,79459],[93036,95316],[27086,66590],[97482,98421],[47159,57106],[68091,87246],[62998,84053],[27993,71008],[65251,89644],[56787,95879],[99756,99929],[90267,91622],[38113,58407],[10195,37281],[34877,40074],[39607,65623],[65455,79900],[36114,68163],[56663,67889],[1417,38537],[61050,61237],[38301,83359],[77916,87780],[87261,93797],[14058,91720],[31330,64165],[55672,81517],[68997,94089],[62667,78867],[3963,19956],[28712,70710],[6394,59813],[9619,64104],[61141,93587],[72435,85919],[67832,80741],[43963,60332],[83984,97463],[57057,95685],[52320,93603],[9756,93411],[54595,85196],[21537,30086],[98223,99192],[39391,83001],[37806,95459],[41221,61849],[66829,80570],[66938,67870],[5486,72858],[77781,83387],[84348,98225],[78065,93490],[31039,33531],[16457,70156],[14209,19784],[82300,97059],[33740,50997],[12047,67020],[28468,36426],[97068,99213],[3478,88527],[22258,49079],[60185,85934],[60584,69068],[57849,84085],[45296,91043],[66611,71188],[58381,97814],[93522,95858],[80234,95868],[37587,95517],[46237,66393],[7576,94206],[96829,99175],[14028,94924],[45511,72924],[64818,87927],[72073,95870],[86003,92808],[10535,90096],[88474,99431],[20265,54090],[44727,61451],[39855,99853],[78058,95770],[7753,33600],[8926,17869],[86175,89666],[48353,56177],[43190,48343],[32344,40408],[86994,91593],[27654,81640],[74482,80041],[4039,96213],[63715,87431],[31703,97470],[49056,99582],[84769,99647],[68154,93419],[76579,81675],[8857,15202],[31108,49021],[99171,99679],[85007,96421],[30875,42270],[5877,70339],[96721,99733],[25672,97795],[43307,76512],[98657,99995],[28967,98878],[48553,51349],[25816,93721],[38008,84766],[19255,35163],[26291,47157],[83208,99644],[62111,90534],[15135,86170],[79427,92868],[32762,81330],[63163,70693],[52714,98380],[65683,75856],[79354,89352],[41190,71774],[12235,62363],[97322,98922],[73708,94491],[55142,70966],[22283,97245],[7589,44241],[92053,95544],[236,31967],[87108,91959],[39624,96555],[46406,66387],[49366,88370],[75910,90240],[43610,54329],[19574,75487],[81398,97450],[12741,53737],[35128,72226],[76140,93207],[75332,97423],[3623,57463],[27586,33365],[43695,46517],[94491,97026],[4129,54210],[37666,72737],[58588,83221],[46739,80421],[64448,83219],[73637,97833],[35702,70470],[68590,69702],[88562,94633],[61090,93669],[48039,98210],[96115,96799],[83313,92443],[75875,86297],[74842,98135],[87830,88154],[15408,94242],[78783,94713],[75124,86556],[41918,73625],[73323,97655],[99722,99781],[52473,89294],[93127,98947],[59835,90666],[56441,73512],[8362,51749],[42497,63152],[21780,44212],[73997,80521],[39735,75892],[75844,93748],[66478,85845],[52432,95174],[67479,68741],[16601,29443],[34713,84904],[41111,74181],[3520,72076],[63876,71387],[82787,92161],[77312,91425],[55888,57472],[74970,90514],[61195,69943],[64505,98932],[76789,77274],[57579,91944],[81522,89328],[62948,91475],[18138,74002],[60097,77909],[1843,53563],[23969,37355],[1591,76309],[2468,79759],[30138,66474],[68490,85041],[97173,99794],[4812,78767],[79389,90575],[15209,33687],[17700,22542],[98238,98544],[54425,73345],[80635,83226],[37929,42925],[88089,96039],[80035,88228],[79645,84094],[50995,73302],[94847,99323],[75165,80519],[73466,96793],[30388,96068],[71442,95296],[40295,70226],[95890,98313],[28783,85570],[94710,96272],[67477,68343],[73300,74197],[87165,89172],[22324,64705],[76010,91079],[64870,90892],[61812,75664],[42197,84428],[95869,97262],[36012,97948],[31605,37549],[45439,86112],[21845,38008],[58580,67547],[23936,63840],[18103,45502],[12343,52009],[52626,66375],[18535,99047],[93829,97962],[34696,88698],[59738,66140],[31037,34036],[72053,88326],[56430,84134],[98125,98950],[48559,73093],[19022,63314],[49319,69016],[58718,80034],[59902,92465],[90353,99399],[61220,88425],[42657,78883],[38373,49348],[88565,96075],[90295,90598],[49206,60790],[37377,99168],[82776,94673],[57571,57917],[10987,92122],[20596,61302],[44192,94474],[42600,74985],[75617,98823],[26481,72104],[26982,74616],[57606,86459],[46626,83258],[71761,90584],[38254,66000],[51452,75779],[30441,51169],[24049,56382],[44917,77657],[78420,85763],[6094,80028],[74826,89880],[24291,44389],[98642,99176],[92535,95973],[23342,24936],[87458,99799],[56148,81201],[45938,58912],[91454,94117],[78124,84572],[73303,73547],[37153,86845],[48771,79396],[60812,99441],[96073,97597],[37142,81673],[7577,49807],[65917,76425],[11717,34475],[15128,46673],[28548,41254],[92586,94406],[38778,60026],[3677,65260],[75701,91572],[75242,80784],[46789,58349],[85767,99516],[65706,99091],[14837,90206],[29640,41288],[31985,48614],[88779,90001],[24757,68416],[47413,50381],[4178,22530],[40352,85901],[19604,71192],[86916,86975],[21171,75560],[65805,80238],[42830,82340],[24899,88054],[56134,97448],[42701,47602],[58363,68270],[89920,92757],[51054,82747],[50721,64513],[41356,88401],[41305,78768],[29497,71908],[14971,46129],[82610,97544],[9918,16694],[61726,82112],[80052,86778],[71643,95856],[71069,85706],[42537,57054],[37321,70356],[38241,46636],[57903,68396],[66913,85123],[48984,84016],[44418,81262],[78504,89629],[41328,66551],[98448,99926],[32716,65094],[73952,78187],[46422,78204],[56842,97022],[83370,92934],[25920,27514],[95634,99101],[44552,89978],[19620,50573],[35553,38433],[48227,50257],[54468,63904],[99614,99925],[30535,60628],[94526,98320],[60388,69792],[90904,98831],[30118,71467],[71775,96570],[56101,98234],[10501,19756],[7117,85719],[58587,71568],[79303,81786],[92409,94340],[65927,74124],[39535,95120],[78138,81117],[31410,96506],[53466,74861],[95491,99590],[97837,98372],[87978,93281],[88619,96970],[90802,97197],[89194,99164],[87645,93682],[23966,29478],[1301,79547],[68014,79451],[68926,76910],[71005,77469],[89581,93182],[69588,70220],[72074,89276],[44580,73163],[59479,76358],[39412,74221],[31804,39709],[23190,29321],[22389,80342],[13846,15387],[22017,37892],[37540,49660],[86329,87637],[81648,99723],[91159,98234],[71493,71583],[70796,81068],[42290,64284],[82604,99813],[81971,91327],[93287,97119],[31435,49207],[62565,86692],[67474,76533],[46357,48400],[79126,83431],[77664,99322],[70349,97088],[35633,45586],[19293,96941],[90968,98931],[99325,99993],[37735,94667],[85578,87619],[78234,87316],[23657,46130],[58471,65969],[90971,97791],[73762,95683],[41681,58801],[80564,88727],[14418,19289],[28874,64764],[46776,64140],[46252,78555],[18428,52269],[35533,82677],[34336,80432],[92680,94109],[3068,62921],[77481,91087],[81477,92134],[86187,95039],[55209,80113],[20755,85501],[89853,95138],[39960,50195],[81683,96827],[30655,39046],[98770,99647],[46438,63042],[53834,78302],[11402,66208],[44836,50345],[86964,95236],[23574,79410],[55747,55928],[96185,98563],[74542,82177],[88802,95129],[71324,96837],[22191,84047],[95597,99004],[42621,94468],[30688,87769],[72987,75551],[49474,85486],[97430,99133],[91886,97468],[35142,87983],[85327,94294],[62910,69504],[35503,50745],[28375,78510],[12281,50185],[66872,83097],[23789,47221],[10402,80443],[83539,86687],[32500,54058],[13690,58156],[88299,88553],[20932,79902],[6687,40927],[7030,40261],[85380,93536],[25870,99270],[84579,84674],[79626,96311],[22717,92528],[4239,92497],[43588,57494],[74622,89623],[35676,42775],[70532,74898],[65599,92629],[66971,84013],[6436,97156],[29231,94651],[125,40738],[28167,78800],[24591,74884],[95737,96026],[93986,99703],[4546,24759],[37130,51345],[89806,93558],[72138,93650],[89421,94458],[54307,62157],[64763,88598],[95423,96149],[57918,94728],[81083,94220],[95562,99610],[91106,91950],[56825,80948],[3222,55038],[19126,52265],[42957,90094],[64684,73237],[8292,27930],[89578,93552],[91428,93574],[92049,98031],[1372,66535],[97026,98842],[57036,74386],[75175,90327],[63523,81607],[35020,39700],[95065,95755],[42371,46834],[29473,45677],[47060,56928],[21076,53830],[75056,93839],[32459,96711],[5714,30743],[75861,83690],[25709,94826],[79957,83923],[41930,99738],[72944,86724],[26591,88582],[87533,88263],[30839,55068],[63063,79913],[81565,83140],[21411,96484],[77220,77837],[23832,25675],[1635,84970],[87004,97515],[12062,81684],[19091,53626],[38027,48337],[24485,51846],[65560,68205],[21592,25574],[90784,95988],[50423,57740],[57516,84845],[40229,41790],[55386,66675],[75863,98459],[95593,98943],[88536,96543],[84598,93165],[50241,61200],[40249,55421],[56612,68501],[34206,98792],[58589,70391],[50144,91796],[31556,64756],[23629,38942],[87270,87477],[54371,84369],[14122,39854],[7307,10295],[76798,90680],[8148,51777],[85400,96761],[95942,99738],[67247,86279],[81044,95316],[1707,85132],[27906,65468],[83789,88109],[2252,55742],[83919,85892],[75515,87686],[88915,91772],[76659,91333],[90598,99030],[6741,25853],[23114,75776],[3559,69016],[17926,61908],[65545,90774],[81264,95027],[33505,39786],[2167,6486],[9849,49274],[55183,65417],[9672,23620],[47766,78472],[96703,98436],[72470,85518],[57091,88917],[16448,41021],[56431,60550],[23563,52211],[51328,59078],[69280,90040],[53102,54862],[89415,92694],[14490,77208],[16047,31903],[36105,38743],[59237,74417],[23466,26539],[45986,68593],[91104,97407],[25201,65621],[28926,45135],[36947,49945],[448,43180],[10049,81539],[62107,77292],[67231,73319],[78136,96011],[22957,44920],[12517,35307],[61339,79880],[37775,89839],[31186,95269],[18805,68101],[88259,90022],[87870,95397],[40358,40372],[80229,88389],[62407,76476],[37867,50656],[58111,95468],[333,73363],[42211,58621],[83289,89534],[58036,99105],[72211,86938],[31492,53501],[6673,85690],[90949,91126],[78626,91246],[64306,84793],[63004,89028],[8233,34542],[26972,27756],[72898,74372],[58611,58768],[65524,74075],[27103,70782],[69292,95218],[3215,23760],[97505,99237],[72148,75375],[82727,95606],[99863,99875],[53141,68779],[55991,61936],[72768,77869],[54709,81475],[2418,41526],[31913,43454],[65742,92004],[2283,33261],[44555,99768],[23993,24665],[10459,83537],[14406,17592],[53707,63765],[32258,50972],[84099,88009],[41116,72538],[39658,99952],[50486,97707],[30581,43472],[81667,96233],[98983,99816],[88552,99244],[83516,90881],[66486,95108],[65293,70674],[73469,75526],[31880,52097],[33940,56537],[40837,67183],[63341,95769],[35248,47637],[2157,11774],[14529,50594],[56064,82779],[68853,89037],[91003,92075],[21135,55839],[90394,98656],[38688,56973],[34278,47547],[20422,20508],[4216,33327],[27758,33968],[38107,51265],[10690,61346],[9975,72108],[40769,79314],[92463,97380],[68184,71245],[20634,40577],[20008,68607],[63482,80250],[15018,23998],[94183,98966],[28854,54198],[73013,80236],[86262,97209],[77118,83145],[15041,54460],[12655,64595],[69719,82453],[3660,15169],[4432,18646],[48833,66816],[56202,67809],[30679,99720],[25359,68562],[52000,78281],[85947,86371],[53554,70929],[43006,60625],[19379,58275],[16294,40336],[33934,84569],[88189,96549],[97338,98590],[53339,55125],[89775,94688],[5732,33911],[87912,91898],[17574,38202],[54106,93643],[69533,87258],[83708,86329],[64481,98824],[55756,87507],[99636,99851],[55497,64622],[20704,80181],[85207,92273],[8225,87462],[17727,25563],[72923,96086],[95089,96251],[39281,64429],[97488,98592],[57078,95657],[72347,89028],[5869,34191],[45318,53885],[84243,94381],[39407,83889],[90545,91295],[90984,99136],[99247,99671],[25952,59723],[64881,98925],[20800,87013],[24154,49811],[48460,92077],[55709,76882],[22858,32491],[33396,34036],[24784,43269],[49627,70032],[41449,85319],[72644,88351],[86240,96273],[76644,94151],[78453,78524],[30155,90556],[2268,60560],[62696,82719],[28947,59678],[20812,56466],[90438,92448],[73558,95435],[86619,97866],[24309,95288],[75698,98800],[18498,93133],[27540,48180],[90839,94337],[66781,95963],[36883,87923],[98479,99089],[99199,99658],[21320,67026],[66553,94266],[49087,55360],[39861,46845],[89357,94817],[9612,32184],[89673,90079],[22646,38309],[19920,62676],[69309,96295],[48324,80018],[32155,43087],[74488,76507],[50059,97273],[90892,93468],[89984,91815],[71172,71805],[575,6976],[41497,96773],[18544,53310],[21482,96391],[13070,32395],[28177,92554],[19101,88150],[32590,98099],[58293,66155],[60032,87060],[89624,93491],[46300,65495],[62220,87836],[30849,47611],[95747,96806],[42231,75772],[16660,87437],[36715,83215],[57836,86332],[19157,35344],[51633,71685],[38697,96417],[77469,88371],[17464,32623],[87666,99499],[66811,88612],[73596,81656],[90441,95768],[21429,54595],[75502,93233],[97523,97675],[57730,65253],[79875,82727],[45169,99525],[96000,97543],[44157,92978],[33920,63437],[41890,81559],[75211,78626],[20686,31794],[80151,83848],[36152,36679],[28669,31900],[53461,94279],[87432,97588],[16301,37620],[76970,77775],[4373,23130],[9833,77794],[66353,81799],[79569,90090],[37864,49826],[22706,70722],[59908,89038],[50176,90229],[93034,93747],[42900,92331],[32215,84593],[61513,77792],[5427,54184],[17511,84485],[70049,84524],[30076,99727],[15173,96950],[96207,98375],[75281,93908],[32034,43939],[84078,86353],[87283,87485],[83308,90532],[64784,92850],[41968,76869],[56058,76485],[15888,91554],[10006,16648],[93412,93643],[23494,32401],[46066,49835],[83449,84106],[38414,87491],[15540,74273],[51895,91436],[82529,89831],[45523,57208],[30192,31489],[3346,74903],[57915,64269],[34759,77001],[63084,73479],[62560,79274],[14099,63541],[75191,95044],[82430,87521],[69044,92284],[91210,97706],[56595,63669],[1803,26968],[2397,56719],[81699,86313],[3776,5200],[23335,25967],[19054,38352],[83684,89342],[61210,83060],[91655,98307],[18056,82254],[91348,99027],[11979,20754],[45995,97290],[63451,66422],[31521,46659],[78041,81431],[93371,96679],[63880,91951],[42783,88187],[27235,79380],[52831,58457],[17409,47401],[56773,86834],[7879,15117],[71441,95597],[53839,58972],[38149,93628],[16104,62081],[97734,98064],[16511,53590],[29236,87454],[75027,96688],[64155,96073],[18796,73189],[3365,22140],[61842,80699],[25141,61498],[11531,32284],[53389,80046],[28313,60880],[85251,93384],[5114,42964],[17681,20940],[76901,86870],[16663,57227],[52721,78805],[18929,26447],[28670,33388],[17265,54024],[70215,72076],[49390,58037],[64377,76797],[4024,91734],[95135,97716],[49741,55632],[43741,46290],[56933,69294],[66252,82828],[26624,43351],[63904,96355],[81000,83426],[8906,51221],[22255,88414],[74405,96915],[90176,97480],[19331,58173],[98346,98871],[7615,74672],[31621,96644],[30974,87886],[15817,56312],[99573,99777],[41414,62179],[8528,97896],[2512,95901],[96675,97525],[50257,73761],[80446,84555],[35953,74538],[39,17568],[72686,85599],[73759,94566],[67111,73889],[80955,84215],[65451,66602],[21752,98254],[91262,92332],[88715,89342],[66234,81442],[66704,98917],[83123,89321],[43424,52544],[88847,96171],[31787,98835],[6637,69599],[11438,64526],[44765,70820],[91748,94578],[74132,87491],[55768,56256],[36512,73308],[622,65796],[93088,94510],[91813,98495],[11956,90341],[89186,99030],[65164,99302],[4395,5014],[84929,86933],[20311,56387],[10235,19881],[66507,88678],[11919,91484],[31764,60000],[25938,59912],[14632,54798],[3311,97263],[18032,74290],[99113,99377],[86417,94156],[7756,72894],[63810,68102],[10246,56133],[4253,77986],[81885,92683],[57892,80742],[83892,99709],[97133,97592],[31516,69787],[12595,56180],[62513,69500],[69102,69116],[56490,96050],[36567,37343],[96582,96725],[46746,72959],[40408,51681],[24486,47476],[99201,99847],[78610,97370],[51817,60138],[23704,84730],[83732,96219],[74890,95052],[5895,28112],[71628,95792],[88878,99055],[47899,79643],[80387,89794],[82837,89875],[97887,98021],[48528,99554],[69255,97214],[51277,66323],[92946,96488],[53012,70484],[15526,71153],[54857,75352],[76382,77249],[51184,59735],[56106,60400],[7534,97961],[10730,73444],[94925,99131],[44808,82695],[89550,91294],[84352,88361],[52623,98090],[40009,84564],[5315,8500],[80594,84424],[65702,97570],[22991,45209],[7207,30649],[43417,51054],[72080,82908],[78224,80640],[33246,94765],[98104,99069],[31451,62554],[77241,77306],[19621,86506],[61612,77568],[97401,98666],[79203,83652],[58347,68849],[39359,85341],[88274,88317],[23316,59008],[40909,77109],[51075,98051],[87600,96476],[22542,64125],[57475,80526],[28205,93166],[63975,74620],[41809,73481],[9674,87444],[84234,98301],[65944,85149],[86925,99845],[68,71947],[61151,68123],[67447,70377],[76860,79945],[27671,38392],[28263,45884],[12683,78646],[31421,76247],[96138,96380],[7717,51054],[32824,75707],[18642,93009],[9538,15670],[31639,35817],[65598,77776],[17591,69691],[67661,74006],[45912,83523],[89941,93522],[67386,89959],[67046,71249],[14757,82983],[98919,99683],[48636,85097],[70451,77537],[89172,99461],[63347,86782],[39640,98657],[90670,91813],[83228,95920],[73937,93864],[21693,61118],[43451,55461],[91786,97477],[57055,61735],[17137,80337],[71563,96822],[28933,75964],[89702,94908],[26908,27588],[16648,96876],[99135,99463],[93092,97223],[84394,91472],[28112,59946],[43053,84241],[81611,88914],[7314,30771],[32418,73929],[68104,96870],[61959,97097],[74625,95493],[19064,76517],[53214,67257],[90384,91321],[71759,95280],[81586,89584],[53271,90633],[88956,97821],[50826,91476],[14199,18065],[43088,95980],[35657,55405],[66399,66499],[68520,76210],[92379,98010],[39521,85875],[45966,99692],[39210,98871],[76830,81340],[91284,94286],[63563,81234],[12099,79689],[52584,89239],[8332,99740],[27735,87082],[95370,98838],[75403,94876],[53765,88467],[94890,95530],[50845,82478],[19066,93728],[92783,95437],[92439,96211],[36127,80335],[40008,68127],[92129,97604],[51621,76091],[97613,98577],[72900,82797],[20118,27426],[62762,98069],[9255,11338],[99350,99937],[27349,43190],[80724,93400],[75728,98717],[471,5598],[51509,85335],[61889,80925],[16112,67908],[65544,69147],[78981,99213],[51444,94703],[31773,43401],[67948,95780],[99275,99457],[69788,82338],[79828,85039],[76388,85928],[50551,61466],[22205,67592],[35527,78333],[7718,27570],[15009,74551],[5066,87208],[83094,83776],[7546,79524],[8961,44170],[22440,27617],[41590,68240],[37081,76946],[54252,67046],[92220,96283],[21960,33060],[94665,99652],[24655,48542],[13446,95218],[9715,43821],[59932,80270],[73572,99026],[7939,81464],[55824,63445],[89888,92387],[20549,87207],[55228,59532],[58659,95730],[72623,83017],[26595,31320],[98500,98810],[70040,97580],[60251,88631],[80378,84122],[24501,85122],[50866,96174],[50710,87904],[97825,98693],[8598,93398],[76680,94100],[32270,95780],[34643,70801],[88621,91506],[38698,62152],[86173,86866],[37139,37247],[52668,78467],[22331,36957],[57476,73806],[55858,95412],[88789,91313],[8575,60717],[5745,81119],[76300,93796],[35871,58372],[24092,69384],[11071,39820],[69959,99590],[55162,83873],[17366,18913],[35936,49623],[43060,94079],[56633,90841],[11192,94261],[88770,91805],[62822,80957],[11519,17391],[64756,75248],[21425,37082],[28020,51584],[35084,92693],[53065,78602],[96750,98018],[31952,73510],[58963,84100],[21258,80926],[44087,83275],[94893,97521],[28134,35971],[36031,38366],[17679,82194],[8912,55787],[34538,97652],[40108,97419],[61515,78171],[87668,95398],[56245,71462],[9378,79503],[51596,63337],[54984,63175],[53960,93664],[57692,61213],[66202,93796],[4088,21464],[22062,74318],[52944,68405],[35061,70174],[40371,69197],[21491,70801],[6853,63638],[7077,64342],[91955,94161],[77244,80193],[49776,69522],[79664,92700],[41050,68216],[8002,30200],[37906,97892],[70373,93541],[48620,87621],[7200,54942],[9863,19599],[63722,83191],[38905,97787],[84566,98917],[15616,84633],[77728,95161],[54548,62698],[78432,83214],[50332,90878],[89140,92888],[4550,15744],[30336,87262],[82069,83909],[82288,91503],[12955,90342],[19915,41539],[46285,73377],[74237,84777],[39256,67919],[39133,95782],[44126,78771],[32488,75165],[23852,45308],[49033,78079],[84764,91800],[72938,92453],[61936,93996],[30724,99096],[29467,51878],[36006,66017],[61548,96086],[39332,96515],[72494,75098],[3826,29002],[52849,79566],[8060,29576],[44878,59757],[22922,48095],[40903,42551],[92341,97680],[32811,62697],[69544,99018],[61503,86628],[60612,76615],[32641,99027],[49455,98189],[38717,68998],[50384,85843],[43390,66018],[74908,95606],[55977,63768],[52292,69100],[78517,94184],[47726,57005],[20186,83212],[80968,88040],[84741,97014],[85155,96376],[91901,99277],[67875,75368],[65165,83497],[25174,40431],[3766,84176],[37171,57813],[88109,90671],[106,32593],[95794,99022],[43993,44946],[32009,87843],[66867,86472],[3219,48596],[99856,99938],[59735,98426],[88386,98152],[97565,98995],[25075,61018],[68190,81266],[13544,17789],[32106,42592],[62881,88062],[62208,90396],[79263,90396],[20814,99136],[97374,97650],[23560,38010],[41807,42681],[27063,46226],[25232,83693],[93340,95477],[58184,60892],[58902,82501],[70770,77259],[38843,91174],[35966,47584],[80360,89944],[45261,54919],[74675,90003],[29523,68344],[68621,77061],[84158,84574],[14219,48358],[91150,93486],[31884,85398],[92391,95962],[25216,42613],[31311,49742],[66459,70398],[33645,61907],[98805,99283],[86323,88975],[54278,93262],[24051,41853],[5338,61939],[44034,71436],[67848,74340],[78010,91287],[30881,44204],[30431,96869],[56719,84011],[66192,77185],[18107,81349],[13772,40461],[55930,91042],[54002,99704],[92970,99526],[83353,90755],[89012,95956],[81380,86438],[44875,47485],[64320,71093],[7721,62189],[54052,77011],[70015,97865],[53757,96004],[96037,99847],[35800,93019],[1144,48820],[60786,61502],[87056,88890],[98170,99490],[32304,83666],[22841,42174],[64286,93009],[89346,96128],[6925,19385],[50538,80961],[90461,92897],[82326,86558],[73238,83915],[45157,98684],[45486,61522],[60416,94832],[81345,88307],[20818,28775],[91037,91240],[99701,99799],[96967,97729],[23912,90835],[28921,83426],[25209,73822],[12380,70151],[80221,84080],[65956,76971],[66005,92915],[57087,65385],[76432,94714],[81550,95273],[3474,72249],[39623,71746],[13314,13995],[6970,22479],[68434,71769],[4673,55926],[43794,84659],[92407,93136],[51212,79321],[33712,39716],[22827,97213],[68532,84828],[3226,48807],[93170,98180],[15379,18946],[76960,90804],[7426,57776],[23647,59572],[93833,96393],[44712,81641],[82654,89005],[23022,51290],[9224,78307],[36231,48915],[91627,94962],[10150,62801],[57796,57829],[10716,28110],[67334,77450],[47893,67953],[42840,73364],[4455,68467],[4578,58282],[59180,74236],[53247,67460],[1073,80486],[9685,44893],[50450,61033],[36260,94002],[3420,97433],[39108,55902],[31069,81591],[54195,58716],[1841,13835],[35098,89546],[76592,98644],[7821,39601],[38714,98484],[72402,79471],[47611,69236],[73482,84011],[53498,85868],[12646,82748],[4973,60191],[41880,91249],[35567,62859],[19705,63796],[20987,63474],[99747,99794],[98318,98471],[80738,81255],[31736,65949],[21365,89916],[45275,53609],[48092,97940],[71467,82492],[81347,98514],[53283,70650],[8421,99802],[37502,46212],[72036,91979],[2631,33425],[70991,86348],[46620,52879],[18895,57899],[75274,80376],[63081,92089],[33067,76220],[72821,91315],[16723,39992],[83569,97773],[58359,69375],[30212,37769],[86339,94766],[18372,80296],[49284,53232],[51020,73183],[99649,99756],[67957,93008],[65819,76965],[88646,92200],[24350,42915],[33508,62971],[77063,95587],[172,60758],[83590,93946],[21210,97903],[6979,29937],[54960,60652],[76759,79871],[38418,39195],[80161,94945],[15205,32412],[50777,81367],[7568,82777],[54325,88900],[87175,87241],[75821,97969],[37932,56650],[6705,47144],[71729,84517],[88028,98381],[27987,53575],[68857,69804],[26485,60043],[52562,65983],[48462,85275],[52750,72106],[7371,69673],[57465,84727],[22509,72105],[86141,94329],[81774,92668],[7098,95655],[49401,89936],[60729,70295],[15880,41157],[62564,98209],[18087,24758],[18868,59779],[60326,67372],[1112,40858],[34865,64334],[15235,27567],[98017,98054],[96644,99561],[82091,90785],[62322,75071],[23476,90150],[46087,96535],[92209,97500],[34899,40214],[97245,99453],[36826,46373],[45602,74714],[72806,78161],[30482,92880],[67113,90016],[17564,71602],[83441,94233],[73512,86575],[8571,23924],[7318,92524],[14182,98673],[28697,88078],[92962,95688],[27704,90662],[70295,90277],[78201,99879],[486,9411],[52773,82833],[41910,69752],[11850,75713],[5711,88705],[79428,81706],[27674,49779],[91196,93105],[40693,76356],[28953,42223],[51692,53123],[56835,89729],[89304,97186],[8258,43887],[14440,69516],[40365,59635],[97546,99853],[98290,98468],[27791,43697],[67954,92436],[92869,95808],[24196,67466],[31182,81412],[56700,59861],[70250,96089],[31950,74639],[41748,54483],[52037,75503],[85725,91212],[98256,99212],[53310,99339],[36694,68031],[79789,85761],[2207,50354],[27652,39922],[745,44822],[83494,96462],[10380,12406],[439,62968],[90627,95378],[60531,98955],[15346,44456],[30444,92253],[71257,78009],[66270,69486],[26625,89665],[67679,96039],[35418,65252],[60805,99419],[52490,83975],[18573,74694],[8734,58600],[19024,91528],[70435,80362],[35849,74723],[58990,73077],[79196,81615],[6948,54299],[36233,48926],[17446,73301],[62195,99230],[55883,94524],[25759,49239],[35560,39823],[42362,92190],[76583,88973],[90875,94310],[45055,53790],[57643,66823],[91212,92750],[59656,91558],[29785,56574],[50189,93780],[65375,84871],[68179,86237],[57893,65822],[58884,69145],[48272,94373],[91085,96571],[78843,87125],[91770,95568],[46342,60850],[49016,79844],[13379,78825],[53002,62893],[99039,99493],[78793,84343],[95995,97052],[9204,78606],[86391,99673],[74382,76491],[82025,88808],[62669,97146],[61566,85359],[64864,99880],[95439,97584],[1376,50189],[35710,51100],[80074,82901],[70625,87733],[50567,54028],[48609,89497],[59521,72790],[49495,55806],[55349,80705],[41166,68217],[78833,87515],[93085,95571],[75302,88837],[70807,96336],[89139,89145],[9530,70504],[93907,96086],[33108,34558],[9569,36823],[98815,99873],[58653,80674],[42306,54352],[84736,97380],[53741,78320],[74736,94514],[7686,77983],[8034,87146],[54342,97103],[46840,75492],[324,64465],[23572,27536],[48079,92968],[6945,66768],[29865,33206],[53323,79041],[60310,69480],[46968,69104],[63074,79303],[97320,99939],[44166,44897],[12870,43513],[45095,78349],[63972,83000],[47632,99676],[40112,90292],[9638,25450],[41703,97460],[93406,96840],[32306,35660],[66738,70587],[68637,91974],[55105,76337],[55107,90724],[40277,48253],[1212,18197],[46694,92741],[20620,77101],[44258,80357],[48133,50823],[57491,65902],[96395,99863],[57500,88437],[76280,97627],[43033,96363],[74387,91952],[92392,97903],[36879,85609],[64368,73950],[48303,64552],[53693,85151],[63214,94144],[84382,84939],[13812,46579],[26896,50831],[71935,89144],[55669,62133],[3080,72619],[70279,70493],[9916,34517],[68188,97707],[86344,88396],[56901,88494],[76203,83721],[12652,72585],[69879,71606],[79949,89479],[24373,99717],[46280,53373],[39803,98444],[21735,71518],[15955,73350],[54976,83285],[5712,82606],[60063,97083],[26799,50349],[5362,6051],[78311,79685],[20192,38068],[56686,83916],[55816,93746],[16563,28985],[9503,90524],[38931,52860],[40705,99913],[92492,92654],[60325,82234],[96886,99297],[51791,77807],[26738,56927],[88827,95479],[99544,99604],[61867,64034],[92885,94990],[53823,64217],[42882,69222],[91358,95864],[51677,77773],[7526,41967],[58448,74641],[65296,76520],[29037,36198],[22919,65688],[87730,88154],[86982,90000],[23927,41863],[93480,99558],[98718,99772],[4508,78044],[16518,56790],[42596,87264],[47321,73606],[61968,64297],[72140,98982],[78055,83745],[29410,44289],[43106,82829],[8834,34577],[19844,54681],[34624,42067],[18924,82132],[3803,94369],[17995,62313],[71640,84731],[11632,55107],[45892,70016],[57586,70617],[82573,93790],[56127,98210],[75545,79004],[46766,77383],[37736,63757],[92528,99101],[14616,17403],[77115,89382],[7692,62547],[26124,80538],[13354,97054],[27092,36608],[97378,99771],[52440,56921],[54822,71449],[2337,77363],[96125,98286],[99802,99996],[88898,97410],[75758,92153],[94566,96331],[11843,41847],[67172,77256],[59907,87189],[20890,76362],[39279,49358],[38464,98733],[10900,85049],[14725,75804],[74795,84339],[59681,70712],[93524,95434],[63409,77326],[87917,95059],[3689,61201],[41384,75712],[35828,57562],[9882,93983],[96359,99835],[72493,83468],[86072,91953],[91555,93686],[91595,96668],[54796,86815],[63999,67920],[82354,95294],[66556,74108],[54160,90579],[36250,69855],[13411,47422],[3716,10120],[20221,47147],[45259,72982],[25214,37809],[24524,93028],[27479,96180],[58820,71859],[4711,68725],[95509,96436],[60881,65615],[44326,72217],[6330,13019],[88070,89087],[33640,58395],[48363,96929],[38126,65842],[77086,96525],[59453,97227],[28069,71605],[42117,72187],[91608,93396],[51494,76229],[52712,80292],[47448,83087],[31322,51546],[97760,98067],[6628,66774],[58525,74844],[26058,87568],[73076,82948],[40043,48610],[86695,93321],[3874,31350],[45288,55527],[12484,21279],[74593,95445],[39872,76118],[85529,92329],[22852,69754],[37272,65467],[73309,73794],[17286,25363],[20421,23311],[43881,51748],[81415,86141],[75772,81687],[47709,47817],[81610,89484],[14967,55952],[29798,87432],[36461,99339],[74685,82455],[60336,75570],[60657,62618],[24593,72610],[43049,54066],[79831,95827],[14901,43524],[46380,62816],[57792,77911],[73966,92570],[20888,53734],[23056,43582],[62681,92104],[39643,44669],[54148,72691],[74712,86018],[33553,90774],[98911,99726],[47810,63094],[21941,71254],[92513,95362],[14696,87075],[55243,68808],[24718,70380],[17338,97256],[3496,79269],[10377,14318],[97088,98970],[92443,99681],[44002,58641],[61582,80239],[5102,72813],[76238,92574],[24559,27532],[60943,61830],[78339,81773],[46428,82549],[33657,79854],[75666,94115],[95756,99552],[34686,82331],[26991,67342],[17078,92447],[83787,88488],[88306,92512],[5507,81113],[93654,96493],[59319,89808],[33321,36268],[8609,94320],[84060,88539],[68517,79731],[28127,89182],[14394,94462],[53194,72570],[86831,91496],[32518,91739],[76867,86339],[57833,92437],[28098,48948],[48211,77023],[34847,66393],[99075,99193],[41211,80546],[43660,77727],[89105,98252],[90093,96305],[29491,48468],[13640,43611],[39992,48174],[58219,68952],[32044,35759],[91528,99280],[80733,83022],[62244,64410],[31220,80989],[86385,91585],[73251,74328],[14088,57319],[15179,46092],[76292,87242],[90590,97985],[51537,77903],[42854,81863],[2085,86623],[89618,96979],[4403,34070],[14681,41229],[40044,80374],[86492,91823],[60988,92910],[76534,86631],[45077,73915],[66039,90840],[97704,99654],[78875,78958],[72044,97317],[84264,93729],[85236,94170],[73003,92361],[63800,88936],[21568,62051],[77042,77696],[77869,93353],[11232,59429],[33413,94385],[3241,29867],[29304,97785],[87333,93159],[58799,59246],[60589,85943],[55322,64419],[85393,89892],[37632,65840],[35647,92961],[19093,91976],[26218,30649],[29476,92462],[13207,91705],[91419,96884],[58108,73244],[44998,53560],[76847,81837],[22154,64065],[55525,72480],[76076,80753],[31762,66486],[26077,72395],[3829,75512],[22364,72965],[23923,60012],[16431,42018],[60356,74938],[74019,97588],[53240,81672],[74385,76502],[84563,99394],[66275,69851],[42797,45873],[71424,80428],[58007,90623],[25392,86372],[57787,78116],[86690,94960],[29770,44530],[45802,94962],[98618,99001],[36813,65874],[23999,37958],[19978,80514],[31430,49341],[75390,92801],[6794,87837],[77893,94075],[27700,94450],[9283,11116],[50044,51477],[8799,78990],[56620,82901],[40360,68348],[42650,63340],[32892,84792],[71866,74283],[64469,65589],[50245,91373],[5359,94124],[97776,98106],[90539,97036],[6111,6272],[7764,14875],[9164,95616],[597,86297],[20110,41120],[39670,94066],[35471,76159],[60782,64769],[46649,95674],[78022,91508],[75046,86337],[70646,82934],[25995,32066],[50689,92604],[49148,80817],[58442,69674],[5182,90604],[94582,98804],[31734,79326],[60456,91198],[28413,58464],[20826,42486],[72832,75881],[56791,72547],[48180,77995],[14756,93045],[24430,82889],[98532,98686],[49955,53478],[33373,63976],[82000,89233],[4461,67687],[50068,73973],[80232,84229],[11314,20352],[8619,42266],[16176,42428],[84256,85182],[66641,77664],[33306,49807],[67403,96219],[25222,81467],[56602,93311],[66122,94076],[5772,13309],[62988,90949],[8696,76994],[23990,41773],[87110,91327],[1686,80590],[56237,95900],[36154,97368],[65264,78141],[65395,67761],[65390,74621],[11552,97432],[14866,25207],[85008,94848],[66667,78908],[75748,95418],[69386,84846],[80192,86688],[53602,64327],[63600,67920],[18515,52878],[27682,47071],[42782,71156],[94131,99751],[88443,97624],[63128,71888],[10421,80029],[78460,97400],[91207,94012],[85359,92016],[61193,89856],[51189,80790],[8608,19393],[12366,36870],[77342,93191],[57232,89690],[83656,87124],[43279,56799],[71306,93346],[52367,94557],[33459,55845],[36943,68217],[48091,70843],[70125,74910],[38587,44776],[12813,39607],[76234,79814],[10877,96081],[6256,58109],[37149,53261],[15330,40061],[46492,82088],[73606,93518],[93366,96536],[88570,92771],[64086,65303],[47161,66153],[78248,92833],[25840,69596],[18556,51149],[90382,91028],[98980,99463],[88716,90867],[98116,98269],[39209,59880],[2291,44945],[70241,84445],[5067,44628],[96459,98241],[90611,94139],[91094,97725],[91179,93326],[87076,89017],[72968,93486],[45981,78612],[34030,77904],[79192,93901],[8555,80657],[99109,99678],[1142,71995],[89020,99376],[30011,69954],[67914,95874],[69389,94674],[95874,97907],[84969,88816],[85447,90295],[31334,35114],[81961,96325],[73874,82498],[25193,96707],[54343,67389],[48366,67790],[25342,34815],[85810,94235],[45685,76168],[20799,47830],[81476,90093],[86610,96382],[18952,95661],[34698,35020],[21809,63151],[33015,73723],[32756,96844],[39571,81711],[36111,59858],[87616,87900],[14993,89626],[95540,96466],[13362,27418],[49327,67451],[85779,95980],[8512,70855],[38378,93523],[2166,60671],[72591,98800],[20380,30077],[42791,97629],[8854,94918],[98799,99712],[94472,96961],[60500,62979],[73050,92833],[8092,54880],[73906,77920],[26690,67140],[60605,93784],[58586,62591],[69441,76914],[28100,40941],[32053,58387],[92761,93884],[7735,79379],[2253,60458],[23197,47019],[7709,90906],[29552,50783],[48576,53495],[79836,92407],[57229,84897],[33195,60149],[25807,57374],[65818,89607],[65061,97837],[86509,96319],[12918,23867],[8815,21055],[86320,89127],[93780,97878],[91026,99112],[26026,46698],[27183,44984],[18243,70838],[70431,82557],[8514,79396],[98321,99882],[60813,98227],[37331,37646],[5278,33584],[5181,80099],[35377,51964],[55932,99449],[23375,55391],[71130,79562],[84199,88724],[58889,89802],[94716,96750],[61230,71081],[78852,85709],[55795,97337],[16482,99084],[29653,63317],[38105,40549],[16551,24263],[78690,91622],[8764,80155],[87202,98967],[5193,58839],[5780,96672],[44985,97704],[29353,91426],[28620,61958],[99128,99901],[38154,43244],[36072,76037],[85087,88001],[1757,62075],[13566,96710],[98896,99312],[98246,99451],[5675,66018],[19632,28551],[24339,94231],[84104,94723],[10957,73675],[24232,32471],[82946,89496],[70742,84607],[46277,83984],[67228,91424],[78165,99316],[13951,80610],[59355,61510],[66166,81452],[70453,94179],[54680,99706],[10339,28110],[19200,82297],[50733,53695],[8940,20774],[93416,96177],[53019,95559],[89600,97464],[51591,65087],[3855,94227],[32014,77111],[85243,97129],[97609,98848],[99894,99952],[30755,75568],[63176,66623],[91202,93913],[20984,94741],[48232,96995],[52793,83190],[6119,35859],[57105,61864],[66642,89607],[97670,98204],[49854,98125],[43197,64377],[27163,65001],[47421,71454],[75872,87868],[88675,94315],[54399,77331],[42041,64935],[89631,99119],[89306,99415],[96913,98857],[390,20755],[99117,99376],[10028,38451],[30095,58045],[50281,53285],[51559,94447],[366,36146],[67061,89175],[10740,70835],[97140,98152],[70020,74610],[66480,90264],[14067,16264],[84530,85360],[94734,98608],[67635,73306],[44064,72654],[57398,88709],[15068,63321],[58916,69305],[9343,36092],[36016,75566],[59579,87707],[37937,89891],[5729,97535],[31145,37204],[60716,84473],[29419,83281],[84011,88156],[6390,12916],[16391,18988],[68714,91808],[17677,22029],[88840,97299],[99309,99510],[50923,61675],[8478,18408],[39257,89013],[87635,98386],[98495,99357],[32849,86539],[21040,79842],[64122,80446],[86482,87548],[67985,94506],[57111,69240],[47777,51765],[74897,87691],[81208,83013],[60092,62633],[75507,87142],[35364,95040],[14512,84324],[34631,80206],[33019,94577],[24126,76917],[59215,62043],[75503,89319],[71300,78765],[73443,89462],[85402,89377],[50625,99282],[21468,62033],[42065,74894],[15784,60873],[26407,49415],[55835,79187],[27393,97200],[99948,99988],[81533,93333],[25925,96933],[29605,71899],[72769,81377],[39507,68887],[41170,58375],[99536,99737],[7346,81025],[28721,62960],[44305,52654],[4319,35667],[78797,89773],[42839,43045],[69450,70874],[93851,94671],[40430,77023],[27404,94973],[77039,84449],[15783,75181],[60041,97658],[79394,87602],[42202,77268],[10978,30056],[52602,68744],[37973,56036],[64509,90143],[57940,90647],[8554,22896],[42844,48166],[60386,82263],[61204,88154],[6715,11796],[24629,41690],[8822,56137],[2801,71390],[60762,73891],[55309,90024],[60607,95005],[98922,99016],[73786,89795],[52126,54875],[81551,87267],[92634,93060],[96010,96910],[60129,89087],[67878,95724],[30599,95333],[34473,69335],[37519,46967],[65241,93562],[27369,43067],[81009,85508],[12005,81727],[55499,84972],[40476,81375],[60789,87737],[15142,75203],[13888,22905],[20922,38893],[89955,95935],[30474,84407],[83875,94629],[89423,93681],[83951,97189],[85504,86575],[81998,94836],[47661,60741],[32176,54613],[69874,93448],[86531,93003],[8831,44308],[52014,90572],[62125,66170],[24316,71267],[70190,88122],[27060,90131],[47623,80946],[33150,49900],[63243,65806],[72897,95795],[19989,41906],[33636,52886],[65320,95991],[35565,85096],[22814,63708],[59727,99341],[94381,95152],[93718,93935],[6128,6906],[21298,96766],[26329,79690],[32448,92188],[97184,99377],[59450,67951],[19415,46591],[37557,39462],[99557,99657],[57096,61495],[99492,99772],[62384,88964],[68161,87479],[90430,91186],[46892,88486],[82712,86121],[93018,99532],[42167,50632],[2863,28475],[8953,48333],[50980,82997],[13313,99777],[42246,51296],[32714,74018],[35515,48036],[1034,48275],[90318,98729],[86394,91791],[63554,90258],[76601,87695],[74267,91118],[91764,99813],[30207,84822],[56283,71729],[51372,68264],[8406,31951],[2146,72986],[82133,89741],[48873,86021],[52125,54862],[14805,55483],[2310,21391],[53511,68778],[91198,93547],[93251,95487],[46822,48762],[6793,68794],[67809,70978],[53947,85948],[74163,96468],[20115,69345],[9951,14222],[37083,54381],[2050,51336],[80475,83987],[68302,69146],[37971,41533],[38863,83646],[17821,88448],[18126,67536],[99943,99953],[47508,95433],[33498,33592],[90819,94641],[60188,65550],[36484,38456],[4108,28609],[68825,78448],[87222,99078],[34416,89041],[34420,72334],[62579,71650],[63413,85431],[36188,86957],[30840,47014],[31449,75432],[73201,89440],[11450,35541],[28903,94473],[47200,55224],[84122,88931],[98165,98999],[54153,76164],[95880,95961],[47229,77957],[38184,59252],[88556,96511],[1499,68039],[22127,63264],[95695,97536],[44922,58207],[16714,20554],[30440,69695],[19548,27593],[16760,49941],[19092,62647],[38345,47222],[87316,89290],[47749,52328],[60363,84637],[67377,94385],[24659,28392],[42137,63008],[6899,8319],[89926,96004],[26410,49792],[56727,73546],[81416,97552],[72653,76009],[49216,94816],[33036,84760],[87330,89961],[74867,88575],[56089,98949],[58129,79726],[60798,76198],[18094,58028],[98711,99144],[42873,60740],[44381,96275],[71174,72889],[40145,49465],[99123,99544],[8699,66257],[1741,97716],[81104,86045],[75348,87798],[90015,99462],[47805,93892],[42176,80874],[32732,53752],[87334,88861],[45138,56913],[39008,43780],[89464,98960],[18500,45032],[11974,67182],[91757,98974],[13394,26395],[93463,99894],[52906,61244],[45122,60499],[71567,83285],[34413,94919],[52569,82262],[68506,90432],[26296,61506],[61575,90585],[90588,91506],[91095,91964],[62568,83274],[95740,96231],[47170,94500],[4419,15238],[96579,99932],[26965,27838],[40953,90478],[96919,98488],[99528,99759],[20894,93768],[28287,64501],[97009,99491],[97147,97300],[9823,18758],[87303,98674],[6216,88093],[95510,98422],[34318,41494],[82491,92461],[16060,98879],[90543,92788],[57310,67868],[1178,35299],[73984,93402],[40200,94087],[97157,97751],[5830,67239],[20112,59033],[44411,53894],[5871,94803],[89986,95761],[25484,56703],[77310,87773],[92830,97596],[17557,80509],[50827,98034],[28747,33451],[9173,35942],[84244,91633],[91035,92584],[75063,78079],[93252,96230],[97810,99215],[81321,95119],[54663,57037],[28294,49849],[90678,91528],[1165,12849],[94688,98444],[74623,89281],[16879,55071],[12155,36493],[63636,63740],[61688,96822],[24974,41521],[85209,99990],[56938,83872],[6162,12664],[75314,90017],[48978,52103],[47442,78421],[81079,85920],[31700,55338],[61762,82449],[22328,48520],[93878,97086],[22420,70023],[58033,78535],[92179,96640],[67515,86434],[2782,76977],[88233,90891],[94686,96787],[4667,60796],[8503,78377],[30230,60394],[64016,76117],[19340,75690],[8765,53694],[41419,43911],[93861,95531],[86090,90263],[89804,96481],[96800,98569],[75367,88531],[25784,39793],[56325,86429],[84414,94745],[54769,84763],[68459,81697],[35842,36649],[20014,68669],[47952,52302],[61731,94303],[68955,94399],[47080,97552],[11235,15069],[69276,93064],[88390,96806],[19969,80145],[96396,98940],[18970,46114],[6062,70979],[3724,71409],[45874,86515],[77472,99023],[61578,92235],[91984,99587],[10057,39647],[4901,69179],[74566,91803],[95904,99448],[98252,98351],[3427,65531],[58550,76030],[44558,52804],[63469,84055],[79301,96271],[47478,48735],[46557,86163],[93606,95070],[90809,91958],[56435,56732],[3473,75274],[11752,57433],[2622,53910],[68456,91931],[77712,78220],[83034,91176],[27263,90620],[39487,55670],[81608,95107],[88472,99877],[11972,64534],[13025,67385],[86950,99709],[7607,17234],[8690,84109],[88860,91529],[26859,42245],[66195,73143],[89870,96950],[72971,91016],[63668,91215],[53228,78099],[61616,90386],[54919,88244],[89290,96767],[54330,70960],[61780,71299],[59969,80303],[4161,79233],[11252,29002],[8979,44257],[30528,53519],[87806,94630],[24108,90990],[18071,56721],[15861,54090],[12777,22376],[48377,93501],[47058,71685],[1956,50411],[14378,70563],[12475,35608],[24675,76503],[14815,80436],[85301,85331],[29402,34968],[84273,90368],[28557,65778],[10467,18136],[12606,36073],[70928,89119],[83438,99140],[68579,82651],[8191,34181],[85699,96529],[73290,82899],[13876,30384],[60118,64172],[13965,67632],[53586,73172],[12210,39263],[25563,37886],[85342,92957],[11187,70380],[47707,80721],[19351,72566],[81927,91734],[75542,88961],[394,91066],[86130,86558],[51665,84241],[93646,98753],[83824,88926],[61933,82473],[11288,74050],[4436,36075],[93298,96247],[19521,39724],[22465,94783],[84924,93927],[72262,82878],[33858,50549],[21048,30603],[57655,64806],[67309,88960],[58055,61550],[87430,95002],[14270,15163],[41377,81049],[89480,91059],[64113,86115],[1120,18294],[8444,46571],[90366,94601],[11446,12370],[97803,99332],[51268,63980],[12040,51161],[96387,97822],[39979,95287],[63245,98283],[57761,90924],[96647,98520],[36342,55537],[63724,93330],[78270,82731],[92383,92484],[36382,75310],[15530,62363],[96409,97886],[31103,66411],[91102,92736],[27857,94634],[75087,91299],[97458,99993],[20963,36763],[48317,65865],[51357,74313],[9781,42674],[78586,81959],[48441,85205],[83259,88855],[41642,48371],[27289,54898],[91366,96286],[11914,36228],[63018,93137],[89992,93390],[36762,78099],[13072,49899],[41308,63866],[18676,30433],[5310,81853],[94196,95019],[29453,93597],[32434,79229],[89569,97425],[58751,66512],[42522,64250],[96490,96905],[6267,27097],[60788,91297],[968,38265],[18335,42990],[80773,81396],[70008,78570],[8229,66114],[60053,67672],[18939,19311],[774,35020],[5082,93754],[77,6687],[85532,85600],[92743,94238],[8339,91838],[78903,95625],[27149,73883],[28617,40233],[23169,83129],[60880,65346],[32575,70452],[10898,52573],[89613,90865],[9829,28699],[36634,81793],[89219,99945],[26478,63065],[66709,81109],[81850,91953],[53965,88309],[11399,73407],[11345,89589],[52198,71746],[17302,23169],[91324,91609],[94204,96446],[62635,95185],[40036,89141],[67078,96141],[76103,86885],[56854,81828],[19576,20002],[43231,86918],[21766,43613],[12388,54485],[4770,63583],[85883,87356],[69525,92362],[94926,97398],[29141,49412],[2815,90800],[57293,74224],[52644,54099],[93844,99148],[51090,75742],[11344,47807],[85880,95790],[36770,39104],[83358,99665],[81865,86824],[14430,45845],[81543,85688],[59417,63870],[51889,54131],[59599,66042],[17932,67747],[31297,50195],[11424,42854],[4017,75254],[91243,97921],[36625,95464],[35548,46372],[18293,36637],[55259,79757],[28161,95081],[26846,94403],[19738,22497],[95885,99911],[34085,84506],[8915,25174],[96741,98002],[787,36498],[25954,36149],[34648,41199],[31368,38118],[41271,83412],[1276,32108],[27347,79846],[59995,83347],[66605,84967],[78096,80551],[56257,86406],[18072,21011],[63583,80433],[89953,99099],[53130,61233],[77661,92155],[10466,33153],[65172,96331],[96760,98757],[29572,87665],[38320,95016],[70273,80985],[93906,94959],[44653,65574],[2338,20909],[41339,90894],[19586,21941],[73390,83553],[58386,71643],[13012,61266],[82011,98620],[84451,90909],[75775,76150],[12085,68772],[41117,44173],[95749,99256],[62494,69636],[81516,91323],[95492,96782],[68920,90759],[38700,79596],[85724,94617],[73843,89142],[35732,75566],[7100,28716],[94565,94920],[3475,92938],[19242,20108],[17445,44815],[67646,92318],[56869,73602],[89177,96351],[50027,53590],[19712,96848],[54617,58457],[76936,88939],[90364,97111],[43274,69101],[55187,95729],[18784,37603],[79826,81710],[2313,19642],[98292,98696],[65504,75798],[19967,33890],[62151,98598],[24263,49793],[28420,95960],[30886,61930],[20471,27412],[25492,76497],[64464,76957],[75529,76242],[98750,99312],[67164,72944],[88622,91136],[10731,29670],[46363,98186],[35793,87261],[55351,72647],[44437,97799],[34709,58385],[69731,90360],[14702,99922],[52472,83628],[43815,96570],[94947,99929],[77614,97925],[5703,54934],[71459,91417],[41421,42262],[13453,21142],[97337,98443],[33278,90119],[7211,68161],[59083,87451],[31415,84139],[16804,88752],[33680,58207],[6789,99910],[90190,99398],[94823,96268],[81305,82755],[26987,71271],[82232,95070],[32222,50876],[81634,89433],[20483,39861],[91891,97603],[98961,99769],[68307,83218],[52809,90709],[60055,86394],[75853,92089],[4288,49088],[96200,97465],[42471,46460],[54134,62746],[77921,81537],[52484,74574],[89741,95054],[94854,99685],[79622,85564],[44646,91436],[35146,74766],[99594,99788],[1858,68256],[81173,89116],[50861,99122],[88069,90927],[58025,74802],[97512,99832],[5091,27780],[10927,86808],[40877,89981],[853,90239],[62099,86174],[9900,51610],[76399,98849],[16762,77944],[12041,49175],[35722,64262],[42379,95278],[99437,99970],[96872,96920],[44777,76362],[3243,10456],[12961,27073],[33513,87271],[72483,89131],[41113,84423],[45176,46472],[69943,87826],[44084,86521],[20003,72134],[43423,85099],[77885,98115],[71188,71308],[76772,99101],[13364,36901],[62073,93563],[13068,49097],[47156,78949],[64526,86028],[27428,39506],[34271,95092],[71146,85775],[14628,30016],[80873,81765],[63308,68267],[82883,93417],[41494,79335],[16700,53030],[83092,98082],[78471,92441],[89790,97865],[78880,99297],[72120,85155],[7736,18391],[58130,93917],[25897,85221],[41437,46683],[14261,69032],[39877,84846],[12045,27443],[97548,97574],[64975,75410],[78933,83189],[39401,63382],[52209,81975],[85488,99986],[84849,88011],[83060,83098],[69839,89380],[40492,79400],[92565,99052],[13497,62427],[85791,94740],[65371,79088],[92503,98187],[11817,56497],[82031,95607],[48768,75038],[63113,68037],[91944,94697],[6983,96139],[62263,73701],[20791,76663],[46407,88736],[78313,95224],[26704,40728],[59614,73376],[89717,90913],[14859,46340],[84221,90718],[84871,85704],[21539,94772],[69878,81624],[27776,34144],[16701,60887],[43551,95730],[84320,98330],[16912,76196],[67355,91920],[74813,96936],[74508,76707],[80130,95520],[797,12378],[97707,99579],[72201,92658],[92496,95231],[58610,64935],[47363,99002],[382,56132],[71082,96937],[48198,92677],[24990,81531],[58760,98427],[9932,85186],[11659,69171],[41178,79253],[49835,68502],[78735,95357],[5492,22489],[65235,65543],[81531,98020],[59307,65076],[28415,31725],[29708,83044],[70148,75532],[87725,96649],[61907,95365],[44856,74708],[92953,96541],[24563,73518],[52245,92588],[41823,50302],[27211,89245],[3355,62369],[16454,57285],[68146,94343],[27159,88634],[81849,93098],[9334,18277],[41738,63039],[25375,61724],[81571,92295],[16565,68696],[80755,94260],[80798,84938],[8675,90545],[96832,98004],[25202,41200],[45315,72896],[48603,74579],[7139,30536],[80154,81130],[65760,76574],[31549,45652],[38949,96692],[44000,56984],[59559,63237],[92134,97783],[69708,75209],[68121,77093],[54112,92594],[4656,4986],[98363,99374],[25198,90776],[95059,96135],[3084,97532],[55002,89708],[32368,94329],[69249,96270],[53655,66207],[48922,74769],[36158,52760],[55630,62967],[5378,21763],[5526,57366],[32537,94728],[89102,94648],[91213,96617],[89704,93226],[93771,94931],[54891,78745],[67570,75161],[86651,98163],[26314,84915],[14336,39137],[94581,98271],[12275,45344],[14911,69233],[57635,79062],[68313,70517],[20316,67544],[30551,56437],[48027,77772],[59539,97828],[13456,49952],[92924,93248],[70047,76887],[37310,47586],[8885,55841],[2573,61391],[48903,72021],[4407,17202],[98062,99645],[71091,86749],[78479,83489],[46803,47286],[74459,82489],[67839,78048],[3604,10087],[90520,97627],[80718,85137],[49692,95449],[23020,43156],[42091,86128],[41107,91755],[47710,53105],[82171,85510],[6667,59787],[73928,76500],[3503,29036],[8720,41551],[12967,54443],[39429,67456],[62395,77180],[53054,70590],[29948,94103],[86902,89779],[31212,97478],[8511,79001],[10775,39494],[39364,99405],[60350,77447],[98053,99244],[51672,63587],[85672,90861],[57662,94128],[29026,30168],[19613,37964],[14839,21480],[56405,99287],[57576,58400],[19215,81643],[33753,35946],[90144,90567],[72700,77296],[56141,58757],[51299,92883],[17578,74056],[55487,89200],[38582,60632],[29642,95419],[13799,75873],[92072,97983],[4693,33801],[93013,96461],[77218,77264],[19049,79308],[72597,88562],[68057,88392],[89786,90876],[96933,97398],[81925,83337],[94091,94836],[76456,94933],[25616,47042],[18828,29215],[24545,94707],[59311,75673],[6495,36844],[36905,81334],[5978,68654],[99633,99794],[83653,88702],[85618,92558],[37060,87104],[98864,99764],[26668,95249],[41306,98690],[69243,76385],[6978,22972],[72273,76124],[48597,62474],[78441,94458],[80478,98229],[29382,80467],[6468,9777],[13717,93774],[89562,98416],[32964,41788],[71800,97066],[74127,99265],[61686,94009],[34712,50899],[60444,73776],[85196,88853],[812,89746],[47420,93335],[53367,62897],[98656,99932],[28379,68696],[96273,98451],[29184,37450],[69096,82762],[31967,60602],[47656,99273],[35036,37303],[13124,45730],[91833,96362],[79771,98022],[43005,54779],[7925,35661],[85014,99265],[79161,83287],[81996,91240],[4382,93381],[2079,39452],[15157,33375],[78266,88469],[90747,95632],[37796,44456],[14908,86449],[48857,75048],[83434,88623],[16702,86280],[28478,91100],[86188,91934],[48285,78777],[58538,74260],[60115,98441],[64729,65892],[93449,98983],[68936,91298],[65518,78548],[62102,73085],[525,18208],[6886,43317],[54859,93769],[57364,98995],[47414,71684],[85167,88405],[39117,53267],[78391,94108],[5823,82388],[33229,68475],[14896,89077],[80740,85274],[63261,82787],[43649,70922],[76666,92479],[3334,26614],[94163,95390],[35889,91155],[64253,83838],[71966,72290],[59640,73592],[74144,79039],[19782,99804],[33977,49974],[85190,94178],[85034,96024],[38019,44208],[71080,88049],[27281,84867],[90533,90851],[95945,99845],[48703,98678],[43140,52489],[27636,73507],[1203,62858],[31221,64073],[98072,99347],[83479,99544],[62121,85823],[5482,69249],[86002,86494],[55804,57706],[7845,29884],[76585,93999],[74803,96000],[67358,85481],[82180,83153],[96116,97423],[45740,78013],[34681,72567],[65858,67848],[70982,82828],[61788,88010],[20762,39597],[97168,98053],[34080,54872],[42603,58499],[62967,79344],[53536,74920],[31662,99204],[30738,58091],[74042,94004],[53037,67434],[22915,25305],[57562,96433],[93785,96175],[56199,77550],[25196,44581],[24441,38961],[30614,79422],[93623,99761],[38644,45594],[12468,87011],[64394,94601],[30960,93748],[6598,29276],[32111,54302],[22189,58229],[37469,49343],[48946,92765],[19208,34711],[17947,49401],[79509,96593],[99797,99900],[7092,68965],[92448,97015],[70286,70975],[53069,60724],[58324,67503],[30004,66804],[48864,77974],[57966,63889],[16061,78492],[10599,90950],[50904,99561],[29706,78433],[69256,70456],[87980,88374],[26657,65428],[81314,84121],[60036,94494],[28560,78201],[11664,57488],[99772,99835],[20374,32101],[34363,59340],[47759,83792],[21129,81163],[64789,80553],[15760,58974],[38171,61712],[18768,43947],[79685,93453],[78708,92369],[66838,67279],[44860,83353],[60923,92070],[95212,96600],[50829,84589],[94033,98600],[1999,52499],[90776,93308],[5728,72761],[44120,54233],[36934,61712],[99629,99955],[53048,55783],[86717,95741],[99924,99981],[76369,78544],[81518,84577],[35042,43351],[89390,91075],[24895,34597],[94860,95950],[47063,75210],[87480,92199],[57839,95427],[20865,30606],[26926,33507],[85813,86833],[99837,99845],[75662,99152],[38867,79786],[37014,57159],[10493,44437],[48289,94505],[31369,92058],[78888,84571],[61572,99199],[29058,89503],[62192,87698],[89256,90666],[30070,69223],[46593,93672],[58275,81994],[67001,81842],[27099,66385],[55850,91768],[72078,79417],[83043,99754],[79019,92634],[80348,86940],[66827,95079],[49486,69741],[18097,95327],[42549,95589],[17596,25834],[39268,97203],[68729,98193],[8115,12565],[45558,59430],[30554,44335],[25169,69309],[74401,98517],[83468,87865],[17096,82560],[29440,42818],[80974,91839],[55029,67698],[50285,70570],[87369,92266],[47944,81219],[95773,98397],[11845,96617],[51557,93025],[74581,90193],[2183,12823],[44824,65669],[9716,65200],[40709,84517],[12520,37454],[47562,94564],[6539,9654],[76884,98105],[4385,15119],[35236,48843],[17116,22823],[58078,84609],[52715,64143],[30180,82119],[38190,91358],[85356,97847],[14450,62918],[24088,45083],[6595,76872],[80122,95804],[66485,74844],[40400,82498],[7734,12861],[37059,83081],[23029,65539],[23381,57807],[43212,48863],[63821,82476],[59454,80446],[36222,96670],[82187,87875],[1637,64495],[40445,89795],[58970,98854],[16895,43961],[5898,44081],[66163,67274],[84623,99832],[99515,99962],[75959,81208],[54048,90486],[68708,94762],[86307,99506],[39750,73731],[76569,99212],[9068,51807],[29125,35413],[26503,99992],[93672,99502],[28383,54287],[73258,73390],[37027,78086],[29861,80573],[98348,99507],[29246,75778],[18703,39620],[82860,87234],[87492,87618],[29064,79847],[7666,74276],[80079,99084],[14770,29434],[57056,98165],[45571,80827],[16716,99980],[47796,67625],[6018,18116],[81997,84039],[57093,63417],[31003,61745],[74655,75959],[25052,68000],[87052,97579],[67455,91231],[66075,78923],[18409,68105],[47645,52906],[91005,98476],[82534,96245],[23933,47378],[5411,32091],[64754,90700],[5499,31601],[55327,67569],[51414,76674],[87423,89636],[11014,64524],[38214,91188],[39568,76943],[89026,96612],[42369,58277],[95728,96957],[93625,97350],[6581,58184],[84154,94168],[36988,61242],[46427,81161],[7160,11607],[1065,82251],[72815,83234],[26365,46215],[88968,89703],[12277,57720],[12629,67519],[24777,67640],[81643,96452],[24322,81277],[59294,95292],[34192,66555],[65285,90946],[77635,86041],[88121,88693],[87454,90608],[63008,71639],[70227,84532],[22679,73334],[99627,99890],[72696,86278],[43237,43818],[22068,96640],[38702,68529],[19300,98852],[80785,95850],[1135,50146],[38015,81083],[55575,94847],[38870,64089],[152,15440],[81447,90469],[91777,93631],[72748,81061],[77591,90820],[87424,98889],[32696,72695],[20436,22051],[17687,61571],[63349,80182],[85733,89113],[9165,44565],[82254,90131],[56188,74683],[46386,54931],[47909,80830],[65980,97076],[21449,46660],[81306,86623],[98056,99249],[35132,97568],[75002,75936],[73489,78965],[16873,55509],[67482,92737],[79178,87708],[69093,87497],[89080,92001],[83324,97961],[90314,92419],[4505,22580],[12681,25087],[54727,72970],[82920,85735],[26083,79518],[58255,94917],[28360,61625],[42275,74819],[92065,94617],[3895,96038],[75044,87304],[46239,93309],[8104,24481],[9414,10948],[86352,98131],[29312,69219],[9475,34369],[96052,98505],[19394,82320],[55045,96165],[97782,99312],[58487,73864],[53326,68496],[33708,70221],[40942,66430],[20441,38223],[15699,88308],[21553,99492],[10142,84229],[63948,88856],[86227,88277],[40438,75134],[4609,80725],[32985,57983],[42760,53277],[77612,96720],[1156,18890],[88020,98443],[59620,92101],[68606,84765],[6655,66718],[39129,77890],[60544,98977],[24110,60719],[94101,98635],[42567,90154],[65574,76366],[96517,96801],[92252,94266],[10807,97271],[14619,70445],[74684,84346],[40913,87756],[26328,78882],[16673,60575],[57599,92599],[22186,78307],[31616,32657],[89195,98920],[87388,87915],[23498,50715],[92363,94105],[40127,67416],[25205,60789],[17382,55027],[28029,67932],[39895,45351],[53075,55951],[64188,84170],[60603,65995],[22077,82086],[31745,63048],[16187,51408],[72059,95801],[32071,77997],[13588,25447],[78938,80085],[11258,35430],[68771,75635],[45541,92369],[39829,62358],[93315,93583],[44566,46081],[62385,91074],[17449,35228],[1668,88415],[58113,75924],[35473,59945],[94317,99204],[37404,44312],[65430,70686],[80647,93239],[60046,79906],[68182,83205],[80653,82416],[17226,18540],[53427,53674],[52268,57924],[30869,66180],[36832,85154],[13681,50023],[13189,28676],[2528,34077],[55527,99416],[49762,77284],[69700,99871],[82642,99070],[29556,52811],[31522,57729],[60069,71478],[18228,30990],[56957,91447],[69203,77259],[74766,93003],[7454,75997],[61449,76785],[38768,55042],[55750,81653],[61394,68661],[30501,85740],[93407,99985],[96621,99764],[65073,94656],[33183,48841],[55591,61246],[44851,60370],[60315,90844],[13801,46386],[7673,76726],[40583,98315],[40368,68822],[96599,99564],[74390,76216],[59407,77215],[36578,82160],[61832,62549],[16735,92504],[65990,87102],[2997,61307],[5301,53612],[65732,87885],[74288,94833],[20260,43832],[31881,81968],[37628,62248],[96626,98772],[21245,33695],[19154,67225],[93882,99542],[54965,91992],[68168,72182],[3959,29301],[99138,99228],[85660,95591],[40746,66519],[39669,47358],[50013,63756],[88142,95889],[45847,82134],[35734,70146],[51833,69448],[15606,24908],[51430,83471],[57838,90467],[69486,80366],[12003,79427],[56400,85510],[23284,89754],[89872,92647],[71217,88584],[72481,99387],[28414,74577],[6129,91825],[21802,29750],[11415,96079],[94194,96367],[72872,77782],[69330,95858],[94678,96433],[32038,60388],[8756,64848],[13118,45925],[49952,65863],[87971,88632],[17865,22938],[55542,76633],[28264,44677],[14654,81289],[12761,87121],[61851,92913],[41212,62972],[12498,38396],[99834,99936],[32848,64858],[42258,61876],[97866,98831],[42288,50927],[83371,85011],[57131,79332],[88884,93061],[56017,83923],[4428,82419],[90551,98952],[49877,97974],[87055,93575],[45456,99885],[67601,80237],[246,34552],[5268,67194],[64785,89759],[51952,78489],[53267,89959],[28248,82324],[23088,78246],[22534,83418],[75638,93072],[55101,98097],[9130,64529],[41620,78311],[64289,74990],[45032,79849],[45896,84207],[49181,59201],[87986,94396],[5657,17907],[22809,43034],[49175,63846],[62033,80801],[1913,67459],[72293,97604],[87802,92573],[31429,82697],[90987,92510],[86466,88545],[83267,96681],[30483,94341],[32844,95681],[57797,89849],[78415,78416],[27848,81548],[70531,99194],[55855,62235],[27290,77306],[14106,70496],[22592,72519],[53407,59456],[69439,78349],[18948,32426],[59253,83830],[30427,87952],[14685,80434],[88380,88740],[56590,80200],[68826,93466],[23058,51624],[31645,65074],[43829,70281],[54341,67833],[72854,76724],[70520,86101],[84787,93579],[12699,13866],[90944,98920],[35166,65694],[75196,81422],[50986,56209],[50820,81555],[70189,74085],[14375,95874],[72497,80394],[18587,46665],[59801,65818],[26915,43676],[58880,85679],[30231,72993],[53976,79680],[33098,69697],[33641,90346],[62802,84715],[27557,83329],[16613,92245],[40072,79933],[61825,80402],[79266,80640],[74034,83806],[13056,92095],[65031,78274],[71948,99487],[88843,97882],[90479,91637],[92063,96520],[3973,49009],[23212,44006],[26507,46309],[2118,85645],[39755,54647],[58950,98138],[40081,45280],[74522,84363],[27513,98107],[73047,83210],[58154,80826],[78447,98638],[16784,23311],[31317,38728],[37701,73536],[83035,94408],[67703,72644],[34635,47473],[50522,83365],[4947,49458],[67770,97081],[54295,55909],[51060,84535],[87024,98070],[31468,93699],[65069,70250],[5934,46143],[21231,97751],[48644,97113],[60887,74212],[75090,99809],[31303,36944],[99796,99865],[96357,98792],[16749,96563],[15311,58996],[68984,73678],[28487,97196],[29590,41407],[53344,88562],[58598,63478],[11429,87165],[6347,48681],[83810,94816],[26210,32117],[13783,34732],[47235,97665],[39792,52991],[14795,38089],[42982,56629],[54650,82638],[68735,81879],[22248,87221],[8567,80226],[62815,70457],[32266,81348],[45465,49333],[87191,93260],[67519,72758],[81436,89697],[14235,46755],[90428,93164],[24131,82952],[47913,77684],[9639,92793],[32997,84166],[49404,53500],[51176,60106],[67275,90574],[36577,64661],[4540,13432],[19006,85727],[22359,50771],[70540,84465],[21337,61777],[54889,85440],[59875,99459],[32801,90350],[97335,97535],[59382,82471],[70255,73609],[87382,95615],[11937,24441],[47689,74099],[11568,49643],[50646,64000],[77434,98152],[56648,76469],[69868,70662],[98663,99139],[31656,61915],[70352,83899],[79775,89669],[98998,99000],[50816,92208],[89997,98094],[70355,93607],[61350,87685],[51515,75432],[72657,77115],[84716,97495],[21825,79357],[38776,62582],[65192,90711],[15168,39959],[82765,83457],[63414,90566],[1554,52487],[75774,78802],[46029,49554],[75261,78490],[14700,41081],[30135,46266],[17952,45891],[6814,20868],[73012,92103],[38619,73248],[82264,85743],[20994,46659],[34774,49719],[6143,72233],[68565,79419],[94776,96109],[14023,16223],[49804,76639],[92036,99227],[38712,58303],[80001,82730],[12215,91213],[33701,62183],[38814,67227],[25962,45568],[70912,72853],[94727,99843],[69460,91744],[93497,94214],[70027,81347],[22087,39871],[77958,91682],[40151,51381],[57097,86026],[74227,82514],[955,73952],[20711,54408],[30981,48540],[99867,99896],[49171,77914],[46520,54849],[75417,94836],[31705,42651],[53171,75668],[8378,10777],[28407,63762],[59517,91571],[81411,85737],[87018,93693],[1277,78138],[21492,87814],[49962,98523],[87186,97344],[81143,94056],[48773,76740],[53651,76843],[4601,83968],[51079,82109],[73358,81337],[19254,89956],[88250,93713],[95077,99204],[79618,82619],[42451,70697],[92803,94421],[3946,17901],[10831,51019],[28367,31735],[44215,82086],[13350,67566],[35584,37734],[25281,46826],[147,95069],[66021,77393],[90569,98224],[97264,97318],[12839,70493],[48590,53966],[26104,33610],[61704,70329],[49748,57089],[21887,71719],[12633,71455],[47727,62422],[24968,53906],[50931,63348],[83947,92071],[89947,97872],[76853,77197],[6832,96603],[43808,59116],[6027,78269],[86556,88908],[40245,65909],[58787,93987],[95870,97253],[81804,97817],[75293,91639],[74088,87484],[63263,76939],[30697,97335],[58738,65612],[49706,89241],[85550,89771],[85085,94817],[77076,89133],[21085,31416],[64018,66297],[88021,99405],[26568,84321],[89691,98657],[80228,87505],[83382,97222],[85489,94490],[42846,64536],[65827,86727],[25632,98726],[28567,68383],[29858,78023],[32678,75478],[69919,81778],[26332,49271],[16099,98611],[88421,89542],[75832,95324],[43742,64930],[90558,91124],[21920,59880],[97725,99662],[19605,90922],[13371,15658],[75888,89293],[36249,94915],[65093,65879],[17913,73328],[13087,27758],[11912,43008],[52102,65789],[86226,86506],[79111,94752],[10985,99763],[97622,99068],[27975,47098],[97441,97770],[60758,81268],[57233,90825],[73738,83291],[2260,25187],[55074,95596],[40015,99593],[60194,92867],[2391,22985],[9958,92386],[78152,87847],[20190,63635],[88961,90155],[93401,97365],[25806,66253],[8116,31281],[86681,97690],[74915,87178],[98242,98329],[86484,95119],[79090,79978],[31561,74171],[82811,84107],[49648,79293],[50283,57923],[64219,69071],[270,59904],[8198,89889],[786,90180],[8036,56127],[21575,98761],[99225,99670],[74302,85708],[99073,99632],[54351,64151],[17769,30222],[4863,38168],[83857,92406],[75459,90877],[73999,87592],[69208,88961],[51948,71826],[51786,94657],[54435,60035],[5294,62231],[32143,53776],[62961,64831],[82333,86670],[41563,55982],[7926,78632],[31828,88042],[35537,93537],[66762,87177],[84960,90054],[78840,99770],[13861,51847],[99346,99625],[67064,96917],[28607,63577],[75171,88051],[54333,63332],[11911,56728],[14633,44243],[54655,83248],[38349,62359],[74965,91503],[16375,92070],[23980,44084],[12061,19441],[14424,46910],[48228,96803],[79061,84564],[87618,98438],[52733,98363],[84858,85236],[92713,99082],[6461,32323],[55920,79802],[1606,10792],[25368,89339],[37055,52893],[18326,76486],[87871,94115],[94052,96948],[16342,20451],[23178,83486],[90021,97848],[87243,92262],[38993,53912],[47462,64166],[66587,87443],[67759,97552],[58628,91777],[3804,64263],[50396,84157],[1308,57651],[76288,85620],[95092,99162],[74584,99276],[42868,50958],[95772,96869],[42033,62495],[60334,98317],[38211,88671],[75796,88502],[4329,81022],[77949,78470],[3114,45679],[21119,54497],[19814,63406],[25776,95670],[86,80758],[4659,16649],[16169,58633],[71919,96272],[70428,95888],[82703,94500],[56683,58364],[60134,62944],[91355,96681],[52541,82067],[99638,99647],[68476,82694],[58602,61140],[68543,73212],[64065,88630],[73389,97569],[44183,73485],[67895,80766],[50586,93839],[55402,86014],[6726,93432],[88742,99874],[23780,92941],[50993,54099],[4853,18262],[11101,33095],[92236,94794],[3671,28017],[69983,70715],[59544,66498],[46869,89021],[6790,85929],[64176,76671],[7752,41839],[28672,89218],[99451,99958],[39738,70952],[46180,49218],[13494,40218],[86824,96306],[62925,86955],[80101,99650],[41283,68882],[81019,93769],[33962,40440],[24939,31316],[99621,99638],[6752,59370],[38966,68885],[64555,87284],[98407,99351],[79164,91190],[85213,97011],[45114,85135],[17478,74566],[7643,92253],[61725,80068],[85483,92442],[90053,94947],[13073,70256],[2941,84113],[23137,59729],[16170,57929],[20141,35928],[16807,89647],[80005,94148],[48955,49663],[9731,51240],[24476,35547],[79615,80707],[20331,58074],[37945,70677],[79273,80660],[5640,12912],[91292,98983],[31046,57363],[43086,65097],[83519,89565],[67115,90799],[94870,96724],[39273,90075],[15206,52165],[92505,96223],[69264,88682],[58308,88242],[68143,70388],[86235,92161],[42027,93161],[72418,98361],[29812,77760],[13886,21608],[24879,48214],[57355,81123],[72330,81499],[39482,49673],[94358,96660],[69500,71583],[94873,98217],[51819,93067],[36317,40200],[74798,98568],[43121,57971],[92219,98947],[50814,84837],[39171,39574],[45234,97047],[86953,89764],[18804,35042],[44733,56451],[50143,77497],[78556,94358],[74040,98031],[81495,94710],[25244,66418],[59999,76320],[57641,86454],[65960,74447],[18864,90905],[41531,60853],[41456,47672],[92351,98313],[62351,66556],[72556,81299],[38182,55706],[34817,87544],[39758,73584],[96543,98517],[98476,99575],[70142,97398],[92315,98821],[59229,82518],[54161,61705],[55933,85286],[71950,91502],[24393,77989],[60255,96524],[82586,97595],[88800,95783],[37138,58636],[8560,86765],[55430,90501],[58743,63238],[61552,65124],[62490,89545],[9679,25995],[5207,11225],[48745,60500],[96606,98470],[91465,96654],[52955,59309],[65022,85558],[92594,96482],[64001,73959],[29547,73928],[33447,82195],[51827,58068],[81440,93164],[98020,99016],[66455,89694],[11727,62919],[66347,89197],[11743,61355],[38716,75266],[4494,85159],[84102,89015],[95301,98771],[96483,96696],[62388,89113],[23583,98913],[16617,81216],[62040,89213],[94487,95243],[60899,84663],[45361,53015],[52587,85543],[54177,95228],[67084,75571],[94904,96582],[65456,99625],[47399,70484],[63118,69649],[86664,97498],[63250,98355],[83582,83829],[27,6995],[35213,91102],[26789,71065],[62403,90674],[9142,94515],[93690,99189],[89054,96369],[14739,77752],[59942,71012],[25919,88256],[16683,92596],[93769,98600],[30009,73983],[12043,48577],[42579,54614],[82260,89356],[44553,82110],[79071,82686],[64830,91427],[79891,85938],[24821,62626],[43599,67254],[71610,89982],[19564,52834],[87020,91376],[7846,97866],[74702,76352],[47797,98469],[40528,78496],[7828,66840],[20247,33734],[26249,89894],[63731,92910],[87521,95678],[2271,22660],[16266,37033],[98648,98827],[24574,39317],[4847,73181],[9314,90893],[59916,91704],[73629,95049],[79649,98043],[60954,96063],[71050,79108],[89497,99113],[27473,81202],[42963,81549],[90077,91591],[99288,99889],[746,16914],[54213,77826],[93173,94078],[36148,38548],[74669,87709],[1816,51084],[96844,97480],[92103,98276],[2320,65500],[50388,94947],[98602,99095],[27010,32806],[81986,95476],[78639,90967],[41679,82689],[16910,47330],[36526,44779],[87292,99736],[26100,75617],[59592,73713],[50146,62375],[88272,99726],[84855,87456],[66909,93137],[87242,88389],[68805,75047],[75326,78463],[79361,95292],[54634,73482],[6363,77880],[36383,84721],[35784,65527],[7456,26603],[97060,97776],[87368,90249],[25421,96244],[45145,48728],[14364,56566],[8745,85727],[60936,84959],[26232,47657],[41259,47117],[28701,52959],[10855,65857],[90794,98168],[96685,99734],[56254,77955],[84418,87743],[17477,48439],[72151,99270],[78300,95929],[56870,68403],[6985,32707],[52168,76637],[3696,87461],[16631,49289],[95201,96650],[76690,84322],[90403,99357],[38512,91897],[80629,85550],[59529,74193],[19766,66502],[24272,75956],[71108,92179],[22876,59300],[30160,67295],[99838,99895],[61992,82303],[30263,95496],[78198,87456],[4356,73594],[29968,42065],[73206,93970],[84050,86940],[48777,93109],[87092,89023],[89496,94997],[56819,84129],[19491,96197],[18246,65003],[20106,26142],[70666,88722],[24872,33619],[36005,41392],[22557,56335],[65154,69283],[56378,66285],[59565,80699],[81459,83395],[51599,54269],[70080,88597],[33561,45493],[95307,98227],[62455,84615],[18519,96249],[40319,51425],[52693,52763],[25792,77337],[5099,83087],[47076,57045],[27695,99315],[71781,77147],[74953,79848],[46301,72690],[72914,94519],[50462,66553],[98060,99332],[57351,72744],[25162,71081],[74392,74900],[97608,98030],[64889,72327],[48625,72545],[85666,87880],[15466,27459],[87798,95053],[95545,97825],[15840,42214],[61654,63318],[56311,75518],[8296,41760],[51010,73920],[30158,61003],[78829,89976],[85846,91705],[13299,65895],[88061,97408],[81296,98705],[75406,76037],[19722,43078],[18706,81654],[10689,87353],[75812,96788],[60285,97748],[67872,74826],[67274,77408],[7015,75481],[60034,85928],[43376,46055],[1864,3403],[73063,75425],[55922,64127],[87810,92133],[82006,92658],[1733,44897],[61627,94619],[14445,87646],[59510,65590],[70732,99209],[67370,90208],[27240,93961],[55307,66953],[34660,59870],[21186,65232],[90336,98578],[47627,94658],[76350,91063],[77534,87210],[11734,55483],[34634,57220],[50846,95105],[20456,63189],[99648,99835],[16297,76055],[22370,28081],[29337,55994],[92004,95028],[40173,58436],[37297,80635],[92837,93363],[61494,67681],[21261,24415],[79681,87693],[77666,80431],[19221,61928],[94793,98968],[3321,95761],[86768,90539],[39047,47926],[67097,74735],[12372,68409],[52380,55567],[15086,70784],[26180,47596],[66120,86928],[14145,43860],[96597,99928],[39616,48182],[50348,55793],[30924,58259],[354,11743],[25406,54607],[29539,41614],[6152,22926],[30579,83740],[9834,50480],[61295,80221],[17192,19742],[49213,70186],[42124,53156],[297,80746],[14787,72405],[17088,32630],[85279,91564],[69380,73924],[69055,86480],[35835,61770],[70898,91291],[61853,78834],[50684,76110],[52936,74347],[51969,69368],[2001,88912],[40521,76064],[15570,35748],[52289,77248],[43500,72708],[59549,61296],[44781,65070],[91421,97949],[50610,98236],[73727,86651],[84365,85283],[79157,88386],[38006,46692],[4143,79480],[80023,81780],[15165,23031],[1353,50171],[20253,24675],[48036,83150],[60995,82858],[96369,99922],[82706,85287],[3490,78612],[95131,99918],[8715,16383],[10669,79573],[56385,80105],[52502,70891],[13160,25842],[66649,98596],[81679,92384],[74931,98139],[33410,83219],[36186,64372],[74691,90507],[23737,83734],[60436,92338],[39890,79146],[83690,83732],[51415,61194],[6429,75364],[30203,39344],[60697,95970],[41912,72315],[58456,75953],[5249,59959],[46283,62786],[23325,39852],[77510,93977],[61700,93696],[87985,91967],[30394,35493],[23287,97953],[47114,73377],[10783,35725],[49332,87799],[80016,92888],[74910,99543],[62449,84290],[81033,99533],[47906,68331],[4389,6871],[77705,78396],[44427,55463],[95444,98238],[73820,92188],[1200,49368],[18622,87211],[57875,99206],[38471,78168],[42507,71491],[37196,95266],[93306,97994],[49548,74324],[93137,94898],[76517,94666],[26424,97740],[10344,21528],[35500,41059],[16712,28745],[17052,99958],[38532,38534],[18992,20826],[80722,95666],[85808,86162],[14090,43163],[5441,82765],[69557,83928],[44251,97069],[25623,70815],[29408,84067],[45084,75207],[82570,83179],[9552,55203],[44774,51916],[26702,62279],[68667,69750],[88952,95503],[52362,83406],[10116,44156],[13629,29752],[33352,67051],[26279,99051],[65910,75009],[98365,99257],[25998,99425],[31234,31965],[66496,91824],[37963,58962],[45520,93265],[94825,97413],[18447,22313],[60058,61381],[8839,56959],[66633,91843],[7339,95018],[83533,97253],[3517,26256],[6592,53132],[68732,83067],[69481,79588],[9642,66112],[15823,98285],[27358,94307],[57483,96316],[87893,96618],[54178,64721],[50566,52575],[38192,93375],[4592,37865],[34732,82074],[37826,83607],[71889,86742],[99445,99519],[20557,50893],[89034,99439],[60205,87518],[13410,99883],[35763,56671],[98455,99657],[18814,87644],[33877,99005],[67897,73398],[84183,88734],[92416,95143],[86880,97216],[91927,96463],[58095,82401],[67912,90759],[71036,74221],[57706,76646],[60059,96064],[54465,71493],[83737,93738],[98853,99772],[60683,84064],[55664,63264],[66319,73152],[86154,97896],[83673,99101],[90074,95076],[15278,32092],[65993,91263],[16851,73650],[14416,69269],[79762,85271],[94632,97413],[79429,88305],[92708,95808],[61392,91766],[85606,91123],[89069,98084],[42383,47800],[41822,82384],[36147,38154],[20969,86692],[62271,88717],[91107,94100],[52545,87871],[13481,68899],[73888,88015],[52121,77934],[93236,96465],[76276,90664],[5402,63157],[81779,82361],[87156,89587],[33592,57810],[7327,85085],[27967,59446],[23485,90430],[31633,58878],[18221,91894],[4257,97824],[17587,87719],[99595,99717],[6286,34901],[76373,85361],[54280,95764],[28202,77054],[43806,87171],[88375,98199],[87036,90145],[73320,77570],[3395,81608],[97901,98385],[27278,92445],[23041,45309],[31748,48375],[95137,95668],[82391,90101],[24401,27198],[11266,70484],[7679,14061],[77774,97831],[4126,92215],[14150,69200],[91136,97723],[25110,70661],[14766,48456],[45587,69079],[78187,99242],[90653,91597],[99203,99509],[48470,75197],[90912,97283],[93926,98864],[65234,76893],[5380,43418],[15953,49913],[47509,60821],[59751,81938],[50701,91112],[42350,46062],[96813,97468],[93968,98479],[91323,96452],[45310,86387],[90565,92991],[87037,99888],[31648,35455],[57375,86570],[1833,37087],[69184,93264],[84163,99270],[61334,94231],[68840,98031],[79810,91668],[63540,96618],[15660,35123],[73875,83868],[21637,73710],[5844,21019],[75670,86757],[18206,51994],[51575,71779],[37278,61788],[83211,86296],[65018,84792],[75513,98295],[59973,72920],[19089,50452],[83635,92870],[86541,91572],[5578,91352],[72487,88665],[98930,99019],[27188,83014],[11044,37501],[89498,94362],[7005,40032],[50436,96285],[95982,98607],[89729,98333],[77643,84995],[51181,98900],[40925,71698],[85556,89015],[32705,39659],[5155,13101],[32227,96728],[83162,97042],[82759,88402],[13063,37209],[36948,48272],[61745,95369],[83927,88916],[61710,77237],[83463,96692],[84269,99279],[52798,70985],[68507,97055],[13304,84149],[46548,94442],[80994,90049],[93115,96072],[2419,7514],[3491,22265],[75150,79690],[72482,76172],[61626,73608],[20836,70788],[7149,12879],[42442,81016],[18433,57747],[70585,72908],[58747,86928],[3461,93665],[83973,87145],[46474,48979],[61873,92456],[70641,74162],[67276,78814],[8358,44090],[15342,25265],[82733,88186],[67168,85372],[48051,70248],[97673,98835],[43433,97743],[14642,23457],[28417,93953],[74108,85786],[34394,38200],[76321,84111],[59951,66849],[54667,78264],[66852,94009],[24596,77134],[95099,96121],[14999,83162],[4617,66470],[14013,24367],[6676,52311],[80580,91820],[57707,62783],[23010,75156],[95856,97804],[82205,92178],[86273,86687],[33466,98847],[3750,82025],[80764,80890],[11707,60996],[31044,92311],[29999,91734],[71577,73284],[29015,32310],[77859,93982],[86046,95527],[55081,93482],[75597,79443],[81958,82013],[27258,84215],[46048,96729],[62738,74920],[18652,99767],[13879,38721],[73483,78656],[9375,37515],[63963,88278],[89151,89614],[62523,67704],[67767,93302],[93076,96225],[65644,71854],[4549,56990],[346,50681],[18764,92994],[28766,50855],[50407,52468],[6326,17171],[37382,96095],[10776,82523],[16173,21460],[60178,99547],[5239,21000],[26195,54353],[6955,69199],[30804,60177],[94440,95028],[58995,74125],[54189,80566],[34182,89802],[60925,99467],[20745,81508],[29958,95249],[70668,90319],[98936,99521],[82656,86573],[59436,83980],[55567,95439],[12365,26849],[79907,92886],[93202,97943],[87955,98029],[50638,68517],[83462,93535],[17405,29982],[969,86421],[9445,93974],[99918,99951],[7447,28831],[2081,30083],[561,46751],[54041,74718],[48043,51510],[35873,80134],[96126,98398],[86423,91817],[70331,76464],[31957,82175],[25054,79048],[82414,97171],[95930,97668],[27628,42825],[14194,22727],[27679,78421],[58823,72818],[67349,77113],[21115,31136],[98651,98971],[73717,90592],[68726,94150],[42838,51075],[35769,60486],[35522,55147],[87718,92613],[77382,93155],[76808,93644],[30487,90721],[89632,92401],[65048,68612],[73599,94406],[42870,72851],[1384,3653],[51943,85848],[13269,46354],[21078,23366],[38521,59362],[61977,65091],[95317,97163],[97730,98043],[2022,47819],[69505,79834],[52667,61061],[91928,96495],[93648,95344],[75949,92068],[10707,81801],[99152,99175],[91422,99980],[67543,98770],[99612,99614],[24395,92274],[51240,83263],[61558,79985],[88483,93249],[52536,94636],[47884,57542],[93839,99205],[88796,96158],[52711,83240],[26892,72317],[6648,71549],[36258,80968],[63659,75133],[33981,52791],[25468,33469],[84013,95646],[40970,61547],[21091,42296],[25228,37280],[13689,94011],[40834,56017],[76966,79537],[91310,99805],[34723,69956],[4256,53852],[79315,90768],[58133,59612],[90668,93163],[13470,76958],[52881,89659],[43429,75757],[96235,96886],[94738,99311],[50532,86027],[20361,28798],[39657,87472],[22171,65542],[61507,72415],[40334,46394],[2745,6840],[58505,68523],[73882,91254],[41398,83648],[74697,84227],[29183,74561],[14175,71561],[12982,52806],[91220,92788],[83654,93648],[96884,99024],[73847,74517],[52248,84969],[75777,80436],[12748,17781],[62724,79045],[27718,95163],[83173,92758],[52755,73837],[53725,80650],[61079,67583],[17941,93399],[95860,96811],[13678,36481],[85551,92371],[57130,92518],[96997,99704],[5336,75908],[29886,77146],[33605,39923],[52310,69555],[52563,68520],[79199,95679],[88120,91999],[27707,79066],[92941,97889],[68956,85839],[28411,77428],[12751,23262],[18718,83597],[52276,93292],[36825,96560],[94903,97131],[98075,98182],[93262,98502],[13053,69269],[93114,97214],[79708,84503],[20653,95217],[74949,78505],[42,18068],[21067,56790],[97111,97329],[47856,97223],[22522,22962],[8308,25512],[44363,74042],[67304,96407],[33341,42608],[6792,74129],[92630,99978],[17159,45284],[82931,94530],[7745,88123],[75319,95207],[95338,98364],[32555,86652],[36389,51672],[96234,96423],[45026,60711],[75586,83583],[97914,98561],[53686,81833],[4779,29545],[23293,23382],[69641,83615],[2826,53433],[4870,70459],[65484,72428],[76371,97197],[53301,58430],[50812,65384],[78191,97812],[85521,94182],[19797,81138],[64860,80865],[74429,84979],[68999,76677],[59240,84579],[91386,93966],[80146,82943],[5770,14818],[98997,99845],[70578,98959],[5993,20403],[56031,95726],[70792,96431],[65266,98414],[71550,86232],[84003,93240],[23314,77950],[61221,97147],[88056,88421],[12077,56598],[18781,51192],[58815,63345],[18495,88373],[26400,52317],[66431,76945],[53265,66093],[8636,69751],[96114,99044],[19901,44654],[78429,87028],[82453,87796],[35888,50492],[15212,22815],[45931,59971],[64282,97088],[29599,94075],[8397,25724],[6972,86170],[52016,78464],[54883,57395],[30798,55335],[83361,99646],[56368,86632],[2582,45952],[56816,78836],[29949,49156],[21678,58529],[26269,57782],[61569,81418],[45877,49222],[21520,67611],[94307,99660],[70673,88708],[68043,86469],[35578,94815],[23085,71949],[88894,93211],[84861,87368],[22434,33242],[49965,77626],[63346,91541],[28761,67061],[98254,99637],[18810,64154],[38942,91964],[41688,96297],[83544,83806],[8667,63093],[14829,14998],[68668,70925],[81554,92144],[79206,90732],[96613,98132],[70921,75915],[99236,99430],[46493,74670],[98341,98549],[87467,98876],[59249,72845],[65391,84742],[49159,58794],[45189,86066],[3337,87031],[16193,88398],[48235,67475],[57117,80926],[74851,93071],[97563,98717],[75814,76934],[74506,93399],[14768,46561],[10997,12299],[14169,69744],[22424,79146],[25798,70526],[5222,9265],[76900,81733],[5401,11368],[29067,39542],[42667,79651],[27990,86703],[73595,82851],[82532,95004],[48205,85361],[73513,99500],[86777,96175],[51313,51579],[5960,81669],[57950,65392],[78113,79432],[64033,97788],[23596,39032],[19858,97932],[18693,89293],[24435,37809],[85227,88697],[6290,50949],[24746,25882],[41665,44328],[34869,51522],[17641,25771],[90248,93059],[91979,93452],[9613,34761],[70716,99231],[58793,99680],[74604,89331],[87792,96140],[15171,59656],[20452,82037],[3407,31992],[15597,88500],[18726,84854],[55475,96924],[23264,72882],[40176,42267],[13652,45637],[60543,67245],[24259,99044],[55013,90923],[33317,48660],[78261,80211],[94230,98944],[601,80374],[64905,74705],[75653,96632],[11180,80234],[4171,31543],[63072,75725],[19418,77351],[87141,90219],[67089,76884],[12557,70830],[68398,83168],[34561,63522],[80933,83060],[92157,99264],[81599,95178],[64221,83506],[29621,40765],[7349,56728],[43733,73297],[91128,97227],[96304,98326],[23239,84325],[83112,90435],[57317,82493],[69809,84777],[62628,76769],[18494,61613],[85401,95489],[74940,75808],[76044,77733],[56421,64643],[78851,97841],[43359,79142],[55049,76519],[19391,41111],[19867,60998],[89692,96248],[79260,92247],[61043,64261],[70263,97921],[35138,41041],[93500,99708],[37732,85885],[26661,66201],[50294,72335],[50431,74351],[96282,99284],[70053,85642],[41856,96637],[34916,90509],[39352,46524],[94020,97182],[37314,80313],[5620,48861],[43945,53293],[61390,73563],[8189,34092],[66886,83604],[71431,71493],[1581,95184],[60283,78689],[89337,93691],[40122,57658],[68135,84338],[39953,84853],[45001,89250],[33194,39465],[7633,33454],[7521,16050],[70929,80687],[78202,90027],[92827,97941],[46265,51152],[36811,43727],[23631,38415],[74209,90195],[7408,92079],[20539,25674],[36965,85613],[26023,40850],[3651,87791],[90339,93180],[69086,87131],[19502,74186],[80385,93919],[58808,61601],[54249,86877],[43613,61386],[54878,81076],[80309,95919],[9526,43458],[26973,74693],[75012,80311],[41433,81833],[15947,69628],[4272,13072],[33326,73698],[95490,98472],[76273,77289],[62187,73220],[16606,73383],[5516,64451],[10082,83353],[96609,99252],[6813,74135],[80351,90407],[5685,21788],[70890,76750],[2023,91941],[53573,77400],[26113,65838],[82515,87453],[88990,92797],[64385,82030],[40114,96293],[49174,91643],[49467,55050],[95219,98511],[20101,46719],[249,57817],[68782,88109],[64378,88742],[52816,55866],[65452,91724],[42110,75149],[1128,19492],[94701,99958],[44597,94303],[79635,84430],[65263,73571],[52959,53012],[89332,89478],[63698,65244],[30920,90745],[64668,87744],[90254,95734],[86109,98367],[1105,3562],[70268,76130],[72184,82374],[27657,29769],[77371,96614],[71349,85998],[6191,20735],[12497,38058],[91278,95645],[45039,74249],[66460,90409],[72166,92394],[88987,95022],[30777,69728],[59789,63570],[73613,81625],[95068,98668],[49516,88142],[15590,60350],[55065,79122],[35980,79103],[69183,84783],[41588,53579],[93756,94248],[27068,39537],[1619,5188],[81366,86053],[68944,82508],[87773,97905],[36083,41714],[5329,41365],[35716,79971],[17725,21752],[57844,96376],[84447,89104],[6083,54086],[31265,86490],[35089,88218],[426,60634],[38005,42231],[8666,84988],[64587,81282],[49941,64067],[96045,98664],[5219,45230],[33998,52093],[82669,90973],[25939,65453],[91471,96414],[2293,23002],[88780,94613],[5949,86269],[25028,70795],[89932,95363],[61746,78141],[67557,92520],[82559,98974],[20695,40552],[94546,96537],[94300,97211],[20833,43249],[97938,98449],[42013,81138],[47249,48210],[66694,88989],[19954,87129],[93382,94066],[38580,51947],[61175,68254],[1773,55318],[67965,67973],[64974,77812],[80519,98146],[14198,66838],[63436,72168],[59977,61663],[20084,42487],[88939,99011],[87188,94971],[28935,47436],[51438,55166],[1186,97758],[74167,74821],[51939,66971],[3277,17885],[25077,72752],[31278,66627],[16757,23758],[92188,94149],[71810,92735],[52048,72721],[66251,93837],[14705,83541],[73954,92970],[15864,78013],[20414,68732],[90450,98578],[6629,41342],[81558,83242],[11206,72814],[60126,80365],[80731,92133],[10491,84582],[58302,94542],[14342,80656],[12688,83575],[61468,70628],[30353,69330],[3615,25251],[3506,34521],[2876,14533],[11297,87686],[75400,76475],[34522,89030],[46379,92792],[69644,70588],[37452,99671],[42201,89190],[68772,74652],[45493,49851],[81404,95139],[31414,74738],[88585,95866],[87547,90353],[71339,90655],[12665,21163],[43383,74524],[18662,35527],[26338,79089],[63977,84050],[17949,59684],[38104,88036],[38509,73068],[98419,99081],[81096,96875],[85281,86139],[78196,86973],[18453,83938],[11565,32167],[11247,21442],[37290,78173],[86954,91158],[40912,85015],[62504,90571],[13050,93753],[88680,93859],[60139,98665],[13361,15592],[76474,91331],[42988,86373],[27288,57833],[13972,83889],[91472,98339],[25396,32292],[57318,58947],[19026,75194],[8499,36297],[35168,89309],[44705,92063],[26266,68174],[36833,61401],[72225,72540],[6172,70295],[78958,95425],[38454,75858],[21467,95382],[81391,94726],[40093,92626],[10624,66674],[93015,95902],[61643,81555],[10884,79236],[10193,48325],[38703,61824],[50365,69901],[26732,95400],[90613,94212],[41205,98255],[61458,83358],[84370,92460],[98898,99896],[52319,62409],[43506,79164],[2744,99348],[89429,90270],[2722,17450],[42949,69532],[87479,93229],[91157,93192],[47799,48846],[35532,79597],[43643,97040],[25517,96103],[67178,85452],[61309,82505],[83258,91137],[34802,47816],[73467,80970],[23165,72881],[58930,91736],[1597,36721],[52878,80288],[60587,99310],[62034,93458],[75576,92419],[45308,60589],[28238,36955],[24353,32849],[29795,86886],[54524,94100],[76887,87205],[33400,76512],[38807,81214],[52972,78857],[54072,86995],[95472,97630],[32432,49382],[7335,39790],[20496,21321],[96853,97735],[55757,81563],[4890,37368],[51959,99966],[60075,62819],[46404,60047],[47460,96440],[70543,94298],[6953,35368],[35991,76880],[11260,87448],[23803,26206],[16877,44211],[41347,92328],[15354,57314],[71990,98485],[38433,58181],[89789,92654],[2687,64290],[88921,97636],[84280,89440],[23066,47661],[78716,82641],[19344,41201],[96408,98469],[46931,79003],[39142,88305],[36931,87981],[2319,75222],[4304,94444],[98209,98489],[38106,78076],[81739,90753],[2229,31485],[37562,61957],[72467,78300],[60513,82743],[13387,65609],[50490,52632],[69415,93946],[44440,58312],[73766,96375],[5226,7140],[91939,94628],[61550,93526],[71168,93306],[71001,95112],[49559,77175],[22626,63528],[40979,60593],[1848,26751],[72650,97115],[86169,90273],[68029,79768],[13249,75223],[37532,67878],[66582,66827],[87343,91167],[98696,99595],[57699,60264],[73451,81602],[63721,71670],[57512,77540],[89889,99956],[29102,96371],[50270,59844],[8773,55526],[83837,90162],[44035,73534],[88924,91517],[42769,95020],[10281,92171],[10798,11883],[42058,49799],[38033,70535],[71689,78664],[77543,86853],[92589,94826],[26079,42927],[74610,90042],[97313,98532],[93199,98188],[1430,27471],[64230,80081],[60431,99492],[59647,63671],[16972,92122],[14444,15951],[13243,47041],[83021,89937],[31201,80150],[69278,81493],[87469,91199],[15577,85225],[80077,91024],[30459,42459],[11208,59823],[4807,37976],[6093,91446],[76431,87145],[47695,59960],[93325,93913],[44325,46978],[72392,88983],[95528,97842],[27061,82579],[43107,84348],[91232,95720],[35329,94267],[85116,88511],[16444,98567],[24951,82594],[70063,77528],[45652,51381],[73863,77254],[65376,94173],[6996,15103],[93737,95188],[59003,76449],[58202,79852],[77412,90750],[3416,36296],[3889,81559],[62746,68031],[33292,44133],[38754,45485],[94659,98344],[88550,88725],[43892,47702],[54208,65570],[34726,91968],[21356,51164],[74335,92231],[54,56165],[1026,43706],[15090,77982],[83481,95766],[15766,95122],[69132,76641],[88804,99752],[88150,96930],[66992,90784],[62478,95973],[90624,99374],[67783,98376],[16989,64867],[53146,91442],[41972,51737],[74843,93460],[54911,61727],[11401,30485],[20397,20493],[7137,89688],[63581,94497],[97385,99610],[47385,88667],[5593,87468],[95785,97919],[84444,85280],[52567,58076],[12042,19229],[37313,90840],[97570,98195],[17323,82743],[48202,94717],[36767,37138],[57810,85729],[74133,86792],[13604,64051],[41634,91719],[67141,77267],[43980,99642],[63448,80310],[51436,95312],[37291,97637],[74031,92947],[18295,62296],[29791,63901],[83349,99975],[50963,56661],[57141,92398],[8865,64685],[19053,81043],[52595,74930],[20013,77224],[83470,85289],[33616,86928],[84765,99168],[59655,70390],[10349,37447],[12104,39615],[79612,85585],[24679,32773],[60471,89514],[74324,88485],[8766,56430],[20167,81178],[27465,54577],[11818,85766],[34446,38477],[26581,85810],[88260,89245],[79000,88351],[74261,85674],[13541,26540],[48400,69777],[28054,98537],[49067,76463],[1164,88579],[57841,77246],[14723,69809],[74170,95854],[8119,82358],[63115,71612],[10580,38930],[86060,86957],[33404,71036],[40163,53409],[44906,52655],[51803,62328],[85409,94145],[44302,50857],[56081,97976],[26989,80200],[43276,70832],[67799,74754],[86591,98716],[45089,73515],[27478,61859],[83974,93648],[66079,80675],[46000,61775],[12444,75689],[1479,81541],[42825,67853],[48843,54497],[56839,59776],[16436,70093],[23979,87142],[68882,92853],[17948,26560],[34727,79745],[83469,90936],[46488,53769],[85399,85958],[71133,84385],[57659,61337],[11674,71773],[63318,90888],[46791,58219],[63322,70224],[32686,99886],[99773,99779],[13642,75817],[24689,44832],[99874,99989],[80545,81212],[40452,45511],[43361,99629],[77654,98968],[66284,86366],[50622,72353],[71425,83068],[42867,87555],[39092,93838],[22815,35336],[26467,36055],[66978,86127],[3161,56435],[26304,58887],[87232,99413],[34164,76039],[21325,66507],[49753,73764],[60408,74837],[35185,35861],[87952,99010],[36650,65677],[14952,96852],[2396,10869],[91318,98441],[27107,70930],[88445,89933],[10047,59057],[57276,85118],[90023,94790],[12774,71328],[73814,95199],[5999,74299],[88692,95603],[2044,28537],[56972,71113],[83022,87918],[39988,58496],[35466,70226],[29634,84759],[81278,83951],[24145,70342],[92587,99611],[48847,86593],[33315,34008],[17108,72901],[88754,92347],[1589,38086],[6684,84543],[20011,90322],[19499,63005],[27007,96412],[26035,40340],[7212,67181],[83666,99614],[81454,95028],[27222,39156],[69028,81015],[92478,95106],[30602,71193],[49673,96672],[85275,98823],[32462,77718],[8113,22267],[28698,38980],[13335,59593],[80133,87044],[32000,79107],[17801,30910],[77853,89702],[89534,95062],[63062,75069],[73205,87811],[97534,98555],[83504,96020],[44973,95594],[12660,93905],[35414,40813],[74689,81817],[60668,84609],[10781,85677],[73899,80287],[60638,81352],[96055,98247],[67017,97240],[86770,88385],[47857,74700],[15654,40593],[15208,71456],[110,66483],[70667,90383],[96365,98933],[2046,77761],[67033,69490],[16068,56044],[95216,98206],[87781,94279],[67692,98776],[80963,85357],[87023,93730],[21497,95915],[57623,99445],[49188,92254],[7570,84283],[45240,67622],[85067,96040],[85861,89341],[86638,87117],[14055,57428],[74989,88835],[97717,99702],[43317,53170],[46583,76143],[2778,5200],[14389,20839],[71144,79745],[84703,85334],[12787,74330],[69105,91160],[26038,92073],[22947,41573],[60804,83963],[76894,77965],[77386,78836],[92305,97586],[15356,48573],[35404,88624],[61269,85110],[226,92941],[47252,97523],[94978,95088],[60406,68903],[78980,91842],[90164,94748],[43657,72608],[9151,99992],[95441,95465],[51052,63322],[89238,91344],[18599,97797],[31842,50997],[28235,29523],[46829,94812],[37568,38708],[20045,73292],[78518,86890],[21142,66758],[71438,93837],[82320,95585],[46103,75787],[49463,53113],[89637,93895],[99397,99534],[45543,55345],[42247,73289],[27893,84644],[43480,49747],[38082,43124],[1196,38035],[69978,83736],[56133,72306],[92883,98743],[96321,96384],[83798,87985],[41694,45457],[7084,70054],[55604,85067],[2777,24137],[73124,78952],[23670,30309],[67688,83584],[94644,95929],[41206,45424],[76424,92865],[33244,54764],[46643,61370],[60170,84982],[97333,97536],[85908,94667],[91830,93177],[79547,98453],[67204,79246],[24220,29101],[1905,87769],[38594,57721],[84695,93598],[50443,71987],[77429,86458],[24328,60755],[57361,75844],[94626,99425],[37713,64960],[39315,67635],[74624,84106],[69279,94540],[41096,76995],[32017,82735],[52661,84640],[54702,65451],[92216,99234],[79881,83260],[31359,95859],[77146,90304],[12430,62292],[45332,65447],[43908,75136],[17491,70848],[42492,46966],[33204,57261],[62510,97462],[32142,81883],[386,47791],[83157,84964],[70152,70347],[44952,58887],[35508,94371],[68799,94511],[81591,97266],[96274,97312],[4681,94365],[43045,63339],[60832,76866],[66406,67252],[81035,93354],[36454,48705],[87100,96435],[10320,70337],[97841,99172],[45339,47919],[12417,19146],[30366,81088],[34263,52230],[23276,49506],[97437,99370],[54683,66659],[78575,93496],[60885,99325],[46655,65243],[52101,92278],[83739,88536],[41734,64242],[53294,72705],[38083,41480],[3133,19655],[96474,97011],[9123,35505],[87723,97621],[98754,99573],[27335,33532],[17708,19725],[97675,99276],[94766,99884],[70986,72032],[64300,65059],[98946,99211],[52,95286],[45009,50668],[96996,98076],[35984,85507],[59994,81280],[75076,91391],[17318,34838],[96098,99961],[87591,87597],[89652,92790],[65494,78979],[981,16446],[90173,95471],[19603,85764],[65984,94352],[14216,89496],[99641,99696],[94145,97120],[83100,92539],[79897,99198],[23848,35003],[70369,85577],[88404,96447],[33320,58929],[30249,81618],[728,80276],[5143,66078],[38649,71191],[10003,79630],[76984,85738],[88479,96444],[2245,28313],[87961,94463],[7024,76209],[42228,43512],[65782,96057],[41273,56866],[36493,94563],[50989,80277],[88537,88568],[11119,34785],[78179,88905],[42556,86643],[34700,91648],[4048,26387],[73946,75221],[74721,77135],[61033,99782],[87229,93284],[23786,95228],[10074,82963],[65850,96764],[72308,82690],[7020,25600],[91099,97407],[82313,82819],[85715,95501],[86429,99043],[8109,48989],[97571,97676],[31799,61486],[13142,15920],[42948,94461],[6866,18478],[79832,92184],[24437,86304],[57129,94163],[70613,89473],[42208,97739],[12147,22435],[4848,32152],[45914,68773],[85909,93479],[6509,26640],[11639,42758],[43201,92234],[31805,84961],[56993,85715],[34563,75384],[96827,98767],[10062,79832],[50817,78063],[22737,77410],[27354,42787],[5367,53413],[81160,99198],[1990,40513],[89418,91619],[83618,95789],[23434,94561],[86431,86990],[98313,98656],[75470,77171],[88506,96874],[68300,89140],[10445,88164],[54470,86855],[88038,88942],[65359,91097],[620,45362],[38581,68055],[41005,63653],[20068,78453],[43756,86331],[92573,98857],[48820,99635],[95093,97733],[98189,98702],[94621,97770],[49689,85958],[2388,59651],[92310,92573],[98908,99785],[16278,68264],[55516,90004],[81326,94323],[33427,89256],[18096,70022],[90069,90321],[48700,74854],[86236,90381],[96081,97781],[5156,45032],[10470,38521],[53948,57659],[14922,78528],[43481,75847],[9750,85388],[53695,72919],[284,21841],[65327,97951],[2862,42694],[15315,61775],[62313,73734],[17581,69906],[66348,99420],[48471,84491],[95450,99846],[90252,99872],[49801,62322],[60250,94332],[83171,99667],[79437,94340],[7914,33961],[1689,70616],[95343,96198],[25010,37361],[9487,81782],[91657,93114],[66861,85367],[23210,39694],[74544,96339],[24953,32412],[28601,44177],[22159,93012],[91535,96913],[1216,85325],[11544,53122],[11921,93416],[56358,86210],[60628,78266],[14146,96548],[98965,99489],[25910,69795],[24978,34097],[44022,49117],[69382,84163],[1385,34696],[41992,97189],[31058,86566],[62119,70342],[65669,68655],[64613,73140],[62743,78328],[13909,81353],[24644,96028],[49650,56402],[5351,48226],[28250,30078],[65584,90032],[58858,63254],[62612,70502],[52314,64739],[58913,68274],[89259,91516],[11963,36508],[42602,76909],[54645,87349],[21463,54702],[69206,89294],[38457,90577],[62993,69771],[50455,60698],[10843,69810],[73154,75022],[51149,79725],[74639,89340],[34496,68491],[4627,51038],[73903,80610],[38834,67296],[53779,99310],[39832,40672],[61213,80587],[80288,85475],[53889,87525],[61890,84077],[57760,78356],[29303,57117],[60907,93705],[47099,55143],[25699,27663],[91199,97074],[48904,58212],[2335,86221],[15936,26215],[66188,71116],[6171,26200],[1947,24264],[76557,86836],[70750,74079],[53398,76862],[16458,85229],[92536,95028],[53392,92957],[32207,63928],[94682,99912],[30456,75067],[1747,92885],[38455,98886],[65799,88852],[27859,68481],[78262,96350],[94725,96566],[76742,88889],[32564,59480],[67873,87257],[9558,79034],[58213,66303],[61767,82022],[20009,76498],[43412,53990],[93799,97531],[84326,87838],[19190,74828],[68024,72896],[86222,97968],[60259,90089],[71429,88655],[18649,28225],[7350,84181],[98561,99773],[593,4393],[83354,88499],[83940,85983],[56156,68634],[91964,92688],[32290,81813],[81297,82043],[19652,92937],[50503,52125],[95150,97268],[81308,88217],[73809,99407],[42401,44895],[37942,57024],[95883,97462],[86461,99943],[48069,79498],[23552,48006],[10883,71720],[77845,95159],[34283,98593],[25438,35888],[83741,96170],[81357,94540],[7818,15108],[13380,41810],[38058,41455],[8606,31423],[5879,34156],[31402,47097],[93042,95513],[68848,70160],[20278,75020],[30638,72315],[19609,71402],[16153,82010],[40336,78330],[70204,85697],[77907,78866],[84115,91486],[60368,89897],[84100,98229],[75559,87363],[56605,94390],[77155,92509],[15242,29215],[78796,95959],[92534,98068],[94222,97707],[6038,35198],[81630,86261],[54720,64196],[69228,98893],[22743,78138],[26292,61313],[56011,56183],[91489,94823],[97114,98516],[45080,74079],[38689,63802],[49792,63771],[97830,98792],[25700,80738],[18666,69183],[17457,53026],[65771,77005],[98506,98753],[1887,20799],[54982,58631],[13921,31558],[22447,90882],[5501,10022],[29650,81090],[64948,66392],[26531,30156],[94152,95712],[50499,69832],[27559,52849],[85903,88788],[17667,41021],[23496,28617],[83464,86190],[47580,58112],[31790,64342],[78053,87880],[91261,95099],[3464,99612],[64617,94893],[54832,70818],[40136,84031],[97767,98305],[98655,99211],[49290,77433],[28016,92346],[85197,85652],[10639,67266],[49407,50622],[89737,95635],[76066,86722],[27847,65055],[40380,85808],[8154,45246],[85183,86493],[30499,92261],[40032,43164],[58724,78324],[56153,93024],[26465,43782],[76268,90962],[69820,92227],[64592,89931],[43802,93400],[84380,86311],[90519,90655],[93087,99595],[60262,66008],[36062,92509],[50475,95146],[30477,72577],[90332,94085],[77900,96344],[41765,49880],[72306,73324],[21182,30779],[93161,93854],[20128,41127],[55889,97648],[25078,31360],[15740,27575],[93647,98312],[40723,83278],[6677,11127],[1505,64649],[11352,32745],[12678,91997],[1496,40165],[92187,99997],[64932,99714],[90955,92072],[3244,86871],[3885,4119],[9851,10743],[37437,40791],[13270,68904],[27350,77736],[74715,80456],[23188,35577],[9510,91240],[28879,73176],[31298,63108],[72215,89546],[20048,22011],[7266,17606],[1404,62445],[42742,45017],[78177,85442],[9767,47857],[81720,96654],[44542,62021],[25861,66998],[84213,93174],[52411,65999],[49362,79258],[12789,61552],[53016,53831],[28470,34204],[77980,82308],[17113,84306],[61247,85707],[30084,53526],[28494,82007],[19692,99667],[76099,84379],[77789,83095],[40971,87163],[5169,33767],[30301,33922],[25306,58565],[60524,82018],[13474,66254],[45844,65549],[9950,69286],[11515,34542],[49622,87594],[89883,96057],[58321,70999],[95712,98594],[58083,74385],[49268,61142],[2860,5468],[7538,61506],[32991,56318],[6352,18057],[42279,68404],[74189,78817],[18181,80662],[88460,93496],[35536,63138],[68865,89092],[91561,99327],[3626,55254],[65862,90035],[7050,18617],[92193,98310],[47210,71995],[1477,79388],[73751,85166],[40996,41125],[26551,31212],[9582,45026],[72730,87607],[65999,82901],[50352,75443],[77433,87685],[46671,47761],[7332,15012],[15399,69040],[83861,99010],[1756,98404],[57656,94823],[95644,99755],[15641,15881],[64636,84193],[12524,48409],[37959,46920],[75792,97464],[47131,53927],[43637,85452],[91679,94713],[21652,81917],[64458,77151],[13986,62253],[51600,62227],[34462,93690],[66377,81966],[87420,87426],[35041,96228],[17264,43273],[16496,65146],[29644,73444],[41375,64927],[73586,82142],[22480,30902],[59528,95228],[89594,97345],[84073,92039],[68349,89196],[927,20789],[79337,95962],[43038,54568],[25105,49623],[79371,89936],[88963,96210],[96531,98764],[78705,90573],[82882,83868],[73388,95631],[58439,92615],[22627,83306],[82957,92070],[58512,95798],[50078,74448],[88407,94177],[57048,78451],[85598,91383],[1712,15443],[72893,89520],[20508,85204],[1831,47231],[48507,65455],[2684,91652],[90781,91326],[61331,80123],[46179,75874],[24304,87571],[70022,82872],[91356,95169],[17863,92938],[40816,78135],[72485,94773],[86178,93445],[61591,80654],[88760,99288],[81233,96780],[15824,16702],[61096,61449],[49750,84908],[1633,9807],[13713,85772],[61450,62077],[17033,76861],[90244,92872],[94721,94863],[66881,70601],[94820,98856],[4107,11506],[84507,96202],[35463,60386],[8064,21368],[10089,91816],[60487,88742],[12126,76034],[26835,91188],[75754,87109],[1878,40975],[75483,75837],[93481,98749],[48113,64248],[81086,87642],[92225,96795],[54884,96427],[69283,94253],[57290,86228],[49069,63315],[81576,96612],[47000,47623],[70466,78530],[33241,35319],[46525,77973],[43199,45234],[22321,81984],[94337,96549],[36374,41587],[60330,76667],[66723,93309],[15513,75417],[4684,55508],[51687,96825],[18857,67447],[30774,74384],[69530,98925],[56802,90632],[23032,71994],[69739,78552],[11124,23739],[31608,80222],[96074,96540],[61597,65816],[42391,87653],[76805,94825],[23973,30395],[23278,91906],[72270,90114],[57783,75225],[29360,87073],[69467,85002],[63121,66650],[64197,80964],[54185,79970],[31930,48230],[7618,49978],[6242,18797],[81114,95426],[61782,67150],[97633,99349],[82545,82617],[25958,91853],[96733,97139],[83674,87527],[63125,80942],[8747,35643],[41906,70824],[28192,51638],[36300,88600],[86001,95506],[79467,95110],[89662,95222],[72182,99930],[94949,99509],[97900,98300],[79447,86065],[48195,52682],[47463,50406],[78596,86595],[86974,93008],[28378,83026],[46648,61476],[65226,89482],[24812,74926],[67306,92111],[98058,98402],[50577,89493],[37343,65631],[34949,79213],[23149,81273],[10071,48365],[7780,73682],[37251,63459],[14826,28891],[17486,96155],[82653,98787],[69205,77919],[87953,96331],[73624,77929],[96236,96590],[90654,91362],[27030,95348],[6108,89486],[19018,45067],[24005,41374],[11804,34576],[21169,72284],[52841,78748],[90368,96820],[1148,74333],[79672,85424],[68140,72845],[77799,81215],[15262,38722],[80842,83357],[39350,53683],[18055,37728],[51375,99898],[4985,73477],[2849,95100],[36294,93578],[79923,98500],[71354,92405],[97733,98040],[23376,23790],[28023,55729],[4752,8403],[27174,49792],[18237,27431],[3581,89963],[21088,74892],[50540,66309],[39101,83013],[69706,90718],[32722,68605],[27011,46189],[7363,91761],[51748,88144],[13123,85202],[85441,93614],[80121,98572],[43337,94495],[9635,14781],[68340,83329],[8360,19459],[63572,94992],[65709,70746],[23317,96753],[68262,98841],[713,9865],[70488,90687],[76059,84037],[16357,42953],[18584,74741],[99657,99929],[91016,93357],[55517,79518],[19892,31403],[95689,95792],[77184,88423],[39915,60073],[982,28736],[39339,89291],[70834,76613],[52034,94193],[26978,67303],[74360,99970],[54400,79195],[25891,83352],[77339,88923],[86501,92864],[79231,85627],[18093,94461],[45094,52141],[4916,7271],[6082,93850],[47434,90647],[36306,99170],[88756,88858],[72465,98602],[99632,99744],[39538,76223],[3281,64745],[76982,81179],[24484,50589],[72704,72959],[93626,97490],[26944,87499],[67384,97785],[47725,86378],[19342,44162],[1852,63869],[21932,42877],[46147,61300],[27668,49806],[87794,88693],[49862,84374],[88330,89420],[27647,30599],[27697,55101],[11434,64521],[90556,92001],[2048,77104],[63147,93466],[75235,96991],[71721,97249],[26205,53861],[57547,61728],[30017,89472],[49515,80300],[35237,67621],[82593,88023],[75444,90886],[27853,29881],[86213,97506],[50632,89893],[77250,78340],[46182,78619],[90518,91535],[11980,76801],[51213,69885],[43018,98469],[97602,98000],[60484,97330],[58952,60041],[83182,91967],[66677,84959],[96640,97216],[48836,98679],[83977,95995],[37177,68538],[29529,68642],[30193,59653],[42828,87934],[178,74033],[50593,94235],[61536,64110],[95284,95679],[38029,59035],[76782,93695],[4308,71383],[72888,72900],[61100,76236],[70303,81360],[72663,91798],[12526,89112],[25376,29241],[42400,85671],[21526,52418],[54192,58356],[73568,96049],[12193,31438],[26139,44479],[78442,95933],[77448,83432],[60209,68926],[69123,91211],[69631,83811],[94275,96635],[56485,67599],[56615,59379],[3230,62216],[63797,96960],[27495,69544],[93813,94767],[11753,50235],[42933,92031],[99441,99666],[55674,57258],[55113,56680],[43015,86315],[14929,36429],[50878,54851],[51088,70298],[32116,65880],[13837,43839],[26381,35683],[2857,46116],[40868,42384],[56868,56979],[96471,98430],[94667,97843],[3056,41609],[52149,89783],[805,61857],[87204,94219],[75664,87470],[90107,92945],[80292,90445],[31647,74475],[55558,77905],[89174,91553],[2574,79432],[17180,74107],[8435,26089],[18539,69340],[87494,98486],[70421,78690],[42511,85210],[59338,85615],[14588,91563],[14478,83029],[1504,83785],[37684,56513],[37232,59359],[17992,82725],[46109,92308],[29212,37529],[92909,94393],[12111,61907],[86008,92965],[88405,95338],[31196,57147],[88276,98769],[70265,77166],[47521,79768],[14045,53034],[19510,24554],[87114,92881],[71252,96210],[4148,22352],[40618,88183],[58498,88169],[36652,97178],[93157,99729],[45503,72413],[76422,80542],[34370,52751],[32024,69364],[82904,87960],[75628,80488],[3385,22806],[39373,89147],[92355,96996],[87919,94828],[48078,88515],[44329,53401],[51912,89995],[87532,90862],[50900,65997],[94691,95211],[97210,98414],[4398,77553],[93783,94523],[43444,90003],[58150,63090],[1213,42316],[24168,77478],[60620,63385],[24431,78158],[23861,75404],[29096,89552],[94783,96850],[59,7235],[36876,79458],[97206,97502],[41183,61851],[9562,24960],[13551,28887],[85419,95977],[96948,99986],[42293,68952],[8665,40981],[19966,55503],[24993,68819],[61713,69615],[40564,60740],[73913,77896],[46170,86759],[26174,86755],[78741,99334],[20738,79934],[26480,97363],[5528,43734],[15588,87299],[16630,32593],[66437,95559],[39207,87205],[30961,90739],[18798,84866],[83820,92723],[95455,96350],[53542,56117],[4414,69143],[55266,59585],[52386,88993],[26236,84550],[32443,52822],[66879,83626],[70648,80212],[73563,85041],[79018,91957],[78861,93460],[85476,94377],[22621,88335],[80481,91415],[78926,99790],[23131,37089],[15005,28282],[91831,94526],[12862,29549],[98432,99845],[72982,83975],[32987,63279],[87803,95449],[89334,94410],[48164,84498],[86829,89800],[25243,92738],[53580,55162],[26612,31224],[24323,41713],[908,60122],[45868,79159],[82318,89219],[10967,41825],[98043,98748],[28272,46808],[522,2485],[13960,67836],[59193,64892],[11104,81752],[18661,72236],[66656,75061],[69716,80243],[17419,19381],[80025,91359],[9738,53972],[67387,89406],[56761,73282],[43671,99845],[13925,81343],[64206,72149],[54029,73884],[72390,93584],[22419,88514],[16882,24099],[88657,95602],[19202,38689],[42777,79819],[55766,59816],[62558,95352],[72634,86945],[19641,31581],[23502,35419],[74513,97601],[45487,88108],[59406,79694],[81068,96268],[75999,99025],[53077,94910],[59959,73908],[2281,2413],[17509,19283],[67958,81626],[34832,84589],[67321,75373],[19023,69874],[1070,85164],[82522,90371],[1175,3640],[29264,85934],[22294,43264],[53058,98689],[61623,82430],[30229,88535],[87013,87569],[9494,14621],[10334,33258],[62759,91819],[59219,87760],[75547,99082],[44179,69454],[29771,90677],[70107,89937],[93586,93982],[95802,99477],[84618,94369],[48037,97717],[37187,98505],[37162,52213],[87435,87795],[5044,92420],[18148,73622],[63108,94236],[23350,49485],[64032,83105],[5707,62360],[51860,77239],[44086,73694],[43031,87429],[75385,97532],[36291,82210],[29095,57501],[28057,59177],[37619,59540],[57943,83581],[29677,87307],[65331,85644],[93845,97760],[1447,97598],[99851,99925],[7198,79067],[59686,98441],[77894,79939],[66554,85738],[52061,65866],[42705,57569],[11143,65252],[74752,84208],[47141,55395],[17656,71313],[33083,91652],[98033,99165],[94169,97722],[87992,91667],[74086,86908],[58099,85999],[92498,95488],[35160,48910],[13119,28755],[63946,85572],[47752,95570],[30311,55423],[80603,97833],[69899,84870],[58707,71375],[72784,97039],[35795,70556],[16520,23060],[30524,75371],[25447,82206],[11498,59459],[23319,99534],[50769,74601],[58960,98423],[51136,74027],[77611,85495],[30033,54478],[20698,98709],[54985,97027],[27014,99850],[55897,78381],[71638,89834],[45246,51616],[73334,94900],[88653,89179],[74627,95238],[99327,99692],[29348,78209],[47910,75832],[31008,85287],[84751,96061],[89710,98684],[17290,41647],[84356,96991],[10507,13591],[72480,93813],[80556,95666],[25062,97002],[80316,91895],[52457,55499],[79710,85789],[99263,99415],[44591,48050],[65807,93695],[78184,80610],[13213,57567],[65646,77611],[35413,86565],[25695,39316],[27246,96601],[75984,80330],[98051,98150],[87680,93378],[10569,12743],[9337,52477],[88022,95200],[67099,90598],[33132,65657],[98615,99946],[35737,62558],[16690,20437],[53827,79100],[71792,87622],[50502,92825],[83001,86722],[46963,86488],[67123,89898],[50767,67603],[41729,65004],[65016,88289],[37133,55184],[1920,18716],[21569,95728],[43755,74974],[23656,86057],[29757,73636],[11188,65526],[20076,59232],[12914,26587],[17565,18735],[21668,59385],[31154,73811],[35066,92085],[37841,53529],[86363,95115],[6230,87018],[12494,56984],[39237,85978],[27362,92670],[36423,80723],[97601,99152],[20967,37758],[25463,34033],[59594,96223],[84403,94333],[73580,85026],[26828,31446],[36695,78748],[71092,83900],[37795,86368],[24371,97892],[64683,87213],[51172,97929],[81364,85835],[73158,80004],[3154,82312],[97991,98137],[98555,98765],[6711,77553],[95881,98477],[19883,60174],[79409,82814],[97529,99957],[76173,84191],[88471,98958],[17184,42829],[75791,93345],[40670,95612],[66539,75195],[98851,99352],[85127,93555],[72976,94515],[77535,89528],[96082,97196],[89960,90161],[67345,68630],[14353,25322],[20637,20823],[64229,86539],[8005,82047],[17470,22118],[3631,16833],[27864,65512],[99547,99782],[66534,94856],[37579,86665],[68756,72319],[2279,50052],[12722,89048],[31798,80901],[29863,61669],[21466,58446],[44921,98989],[55510,76225],[68250,77422],[84590,92045],[77409,85236],[58437,68329],[94881,97251],[55306,76230],[82012,92719],[67853,95335],[20102,57651],[63591,70378],[39833,55483],[8183,43491],[52162,89609],[78051,78202],[46663,56910],[61763,96203],[68280,79255],[26655,97942],[33589,67497],[52224,98435],[18778,93369],[94670,95186],[73333,73993],[64849,74196],[52340,73966],[59947,96269],[84652,94308],[17871,90347],[64330,78096],[67255,99606],[20108,83056],[78983,88655],[45214,52455],[7639,99251],[15340,51669],[47093,81574],[15028,55828],[68066,77091],[46356,48365],[32652,77641],[70154,94007],[94757,96684],[91892,98543],[5477,36952],[15083,82681],[61504,85825],[96392,99553],[11557,88083],[61326,80755],[66009,77918],[345,94800],[61714,89631],[77492,97965],[99779,99926],[77880,90862],[42631,83305],[38228,64218],[65146,92127],[37311,97482],[59196,80290],[60675,82993],[48070,56146],[15111,71227],[33552,36002],[21763,68977],[95960,97053],[44369,83448],[50185,64635],[86856,99486],[43112,82242],[31747,62256],[56725,80366],[36753,97182],[33578,84960],[84473,98347],[53444,76069],[41127,46389],[11106,94689],[39730,41099],[70481,91473],[66637,89389],[76734,91651],[77110,90370],[49842,78182],[25725,82011],[19887,37952],[22183,86831],[12760,17192],[17642,25446],[9825,36673],[94967,98159],[82903,85917],[90812,92033],[63815,88582],[32392,90392],[98939,99699],[8713,63268],[33146,66507],[90145,99821],[12419,62301],[34931,84520],[21587,75639],[8978,47634],[42229,80917],[20990,76011],[29300,54121],[51139,79069],[67949,84893],[40035,71272],[90629,92080],[5791,57884],[34345,99808],[57686,94629],[30681,47682],[86219,95022],[45532,58656],[33864,95660],[46353,51076],[47696,85003],[896,4307],[74918,80021],[13721,17731],[17018,64847],[15991,48547],[93206,97088],[80888,96546],[84836,87750],[265,92874],[93294,94299],[87029,87366],[86251,92669],[59244,80300],[95518,96613],[85431,93246],[92154,96069],[2510,56313],[10875,78239],[61498,77785],[50915,56570],[84475,92435],[88284,98347],[41861,75986],[6214,19841],[72227,87456],[27002,77680],[82875,87653],[39442,93632],[25112,53200],[39014,44383],[18581,31951],[61775,80093],[91671,95652],[41617,52028],[10549,77507],[12286,97129],[46481,93951],[26917,54341],[22318,24835],[7492,8217],[73179,76328],[81625,93434],[34175,53234],[62814,88781],[3961,73542],[99019,99701],[58621,99907],[42587,60900],[56745,59762],[78988,81965],[5746,9675],[7289,69103],[65670,72312],[62616,69707],[19950,24399],[28213,32006],[19129,21757],[61838,87593],[67414,67639],[55939,95162],[71159,89961],[91632,94102],[1279,35540],[6231,64121],[20203,98414],[30718,70070],[86242,92829],[5543,11265],[98285,99631],[73918,91121],[99731,99855],[45277,67008],[45110,97102],[28062,78809],[35541,39431],[67936,74138],[27810,68471],[95388,97923],[52164,54722],[51066,64649],[55042,56449],[74937,79978],[13069,45716],[76457,77736],[85224,91632],[2666,12466],[79113,99478],[49123,94935],[22987,76893],[45782,78707],[34592,93723],[34800,43025],[5444,52235],[41100,61381],[2223,31913],[13080,71988],[90437,94240],[10252,61098],[56454,69990],[91998,95959],[71332,82376],[91148,95101],[60712,90834],[69608,73003],[63188,99125],[62777,74273],[48331,82472],[81056,82682],[13769,58847],[60246,77987],[55741,58995],[8568,62257],[11263,55383],[41487,77773],[61697,80531],[25204,49114],[90926,92865],[79668,99430],[80103,96997],[18337,50750],[46874,53715],[54611,57788],[93370,99921],[79892,99225],[45808,98976],[75802,93394],[9140,75549],[36698,57806],[10890,85580],[97223,98267],[87196,93667],[58217,86546],[67924,80013],[57402,59328],[87796,88958],[88340,90814],[99807,99922],[92357,97796],[7444,7466],[15367,94621],[65116,72363],[88354,91903],[86504,93273],[27429,46866],[78148,93003],[91709,92454],[74054,96172],[91707,93003],[72107,76879],[57672,67584],[24975,57031],[74595,98111],[53873,60332],[72678,96145],[69625,97532],[78506,79719],[58920,79879],[52087,82357],[27821,58312],[11330,80482],[63132,86938],[70465,98513],[88357,91378],[47667,89682],[71694,99422],[80638,97096],[23261,50451],[24119,37149],[95956,99659],[74297,80116],[4491,61436],[86601,99367],[94733,94748],[19299,68132],[68417,94422],[303,30267],[78963,90647],[22095,44235],[74120,84208],[1126,85014],[90131,95166],[46369,69012],[75951,77170],[38132,56205],[14363,29911],[85933,95598],[95612,97780],[94346,96247],[4799,59363],[90874,96219],[18069,85467],[96982,98541],[66144,93967],[35973,98580],[21964,22019],[3256,10856],[34491,96673],[74946,90146],[16726,47407],[52092,89602],[60287,74932],[37424,56702],[48254,56189],[3541,24393],[98547,99812],[23600,91324],[44140,67233],[5204,27932],[24969,30774],[71482,92196],[11381,38712],[28760,87536],[8111,83855],[56917,81480],[747,38564],[5793,60542],[75112,79850],[23682,41015],[15841,50034],[31867,85508],[19585,58395],[64514,75731],[88718,91352],[27907,73038],[75519,80061],[3810,64609],[80693,92778],[92686,97620],[90255,95569],[87588,98962],[55077,57708],[14492,47970],[27840,38638],[94159,94950],[57177,92506],[57257,93053],[74887,75745],[3282,14340],[60825,97924],[72388,88833],[28835,75662],[37997,81516],[81015,82323],[92397,94661],[80553,83373],[50891,86820],[34836,85263],[86004,97514],[47457,87806],[49583,99388],[4378,46588],[98427,99307],[43717,52790],[56016,92358],[83365,87889],[39443,46551],[93661,97704],[23421,48464],[18869,83525],[21063,49156],[626,49818],[82708,99987],[96697,97761],[7046,90524],[23019,99925],[41216,95442],[30443,77356],[29622,92859],[63036,88432],[61073,63632],[10828,46678],[60056,83220],[43568,44692],[84064,99427],[54628,79970],[92995,95083],[7504,61750],[93684,97060],[85023,93743],[27158,30675],[89445,98379],[83130,96887],[73579,90973],[1104,15978],[14128,85596],[26007,62734],[13633,54789],[71984,84670],[88495,90141],[27814,82058],[71023,74569],[67820,81317],[22547,90502],[74280,86356],[5788,50784],[65600,86175],[19878,61215],[51381,61484],[96822,98984],[40019,79094],[35884,77929],[29550,87052],[69920,92651],[55653,83771],[64482,79540],[35120,61121],[14275,71069],[56794,80895],[70188,83396],[28775,98248],[4577,21130],[83572,85275],[83694,87646],[63276,88451],[38010,46731],[92601,98433],[9927,52936],[65259,75883],[88358,92099],[28671,58475],[13393,32262],[53903,90823],[53543,69133],[93708,98624],[48788,60100],[61286,65124],[50695,80926],[84979,91040],[7766,77556],[2821,14040],[66475,99523],[99645,99677],[31577,63948],[28996,70861],[86261,92082],[78986,79283],[98792,99099],[91490,97224],[82204,86281],[60182,76824],[99935,99980],[78521,96597],[18253,73784],[49183,65711],[29739,95067],[45799,75355],[30659,71267],[82704,91172],[84842,94312],[94576,95155],[89855,92598],[99883,99887],[2970,76922],[84832,85886],[91602,96396],[19426,58458],[40855,85461],[2220,47322],[44362,50417],[12705,27052],[93734,96901],[31051,40638],[38114,52973],[72495,95929],[78304,87320],[26760,31199],[3399,10194],[43729,46966],[14493,30356],[19389,68607],[16359,92213],[46836,90475],[37129,52476],[92120,93664],[71830,72434],[22158,31735],[7982,84820],[30662,44949],[75884,90617],[21806,46055],[53670,70882],[96962,96987],[39665,46402],[47991,61376],[66616,74155],[46375,65131],[66339,77783],[9669,22370],[42771,72234],[58958,98627],[27754,39498],[68458,90531],[89802,90674],[38841,69310],[18626,53862],[42626,54235],[93460,96866],[51840,81010],[48530,77378],[88954,92107],[71586,80676],[72790,90976],[46884,83689],[46633,77263],[43987,54161],[63123,66226],[34178,48032],[12221,40760],[92881,96887],[24440,24465],[27388,90146],[96451,97519],[46162,61624],[20891,86113],[75007,76152],[20493,94992],[28841,54054],[71150,90341],[3370,75919],[75279,87852],[66027,91128],[15780,75585],[19343,63005],[75760,94701],[3691,6635],[15990,22110],[66840,95010],[9107,65947],[61002,74033],[44972,48502],[57624,78129],[91389,97487],[37570,95560],[65215,75545],[79582,82271],[16258,63649],[24691,59972],[28461,85203],[11657,54116],[6302,49949],[30342,80120],[41733,69917],[62013,72671],[78668,91970],[34854,75216],[44999,83873],[40318,93825],[23965,99223],[88041,97311],[60688,71307],[5950,41724],[86316,94066],[47199,86520],[76156,97411],[14644,62319],[59358,99760],[64437,97921],[17352,38736],[51321,87154],[6530,37922],[492,3435],[82438,99832],[95692,95745],[61810,85078],[46775,49583],[20901,28533],[70720,91586],[62874,85621],[32751,92017],[24054,76361],[87025,93841],[55442,77597],[65593,83817],[87834,95135],[82933,90981],[39636,65906],[60631,70815],[84442,92067],[1048,34732],[74228,80100],[62016,93690],[40343,90550],[20591,43547],[86757,90961],[12072,72332],[44105,78347],[38740,46125],[22954,49577],[42294,88896],[81635,85074],[40906,77262],[39809,63912],[28483,68870],[73077,92161],[14786,81738],[25561,80800],[61360,68527],[98621,99121],[17426,19436],[37757,76704],[7028,66295],[94258,98575],[21339,80084],[34157,53930],[45516,58992],[95369,95730],[56238,87440],[9697,26750],[66602,97598],[26009,76824],[73452,96321],[59612,67621],[52618,76341],[59246,90417],[39427,61224],[55298,67732],[94109,94196],[71369,98932],[5105,32446],[76692,86291],[78862,84777],[39478,61644],[39476,82219],[92386,96595],[64960,77272],[25150,65242],[43768,60201],[85374,96644],[62829,73708],[10763,23994],[95042,96933],[42337,75303],[92558,98116],[85897,87385],[37361,40593],[49392,52004],[56181,57719],[50667,52430],[17064,34396],[27492,29368],[7075,53843],[62930,71613],[48452,82133],[82202,93413],[5905,29639],[55272,99710],[99575,99726],[87640,97292],[32065,76088],[35110,92064],[84161,98504],[62638,99730],[81433,81461],[65751,76592],[83843,90119],[84232,93575],[95987,97753],[15256,40704],[7490,70862],[96182,96594],[45488,67090],[77150,87009],[76390,87959],[93939,98344],[8216,57867],[47040,76965],[517,3014],[9413,64776],[34445,46103],[57898,84524],[46842,73172],[69152,84023],[62842,63604],[99581,99890],[97727,98378],[10931,38738],[34147,39265],[60801,86780],[42269,98325],[66084,89903],[35124,35423],[49822,62014],[84634,87284],[78400,91980],[59596,91144],[94877,98479],[47162,49702],[96211,99615],[37063,88646],[89411,94228],[53457,56886],[53802,89905],[13595,36052],[14446,53651],[67139,96649],[47365,49476],[66037,96711],[37281,65598],[37388,87704],[77453,91636],[68311,90769],[93537,94642],[93125,98111],[19951,29093],[74971,96379],[13667,79195],[18698,67762],[22790,27951],[80411,87178],[3428,52924],[43137,49965],[27085,53686],[3499,19622],[94122,98114],[86390,90089],[50730,69046],[5591,59435],[43556,56473],[11795,76967],[54870,58946],[88534,90470],[96672,97458],[47188,93986],[34903,67419],[39012,48703],[41647,52034],[57154,62147],[65462,94326],[74310,82137],[97834,99967],[49919,80366],[77920,98685],[78738,85991],[17929,94798],[90465,93443],[40456,82363],[45886,50409],[29325,80760],[45249,91573],[17516,83776],[35046,47207],[1062,4955],[25781,59430],[94997,97734],[13499,33796],[63599,81512],[30267,51691],[3265,78656],[56422,73754],[49934,98547],[65404,82974],[5953,37467],[17364,99256],[18334,94078],[2333,4107],[14995,75176],[9630,15766],[25990,70747],[44739,90865],[8368,19130],[31409,98471],[83377,94722],[82536,97300],[69990,94815],[78012,90733],[3117,30323],[92624,98756],[23161,63018],[82955,99960],[12382,92668],[27441,85839],[23764,31683],[63606,65963],[64388,85556],[61769,78031],[75528,76057],[58554,90213],[7704,92301],[46702,53848],[67725,82790],[40183,88604],[94373,98351],[56107,64046],[12959,14152],[88023,99423],[43118,98119],[67905,81048],[56331,75512],[43906,79805],[48852,69777],[8427,57349],[2236,60567],[28589,39727],[58938,73107],[18232,25668],[31976,39400],[95082,96570],[35183,37034],[6829,48468],[46573,86802],[85704,94972],[78677,88502],[27392,57043],[80134,88940],[5238,29634],[11186,30395],[50158,93505],[88042,91537],[88783,98980],[26133,62669],[18399,29721],[20885,56202],[16037,33314],[87365,95737],[59601,92068],[70050,82054],[16975,55849],[76616,81391],[36146,96602],[91185,95214],[96309,97814],[71534,83792],[179,53670],[26123,92326],[75742,96754],[26443,66275],[21548,73545],[76050,97652],[36293,84905],[22142,81760],[15756,79253],[76866,89741],[86402,88975],[16908,82956],[12141,96001],[56383,97391],[88348,99577],[29902,75519],[30676,74808],[51727,75102],[97823,98639],[72439,87965],[30803,50683],[85080,99484],[5594,98106],[2760,46296],[47533,58246],[8205,97838],[89763,94389],[52443,99806],[79542,88687],[58294,78592],[14867,60027],[63943,91010],[61364,82127],[12415,68451],[51201,81319],[71053,73948],[38624,91359],[31837,81904],[26192,59235],[910,5941],[8997,35937],[97872,99876],[50810,71635],[58404,68669],[57331,75482],[76809,96131],[45222,87848],[37678,85939],[10276,95259],[28021,92089],[16815,25747],[16753,44683],[78350,82642],[30645,75860],[32956,95138],[4878,34844],[76412,99306],[62419,89924],[88176,90122],[12259,57976],[68789,88137],[96540,99603],[99448,99478],[56739,72778],[11204,70095],[58026,70548],[60751,72412],[33580,96973],[6075,59970],[38577,45848],[34323,67859],[86827,87402],[61345,78458],[3288,95411],[91989,92843],[12024,96666],[1548,36314],[15916,22047],[72570,77735],[3150,82730],[29938,87419],[3259,73004],[77533,85848],[21380,64022],[38280,50124],[33591,96391],[89157,99054],[514,45720],[72333,89914],[59863,76925],[76504,88928],[12658,76955],[71416,94709],[50688,55862],[70752,99646],[11366,34159],[23326,45511],[25235,56951],[69981,90685],[6387,50320],[47369,86588],[48504,62014],[56028,90391],[32531,95597],[82542,84609],[40562,54965],[69144,89454],[62872,94585],[23544,70197],[7742,51211],[47831,49821],[30882,79725],[49911,78727],[36600,90185],[84831,91524],[82799,91672],[15403,75264],[18159,35614],[97743,99184],[74134,80378],[19177,79124],[49928,50712],[90685,93031],[77049,98537],[57192,62318],[175,90210],[14185,93802],[99926,99999],[31635,72386],[35055,77002],[24277,58889],[44638,69958],[40992,46376],[66426,83197],[82149,85405],[43221,46434],[15842,39863],[84878,93250],[78779,97415],[32062,57135],[12561,19492],[97688,98441],[22138,35671],[34486,71909],[17053,92600],[81763,93799],[10332,75076],[38403,79615],[6559,65363],[65118,98174],[71241,86369],[61130,73017],[16396,25454],[56244,61739],[2581,24905],[91238,95759],[65756,70863],[86472,86698],[63986,92213],[31815,74986],[33236,86796],[15702,55328],[88435,98366],[16040,20426],[96775,97770],[87907,92673],[38735,93474],[73250,91658],[60026,89471],[85060,99326],[16321,28564],[78516,99612],[43870,68015],[40883,53790],[99723,99857],[96972,98246],[76536,96819],[73413,89954],[30890,91764],[93803,93905],[44175,87670],[5947,11087],[48144,78965],[28399,29088],[95263,98942],[98467,98755],[74973,80724],[69391,99535],[43253,89939],[62899,72585],[43142,94506],[38742,66714],[44119,92088],[23718,48531],[98780,99803],[98598,99663],[44102,95170],[21608,48488],[54276,89149],[72569,93670],[89797,95460],[17132,65971],[54420,55361],[31676,89354],[16455,93963],[27198,75756],[55367,62289],[16026,95306],[814,13814],[84846,94736],[90381,96223],[25787,51823],[46228,76487],[35544,65634],[84459,97365],[48958,69281],[57050,97515],[77436,83350],[42271,65612],[26336,36556],[42788,46192],[35234,68920],[21939,79289],[23668,31216],[4671,22183],[1482,17773],[55438,90597],[54202,64322],[12303,35280],[56451,85541],[1207,86552],[88841,94124],[55083,82837],[12649,46258],[52977,92437],[24011,59875],[85585,91318],[8247,14036],[37252,42100],[5018,44180],[70729,78397],[7641,55338],[81004,99115],[46608,61213],[53489,92708],[85961,96470],[61759,70428],[40233,69229],[30238,85388],[11078,37603],[6014,7270],[14997,78021],[95926,95968],[88706,97429],[159,56720],[5406,91488],[86719,91254],[91926,95190],[9037,74317],[61781,99537],[33024,67192],[19464,97619],[33020,44145],[50983,79473],[36662,54465],[18734,30731],[43891,74908],[16189,36429],[94591,99869],[88912,89543],[70943,81713],[33230,86426],[96792,97726],[82015,93509],[7305,11356],[27016,56735],[48432,83357],[63427,71560],[16979,21772],[51978,56625],[66358,94179],[8524,60584],[22022,76610],[30246,92057],[71913,98265],[85481,93136],[30985,79469],[18106,52156],[64138,81166],[42513,71033],[21469,53072],[51108,67633],[33416,67012],[16788,71081],[53493,74531],[15333,28405],[39502,98665],[7150,68008],[82240,88406],[72204,96773],[82257,95971],[44407,58529],[58431,83741],[22270,26375],[75364,91548],[41176,58874],[14463,65864],[66001,86594],[36679,47141],[81072,98669],[28239,71527],[34111,57190],[38663,62644],[95335,97583],[83699,97090],[20081,79025],[76976,95944],[82059,85633],[56621,69005],[93304,98341],[41662,92206],[72135,78469],[69695,70560],[53198,86724],[17436,76667],[2899,94522],[56167,97985],[39454,72853],[11739,58953],[63189,73818],[30144,55452],[49238,61167],[66772,84596],[75333,79150],[80082,89729],[87350,96717],[44333,89884],[53810,98412],[65463,83084],[14054,76941],[73655,96303],[98854,99481],[82495,90541],[99212,99761],[58863,62943],[24282,79009],[41345,60866],[77036,92121],[16118,58862],[53008,79797],[87109,99696],[14006,70512],[3463,25761],[10983,16066],[33852,49087],[51106,80670],[68159,98247],[17860,65766],[6622,45122],[72226,84403],[25948,36703],[93368,93637],[29080,35214],[79572,94529],[50734,94593],[43666,90464],[81540,93564],[71102,76045],[15471,33475],[10298,14516],[14797,63284],[56575,78124],[98667,98679],[37782,76096],[93247,95070],[75633,95552],[49560,78743],[74061,94509],[92015,96465],[12025,15094],[56185,83194],[61830,69299],[22513,44393],[53963,72500],[12713,24071],[59361,88779],[92044,96038],[29068,84068],[57597,93437],[95026,95284],[56538,71994],[71242,96363],[88364,98544],[77186,95557],[76170,89686],[36508,97790],[85299,99080],[72617,77632],[16254,17529],[78878,85681],[11216,84380],[22752,62573],[47866,86752],[26560,64386],[60956,95279],[9687,44844],[43203,93371],[90573,95804],[49763,88879],[59461,94562],[55,48398],[5537,22175],[54372,88352],[45583,66946],[69968,75765],[28187,37145],[98023,99561],[31472,49551],[90743,98962],[82347,91843],[41403,59842],[15007,19343],[84217,98503],[14228,63284],[47228,87782],[90546,97115],[9804,62778],[63153,68028],[54475,85218],[97729,99270],[6059,52585],[98466,98947],[96732,96843],[54565,66559],[69314,70771],[68603,92273],[21605,89629],[94436,99825],[41785,63032],[63045,77337],[27785,30452],[15959,72417],[79359,96794],[93408,95865],[26088,69215],[25622,74172],[63483,72165],[63638,89335],[12729,22167],[67796,85495],[58165,94150],[14242,32256],[30183,60913],[45042,98414],[86078,96914],[14585,87116],[97614,98901],[60737,93515],[48756,83097],[18549,84857],[16419,93220],[49165,78242],[26230,88353],[60910,80361],[13267,82699],[3348,23171],[96549,97209],[27312,87909],[27497,44170],[27598,57247],[68625,98438],[23251,39769],[62853,89852],[59120,89960],[52074,74908],[41857,75660],[25013,35751],[59122,78309],[16010,20492],[85501,87306],[57858,64663],[6577,99839],[89607,99155],[17313,96043],[70315,96183],[20415,76185],[50000,81970],[13927,38067],[40087,94976],[58433,68351],[67672,72257],[15886,17140],[14620,70999],[41286,94396],[98514,99620],[82724,96236],[83122,92141],[61683,93276],[32366,82984],[45691,53301],[11736,39355],[17697,39890],[96624,97854],[20188,48083],[4075,78460],[41641,93368],[52139,75045],[85858,90196],[16141,71187],[26511,96830],[59685,65998],[45713,99019],[91495,91983],[10188,60261],[36990,77584],[69751,98455],[21461,35273],[72431,83686],[57253,71576],[22910,25586],[50982,76566],[53962,95546],[12470,90060],[45344,74177],[76979,99770],[17608,82176],[32888,37449],[45367,93833],[78873,96313],[69244,81190],[89397,95045],[59765,62412],[94344,96557],[12700,46049],[34255,95874],[3470,44452],[77281,99016],[38861,98635],[82339,86919],[32839,70247],[25189,81152],[96260,98692],[48601,70836],[13377,14555],[984,27046],[20501,75021],[87090,88483],[71284,94798],[37720,53661],[11829,21325],[45471,65253],[5839,74266],[81954,90789],[51810,78493],[78826,87349],[78599,81472],[72057,99195],[11350,86164],[87392,92368],[8650,37671],[14265,75448],[85911,91708],[10563,39988],[8761,58705],[20542,54799],[42578,91998],[49662,64917],[59384,92791],[3909,97563],[52226,97854],[31546,56161],[71134,91907],[55978,89241],[15872,27610],[12401,33563],[75042,97045],[12815,73359],[89773,99152],[54759,83346],[74892,95999],[13658,58830],[87896,91825],[25388,37729],[77720,97146],[42906,49379],[20349,32224],[97930,99893],[17695,38450],[93677,96459],[98742,99379],[9311,22435],[48241,62080],[85047,95115],[3284,26309],[35588,82665],[73774,77006],[46099,72652],[60143,82329],[71075,93983],[6139,11940],[15612,90825],[92758,98319],[81700,93952],[97492,98271],[36035,41902],[79713,98646],[6619,28330],[80809,81933],[89719,95047],[96915,98484],[56116,88690],[62182,99034],[16390,52705],[26684,91765],[84994,97955],[87754,89567],[50529,93115],[57829,91835],[17998,74644],[67556,90458],[37442,44317],[47008,58930],[8788,49418],[5321,18306],[2376,41826],[12258,29058],[50139,72988],[22920,46273],[87763,90059],[60349,81681],[44255,88460],[93452,94080],[77726,86666],[75899,89759],[24320,25872],[75644,84894],[3408,13499],[70738,95982],[11951,66605],[94299,96683],[17576,90013],[63429,91410],[42553,68346],[72401,87954],[66632,97299],[95847,96095],[71048,77223],[71038,71358],[46951,85606],[33725,85131],[76754,95406],[1021,5034],[52300,72875],[21071,44131],[22647,55531],[31406,76458],[51814,85229],[26405,34535],[72221,99860],[26561,31164],[6831,73823],[30813,77808],[96406,99867],[97926,99876],[75291,91876],[65310,65905],[68880,70319],[29593,39950],[84042,97786],[10386,14500],[53848,69554],[98172,99529],[15701,80499],[76001,84484],[33356,37158],[69593,77600],[95130,99838],[8482,64384],[9149,80333],[95936,98574],[24035,80560],[33710,43979],[87200,96128],[84891,92613],[35263,40989],[40599,47654],[27742,97413],[24248,70494],[86842,97667],[21598,42057],[27932,65162],[2611,67658],[53127,88553],[11176,28159],[9036,17382],[78237,82078],[4796,19453],[71649,79735],[6608,83209],[1569,44717],[50560,95426],[73777,84564],[31728,92420],[18981,36878],[88376,97394],[46053,77422],[28639,77317],[14257,70802],[14580,34003],[17784,18456],[52858,69603],[79876,91895],[93678,97188],[1470,3599],[22825,34180],[39919,86226],[73705,74171],[98047,98439],[72758,76140],[83019,93092],[37229,39236],[11584,50127],[42382,48664],[61978,95533],[96519,98751],[67433,73530],[19894,64695],[90780,92485],[40611,53802],[8782,84321],[27919,90131],[67997,89518],[76849,83781],[63870,93871],[96757,96927],[57035,90902],[37746,46207],[52456,91128],[30531,74211],[84157,92551],[79035,81830],[86441,93870],[8705,31735],[42903,48101],[40089,46974],[12962,21729],[3785,57995],[40846,75291],[92461,93259],[57912,86184],[16320,42201],[13231,51682],[73548,76410],[47750,95627],[16265,84084],[99051,99255],[90187,91234],[73433,76456],[96881,97928],[13676,78398],[11440,53661],[89507,95840],[72542,90044],[67520,76011],[2520,91861],[79451,97190],[75290,86127],[78965,85404],[85410,92594],[82660,84450],[22572,47150],[47213,67501],[64815,76639],[9207,74013],[78587,81676],[29019,69622],[36994,94478],[78226,84624],[44434,88575],[47934,93778],[92757,98635],[45358,82379],[87027,96159],[59788,97254],[81542,84553],[89130,94870],[41089,57230],[4910,70944],[20702,77756],[12083,48947],[1982,67319],[52910,79567],[79448,87660],[32793,88685],[69098,81558],[48688,58174],[23939,56104],[66382,71705],[16607,28508],[55598,95187],[84080,94549],[94754,99347],[28554,75525],[30633,86799],[55617,95549],[8281,8541],[36405,81228],[14836,93129],[44616,55527],[2346,26182],[79678,83479],[34432,39384],[10058,13874],[44133,91094],[99798,99921],[84758,85649],[37400,92177],[89208,99362],[33056,71511],[70335,90449],[67067,71339],[61271,82705],[69234,92787],[19771,64807],[1994,41357],[68797,70712],[17996,33150],[87211,90081],[9212,69801],[10934,17781],[71618,73375],[58829,90368],[13320,37774],[89031,89949],[30223,35800],[90198,95485],[44026,63725],[44164,61316],[10268,38468],[48448,95832],[7955,76751],[61684,97586],[28243,90818],[85840,97846],[73490,98136],[13842,96818],[73791,84527],[61970,93296],[81463,97067],[4686,55036],[53984,80137],[53844,72029],[33738,73258],[80111,82629],[65507,67509],[52494,92626],[18332,82791],[67015,99477],[86680,91871],[21368,41390],[32123,42273],[58643,79347],[87701,96330],[26985,86069],[49328,65131],[31341,55675],[81660,83840],[28679,32325],[62646,71476],[57622,65773],[27028,30375],[9056,48649],[77773,80473],[272,34726],[75285,96308],[9017,61836],[87434,97212],[89037,93199],[16034,64371],[57108,85908],[45755,60381],[32035,61080],[51690,85926],[29145,30888],[44648,96814],[53160,77292],[87022,97089],[73592,74991],[30938,39313],[49489,97856],[69620,91040],[1011,18077],[84392,85070],[87272,94231],[16335,93002],[49364,60041],[28710,56180],[59052,83621],[27686,79269],[74416,90928],[87357,92766],[80774,87802],[14076,90746],[94339,99332],[75763,86596],[63383,93769],[59895,73139],[83540,88443],[96623,99150],[69150,78386],[61429,67945],[13919,14015],[39728,64230],[76180,81498],[91780,99729],[86548,96274],[63234,67411],[84270,96047],[40285,66600],[13748,24491],[4312,62378],[38226,58094],[42589,84335],[32568,37037],[4737,68165],[81276,90528],[11229,88057],[28774,78938],[92910,97647],[43287,46058],[39620,46487],[77929,94902],[36157,44786],[68495,93186],[27447,46666],[44783,56524],[39702,93491],[7791,32096],[86498,97564],[94954,95205],[80138,83000],[24697,96806],[96591,99575],[24198,75648],[29049,96667],[73627,76349],[35714,68834],[45866,71800],[20923,62307],[47528,81140],[50537,91615],[32054,61642],[79662,95219],[50106,84006],[94468,95076],[53176,93717],[13375,66767],[32381,87250],[26756,96235],[69469,74822],[34224,49015],[85980,97996],[35221,68853],[55624,86046],[15042,16664],[94595,96418],[43974,92547],[85189,91509],[96348,99366],[22357,78119],[59320,66960],[86399,92181],[20131,60347],[40743,62120],[36257,76302],[99944,99945],[89604,90347],[48381,75857],[31929,37570],[47785,96032],[42848,66985],[51979,89937],[93165,95468],[72549,75195],[10705,34954],[62236,85752],[12842,24323],[60274,71433],[60790,81470],[74453,97975],[85539,99189],[55379,87354],[72712,99647],[67369,97492],[10359,25025],[34167,64858],[97297,97695],[39325,80268],[24046,89216],[70660,89661],[10346,65711],[97703,98757],[72019,81633],[67881,85499],[38989,45535],[30462,51983],[93420,99013],[81852,89801],[23592,84614],[25322,50101],[71411,96166],[80823,93814],[52807,85935],[49200,71161],[89104,91384],[93268,96483],[99864,99874],[5544,83853],[30805,61641],[10341,61439],[46482,74062],[76637,97125],[10024,12036],[30514,83647],[68939,94235],[48084,89459],[16998,82805],[90274,98154],[533,43354],[27316,61628],[65682,69511],[13705,52980],[37807,80290],[2169,36901],[36046,84215],[23199,69856],[22639,63704],[60598,80014],[57538,81494],[48430,55677],[85105,93377],[15868,88183],[15006,42307],[50325,99723],[67893,69296],[64088,64973],[22791,94011],[47247,59178],[77072,87094],[85238,95248],[19315,39650],[55335,87588],[92684,93604],[27018,62313],[61370,93303],[83505,94290],[9855,66263],[28804,56949],[34360,85936],[57324,99024],[73707,98170],[85546,89725],[49480,83039],[5331,49757],[17281,62338],[85043,88187],[49658,67659],[71593,89875],[78597,83263],[67735,73518],[28502,44035],[91999,93977],[74107,92145],[42234,68754],[34683,42127],[83903,97296],[20905,70688],[85520,92607],[74663,93556],[11751,61642],[57528,73186],[19444,28262],[13297,87392],[70579,92875],[37935,44350],[13758,89781],[51884,84491],[96215,99733],[229,2029],[85371,96934],[11118,80772],[94288,98680],[1191,10224],[26534,55573],[69549,95592],[54766,62266],[33669,34271],[88876,88928],[18933,66247],[763,21777],[99921,99968],[56767,79229],[80269,98879],[17193,47571],[65085,91969],[10164,80635],[54031,74963],[59540,95484],[3048,26407],[77022,98224],[48022,72115],[67393,70805],[92986,94959],[72203,80462],[86317,87659],[70582,72108],[1918,63103],[73575,82849],[56530,87778],[64256,77416],[1711,55738],[90032,92781],[21243,49960],[68833,92535],[74307,87866],[83064,95162],[28616,56840]], 
  targetFriend = 2304

Enter fullscreen mode Exit fullscreen mode
  • Output: 2027

Constraints:

  • n == times.length
  • 2 <= n <= 104
  • times[i].length == 2
  • 1 <= arrivali < leavingi <= 105
  • 0 <= targetFriend <= n - 1
  • Each arrivali time is distinct.

Hint:

  1. Sort times by arrival time.
  2. for each arrival_i find the smallest unoccupied chair and mark it as occupied until leaving_i.

Solution:

We need to simulate the arrival and departure of friends at a party and manage the assignment of the smallest available chairs. Here's the step-by-step approach:

Approach:

  1. Sort by Arrival Times:

    • Sort the times array based on the arrival time.
    • This helps process friends in the order of their arrivals.
  2. Use Priority Queues (Min-Heaps):

    • Use a min-heap to manage unoccupied chairs (availableChairs).
    • Use another min-heap to track the occupied chairs along with their release times (occupiedChairs).
  3. Iterate Through Sorted Times:

    • For each friend's arrival:
      • Free up chairs of friends who have already left by comparing the current time to the friends' departure times. Move those chairs back to availableChairs.
      • Assign the smallest available chair (from availableChairs) to the arriving friend. If no chairs are free, assign the next smallest unused chair.
      • Push this chair and the friend's leaving time into occupiedChairs.
  4. Track Target Friend's Chair:

    • When the targetFriend arrives, record the chair assigned to them.
  5. Edge Cases:

    • Consider cases where multiple friends arrive at the same time.
    • Ensure that the smallest chair is always assigned.

Let's implement this solution in PHP: 1942. The Number of the Smallest Unoccupied Chair

<?php
/**
 * @param Integer[][] $times
 * @param Integer $targetFriend
 * @return Integer
 */
function smallestChair($times, $targetFriend) {
    ...
    ...
    ...
    /**
     * go to ./solution.php
     */
}

// Example usage:
$cost1 = [[15, 96], [36, 2]];
$cost2 = [[1, 3, 5], [4, 1, 1], [1, 5, 3]];
$cost3 = [[2, 5, 1], [3, 4, 7], [8, 1, 2], [6, 2, 4], [3, 8, 8]];

// Example usage:
$times1 = [[1, 4], [2, 3], [4, 6]];
$targetFriend1 = 1;
echo smallestChair($times1, $targetFriend1);  // Output: 1

$times2 = [[3, 10], [1, 5], [2, 6]];
$targetFriend2 = 0;
echo smallestChair($times2, $targetFriend2);  // Output: 2
?>
Enter fullscreen mode Exit fullscreen mode

Explanation:

  • Sorting ensures friends are processed in order of their arrival times.
  • Using a min-heap for available chairs allows us to always assign the smallest unoccupied chair.
  • Occupied chairs heap helps track when friends leave, making their chairs available again.
  • When the targetFriend arrives, we directly return the chair assigned to them.

Complexity:

  • Time Complexity: O(n log n), primarily due to sorting the times array and managing the heaps.
  • Space Complexity: O(n), for storing chairs in the heaps.

This solution efficiently handles the assignment of chairs, ensuring that each friend gets the smallest available chair, and accurately tracks when chairs become available again.

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)