diff --git a/t/pt-table-checksum/bugs.t b/t/pt-table-checksum/bugs.t new file mode 100644 index 00000000..3dc8ffc3 --- /dev/null +++ b/t/pt-table-checksum/bugs.t @@ -0,0 +1,82 @@ +#!/usr/bin/env perl + +BEGIN { + die "The PERCONA_TOOLKIT_BRANCH environment variable is not set.\n" + unless $ENV{PERCONA_TOOLKIT_BRANCH} && -d $ENV{PERCONA_TOOLKIT_BRANCH}; + unshift @INC, "$ENV{PERCONA_TOOLKIT_BRANCH}/lib"; +}; + +use strict; +use warnings FATAL => 'all'; +use English qw(-no_match_vars); +use Test::More; + +# Hostnames make testing less accurate. Tests need to see +# that such-and-such happened on specific slave hosts, but +# the sandbox servers are all on one host so all slaves have +# the same hostname. +$ENV{PERCONA_TOOLKIT_TEST_USE_DSN_NAMES} = 1; + +use Data::Dumper; +use PerconaTest; +use Sandbox; + +# Fix @INC because pt-table-checksum uses subclass OobNibbleIterator. +shift @INC; # our unshift (above) +shift @INC; # PerconaTest's unshift +require "$trunk/bin/pt-table-checksum"; + +my $dp = new DSNParser(opts=>$dsn_opts); +my $sb = new Sandbox(basedir => '/tmp', DSNParser => $dp); +my $master_dbh = $sb->get_dbh_for('master'); +my $slave_dbh = $sb->get_dbh_for('slave1'); + +if ( !$master_dbh ) { + plan skip_all => 'Cannot connect to sandbox master'; +} +elsif ( !$slave_dbh ) { + plan skip_all => 'Cannot connect to sandbox slave1'; +} +else { + plan tests => 2; +} + +# The sandbox servers run with lock_wait_timeout=3 and it's not dynamic +# so we need to specify --lock-wait-timeout=3 else the tool will die. +my $master_dsn = 'h=127.1,P=12345,u=msandbox,p=msandbox'; +my @args = ($master_dsn, qw(--lock-wait-timeout 3)); +my $output; +my $exit_status; +my $sample = "t/pt-table-checksum/samples/"; + +# ############################################################################ +# https://bugs.launchpad.net/percona-toolkit/+bug/995274 +# Can't use an undefined value as an ARRAY reference at pt-table-checksum +# line 2206 +# ############################################################################ +$sb->load_file('master', "$sample/undef-arrayref-bug-995274.sql"); +PerconaTest::wait_for_table($slave_dbh, "test.GroupMembers", "id=493076"); + +$output = output( + sub { $exit_status = pt_table_checksum::main(@args, qw(-d test)) }, + stderr => 1, +); + +is( + $exit_status, + 0, + "Bug 995274: zero exit status" +); + +cmp_ok( + PerconaTest::count_checksum_results($output, 'rows'), + '>', + 1, + "Bug 995274: checksummed rows" +); + +# ############################################################################# +# Done. +# ############################################################################# +$sb->wipe_clean($master_dbh); +exit; diff --git a/t/pt-table-checksum/samples/undef-arrayref-bug-995274.sql b/t/pt-table-checksum/samples/undef-arrayref-bug-995274.sql new file mode 100644 index 00000000..b7683048 --- /dev/null +++ b/t/pt-table-checksum/samples/undef-arrayref-bug-995274.sql @@ -0,0 +1,17 @@ +DROP DATABASE IF EXISTS test; +CREATE DATABASE test; +USE test; +CREATE TABLE `GroupMembers` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `GroupId` int(11) NOT NULL DEFAULT '0', + `MemberId` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + UNIQUE KEY `GroupMembers1` (`GroupId`,`MemberId`), + UNIQUE KEY `SHREDDER_GM1` (`MemberId`,`GroupId`) +) ENGINE=InnoDB; + +/*!40000 ALTER TABLE `GroupMembers` DISABLE KEYS */; + +INSERT INTO `GroupMembers` VALUES (1,2,1),(3,3,10),(6,3,12),(9,3,22),(13,3,28),(26,3,50),(34,3,60),(39,3,66),(43,3,68),(47,3,70),(51,3,72),(55,3,74),(59,3,76),(64,3,78),(73,3,92),(85,3,114),(99,3,132),(104,3,138),(109,3,144),(114,3,150),(121,3,160),(136,3,186),(143,3,196),(150,3,206),(155,3,212),(166,3,230),(171,3,236),(176,3,242),(181,3,248),(188,3,258),(193,3,264),(202,3,282),(221,3,304),(241,3,314),(246,3,320),(258,3,338),(265,3,348),(270,3,354),(275,3,360),(280,3,366),(294,3,400),(302,3,414),(316,3,432),(321,3,438),(334,3,448),(341,3,458),(346,3,464),(351,3,470),(367,3,480),(372,3,486),(386,3,512),(394,3,522),(401,3,532),(404,3,534),(410,3,540),(416,3,546),(421,3,552),(426,3,558),(431,3,564),(440,3,578),(445,3,584),(474,3,638),(512,3,660),(542,3,710),(557,3,728),(578,3,762),(595,3,800),(608,3,822),(615,3,832),(620,3,838),(625,3,844),(630,3,850),(635,3,856),(650,3,874),(656,3,880),(665,3,890),(672,3,900),(682,3,918),(705,3,952),(710,3,958),(723,3,976),(728,3,982),(745,3,1016),(758,3,1038),(768,3,1044),(776,3,1058),(797,3,1068),(802,3,1074),(813,3,1092),(860,3,1142),(872,3,1156),(877,3,1162),(900,3,1204),(913,3,1226),(941,3,1276),(946,3,1282),(955,3,1292),(962,3,1302),(967,3,1308),(974,3,1318),(981,3,1328),(986,3,1334),(1003,3,1364),(1070,3,1494),(1077,3,1504),(1082,3,1510),(1095,3,1532),(1114,3,1566),(1123,3,1580),(1130,3,1590),(1153,3,1632),(1164,3,1650),(1169,3,1656),(1198,3,1710),(1211,3,1732),(1221,3,1746),(1233,3,1760),(1238,3,1766),(1367,3,1788),(1372,3,1794),(1404,3,1840),(1409,3,1846),(1421,3,1868),(1426,3,1874),(1447,3,1916),(1452,3,1922),(1477,3,1968),(1486,3,1982),(1491,3,1988),(1510,3,2022),(1558,3,2140),(1567,3,2154),(1572,3,2160),(1583,3,2178),(1590,3,2188),(1609,3,2222),(1614,3,2228),(1633,3,2262),(1638,3,2268),(1645,3,2278),(1650,3,2284),(1661,3,2302),(1670,3,2316),(1675,3,2322),(1686,3,2340),(1695,3,2354),(1702,3,2364),(1709,3,2374),(1720,3,2392),(1737,3,2422),(1748,3,2440),(1753,3,2446),(1760,3,2456),(1765,3,2462),(1784,3,2496),(1789,3,2502),(1794,3,2508),(1802,3,2518),(1832,3,2572),(1849,3,2602),(1854,3,2608),(1871,3,2638),(1876,3,2644),(1881,3,2650),(1886,3,2656),(1893,3,2666),(1902,3,2680),(1907,3,2686),(1916,3,2700),(1921,3,2706),(1928,3,2716),(1941,3,2738),(1956,3,2764),(1971,3,2790),(1992,3,2828),(2003,3,2846),(2008,3,2852),(2013,3,2858),(2022,3,2872),(2029,3,2882),(2034,3,2888),(2041,3,2898),(2052,3,2916),(2061,3,2930),(2066,3,2936),(2081,3,2962),(2090,3,2976),(2095,3,2982),(2114,3,3016),(2121,3,3026),(2130,3,3040),(2161,3,3098),(2180,3,3132),(2191,3,3150),(2198,3,3160),(2207,3,3174),(2214,3,3184),(2219,3,3190),(2224,3,3196),(2249,3,3242),(2254,3,3248),(2259,3,3254),(2270,3,3272),(2281,3,3290),(2306,3,3336),(2313,3,3346),(2318,3,3352),(2325,3,3362),(2330,3,3368),(2339,3,3382),(2354,3,3408),(2365,3,3426),(2374,3,3440),(2381,3,3450),(2386,3,3456),(2391,3,3462),(2398,3,3472),(2403,3,3478),(2416,3,3500),(2439,3,3542),(2446,3,3552),(2467,3,3590),(2472,3,3596),(2483,3,3614),(2502,3,3648),(2511,3,3662),(2536,3,3708),(2545,3,3723),(2584,3,3797),(2593,3,3811),(3056,3,3901),(3143,3,4007),(3186,3,4053),(3221,3,4091),(3253,3,4141),(3258,3,4147),(3275,3,4177),(3300,3,4215),(3309,3,4229),(3342,3,4287),(3347,3,4293),(3356,3,4307),(3375,3,4341),(3408,3,4403),(3532,3,4521),(3546,3,4547),(3551,3,4553),(3558,3,4563),(3565,3,4573),(3586,3,4611),(3604,3,4645),(3615,3,4663),(3628,3,4685),(3633,3,4691),(3638,3,4697),(3665,3,4747),(3670,3,4753),(3679,3,4767),(3692,3,4789),(3701,3,4803),(3799,3,4877),(3813,3,4907),(3818,3,4913),(3847,3,4975),(3852,3,4981),(3877,3,5043),(3887,3,5061),(3894,3,5071),(3901,3,5081),(3923,3,5119),(3974,3,5157),(3979,3,5163),(3984,3,5169),(3993,3,5183),(4002,3,5197),(4011,3,5211),(4018,3,5221),(4067,3,5259),(4080,3,5273),(4102,3,5307),(4132,3,5337),(4140,3,5347),(4154,3,5365),(4160,3,5371),(4165,3,5377),(4171,3,5383),(4181,3,5405),(4198,3,5435),(4207,3,5449),(4212,3,5455),(4217,3,5461),(4222,3,5467),(4250,3,5533),(4258,3,5543),(4271,3,5565),(4280,3,5579),(4285,3,5585),(4300,3,5611),(4305,3,5617),(4322,3,5647),(4327,3,5653),(4332,3,5659),(4337,3,5665),(4342,3,5671),(4347,3,5677),(4364,3,5707),(4379,3,5733),(4384,3,5739),(4389,3,5745),(4394,3,5751),(4407,3,5773),(4412,3,5779),(4417,3,5785),(4434,3,5815),(4439,3,5821),(4444,3,5827),(4449,3,5833),(4456,3,5843),(4462,3,5849),(4489,3,5883),(4497,3,5889),(4504,3,5895),(4513,3,5909),(4521,3,5915),(4526,3,5921),(4553,3,5963),(4560,3,5977),(4576,3,6007),(4611,3,6061),(4618,3,6071),(4637,3,6105),(4648,3,6123),(4653,3,6129),(4658,3,6135),(4675,3,6165),(4684,3,6179),(4689,3,6185),(4694,3,6191),(4705,3,6209),(4771,3,6283),(4785,3,6305),(4799,3,6335),(4829,3,6389),(4845,3,6415),(4850,3,6421),(4882,3,6459),(4890,3,6473),(4896,3,6483),(4904,3,6493),(4909,3,6499),(4914,3,6505),(4919,3,6511),(4937,3,6525),(4952,3,6551),(4957,3,6557),(5012,3,6615),(5017,3,6621),(5022,3,6627),(5027,3,6633),(5032,3,6639),(5037,3,6645),(5054,3,6675),(5059,3,6681),(5064,3,6687),(5073,3,6701),(5080,3,6711),(5095,3,6737),(5100,3,6743),(5109,3,6757),(5142,3,6767),(5164,3,6805),(5189,3,6839),(5204,3,6865),(5222,3,6903),(5245,3,6945),(5250,3,6951),(5255,3,6957),(5263,3,6968),(5277,3,6986),(5294,3,7016),(5305,3,7034),(5310,3,7040),(5317,3,7050),(5324,3,7060),(5335,3,7078),(5364,3,7096),(5374,3,7106),(5385,3,7120),(5391,3,7126),(5400,3,7140),(5409,3,7158),(5414,3,7164),(5427,3,7186),(5433,3,7192),(5442,3,7206),(5459,3,7236),(5468,3,7250),(5477,3,7264),(5486,3,7278),(5501,3,7304),(5508,3,7314),(5515,3,7324),(5520,3,7330),(5531,3,7348),(5623,3,7442),(5639,3,7468),(5673,3,7506),(5678,3,7512),(5683,3,7518),(5688,3,7524),(5734,3,7606),(5739,3,7612),(5744,3,7618),(5749,3,7624),(5756,3,7634),(5763,3,7644),(5770,3,7654),(5785,3,7680),(5794,3,7694),(5799,3,7700),(5806,3,7710),(5837,3,7732),(5860,3,7786),(5868,3,7800),(5888,3,7834),(5902,3,7860),(5907,3,7866),(5913,3,7876),(5933,3,7910),(5946,3,7932),(5973,3,7954),(5989,3,7984),(6002,3,8010),(6008,3,8016),(6015,3,8026),(6026,3,8044),(6045,3,8078),(6064,3,8112),(6108,3,8158),(6113,3,8164),(6131,3,8194),(6142,3,8212),(6147,3,8218),(6152,3,8224),(6163,3,8242),(6178,3,8268),(6190,3,8286),(6197,3,8296),(6210,3,8318),(6215,3,8324),(6220,3,8330),(6233,3,8352),(6313,3,8446),(6333,3,8468),(6342,3,8486),(6352,3,8504),(6359,3,8510),(6374,3,8528),(6379,3,8534),(6397,3,8568),(6402,3,8574),(6415,3,8596),(6426,3,8614),(6431,3,8620),(6438,3,8630),(6445,3,8640),(6464,3,8674),(6473,3,8688),(6488,3,8714),(6493,3,8720),(6504,3,8738),(6513,3,8752),(6518,3,8758),(6523,3,8764),(6530,3,8774),(6537,3,8784),(6544,3,8794),(6549,3,8800),(6556,3,8810),(6561,3,8816),(6572,3,8834),(6591,3,8868),(6594,3,8870),(6601,3,8880),(6608,3,8890),(6621,3,8912),(6640,3,8946),(6645,3,8952),(6652,3,8962),(6687,3,9028),(6694,3,9038),(6701,3,9048),(6706,3,9054),(6711,3,9060),(6716,3,9066),(6739,3,9108),(6836,3,9118),(6850,3,9156),(6855,3,9162),(6866,3,9172),(6898,3,9210),(6913,3,9236),(6923,3,9250),(6935,3,9268),(6942,3,9278),(6985,3,9336),(6992,3,9346),(7002,3,9360),(7015,3,9382),(7023,3,9392),(7039,3,9422),(7045,3,9428),(7051,3,9434),(7059,3,9444),(7065,3,9450),(7068,3,9452),(7074,3,9458),(7080,3,9464),(7102,3,9506),(7113,3,9524),(7144,3,9582),(7151,3,9592),(7158,3,9602),(7163,3,9608),(7168,3,9614),(7187,3,9648),(7194,3,9658),(7199,3,9664),(7230,3,9722),(7235,3,9728),(7242,3,9738),(7247,3,9744),(7252,3,9750),(7259,3,9760),(7274,3,9790),(7297,3,9828),(7302,3,9834),(7322,3,9876),(7329,3,9886),(7334,3,9892),(7347,3,9914),(7352,3,9920),(7369,3,9950),(7378,3,9964),(7385,3,9974),(7390,3,9980),(7397,3,9990),(7406,3,10004),(7413,3,10014),(7458,3,10052),(7466,3,10062),(7502,3,10136),(7525,3,10166),(7530,3,10172),(7535,3,10178),(7540,3,10184),(7560,3,10218),(7565,3,10224),(7572,3,10234),(7583,3,10252),(7590,3,10262),(7595,3,10268),(7608,3,10290),(7613,3,10296),(7618,3,10302),(7627,3,10316),(7632,3,10322),(7643,3,10340),(7648,3,10346),(7659,3,10364),(7664,3,10370),(7671,3,10380),(7676,3,10386),(7683,3,10396),(7690,3,10406),(7701,3,10424),(7706,3,10430),(7715,3,10444),(7722,3,10454),(7729,3,10464),(7734,3,10470),(7739,3,10476),(7744,3,10482),(7749,3,10488),(7762,3,10510),(7821,3,10536),(7847,3,10554),(7876,3,10600),(7882,3,10610),(7895,3,10632),(7904,3,10646),(7917,3,10668),(7924,3,10678),(7936,3,10696),(7949,3,10718),(7962,3,10740),(7971,3,10754),(7990,3,10788),(7995,3,10794),(8000,3,10800),(8007,3,10810),(8022,3,10836),(8059,3,10906),(8076,3,10936),(8081,3,10942),(8088,3,10952),(8093,3,10958),(8102,3,10972),(8107,3,10978),(8118,3,10996),(8188,3,11014),(8195,3,11020),(8202,3,11030),(8215,3,11052),(8222,3,11062),(8230,3,11076),(8263,3,11110),(8271,3,11120),(8276,3,11126),(8285,3,11140),(8304,3,11174),(8309,3,11180),(8316,3,11190),(8325,3,11204),(8330,3,11210),(8339,3,11224),(8352,3,11246),(8363,3,11264),(8370,3,11274),(8377,3,11284),(8392,3,11310),(8399,3,11320),(8418,3,11354),(8429,3,11372),(8434,3,11378),(8439,3,11384),(8444,3,11390),(8449,3,11396),(8454,3,11402),(8463,3,11416),(8468,3,11422),(8477,3,11436),(8484,3,11446),(8491,3,11456),(8496,3,11462),(8503,3,11472),(8508,3,11478),(8513,3,11484),(8686,3,11826),(8693,3,11836),(8700,3,11846),(8705,3,11852),(8712,3,11862),(8721,3,11876),(8726,3,11882),(8865,3,11912),(8872,3,11922),(8881,3,11936),(8893,3,11950),(8904,3,11968),(8916,3,11978),(8926,3,11992),(8938,3,12006),(8954,3,12032),(8961,3,12042),(8970,3,12056),(8975,3,12062),(8980,3,12068),(8985,3,12074),(8990,3,12080),(8995,3,12086),(9002,3,12096),(9007,3,12102),(9012,3,12108),(9021,3,12122),(9034,3,12144),(9046,3,12166),(9076,3,12184),(9083,3,12194),(9092,3,12200),(9139,3,12282),(9148,3,12296),(9155,3,12306),(9164,3,12320),(9169,3,12326),(9180,3,12344),(9199,3,12378),(9210,3,12396),(9227,3,12426),(9234,3,12436),(9243,3,12450),(9250,3,12460),(9265,3,12486),(9270,3,12492),(9275,3,12498),(9286,3,12516),(9311,3,12526),(9320,3,12540),(9326,3,12546),(9334,3,12556),(9348,3,12570),(9365,3,12580),(9378,3,12602),(9403,3,12648),(9410,3,12658),(9423,3,12680),(9428,3,12686),(9433,3,12692),(9438,3,12698),(9443,3,12704),(9448,3,12710),(9455,3,12720),(9462,3,12730),(9475,3,12752),(9480,3,12758),(9485,3,12764),(9500,3,12790),(9507,3,12800),(9514,3,12810),(9521,3,12820),(9526,3,12826),(9533,3,12836),(9544,3,12854),(9593,3,12948),(9738,3,13070),(9749,3,13088),(9754,3,13094),(9759,3,13100),(9764,3,13106),(9771,3,13116),(9776,3,13122),(9781,3,13128),(9786,3,13134),(9797,3,13152),(9806,3,13166),(9813,3,13176),(9820,3,13186),(9833,3,13208),(9846,3,13230),(9851,3,13236),(9856,3,13242),(9877,3,13280),(9882,3,13286),(9889,3,13296),(9896,3,13306),(9903,3,13316),(9908,3,13322),(9913,3,13328),(9956,3,13362),(9973,3,13372),(9978,3,13378),(9997,3,13412),(10004,3,13418),(10021,3,13448),(10028,3,13458),(10033,3,13464),(10038,3,13470),(10047,3,13484),(10052,3,13490),(10057,3,13496),(10070,3,13518),(10083,3,13540),(10105,3,13550),(10129,3,13592),(10138,3,13606),(10164,3,13628),(10175,3,13646),(10182,3,13656),(10189,3,13666),(10204,3,13692),(10223,3,13726),(10230,3,13736),(10235,3,13742),(10250,3,13768),(10255,3,13774),(10262,3,13784),(10271,3,13798),(10276,3,13804),(10281,3,13810),(10286,3,13816),(10293,3,13826),(10351,3,13880),(10364,3,13890),(10380,3,13916),(10385,3,13922),(10392,3,13932),(10405,3,13954),(10410,3,13960),(10423,3,13982),(10432,3,13996),(10439,3,14006),(10444,3,14012),(10451,3,14022),(10458,3,14032),(10465,3,14042),(10470,3,14048),(10483,3,14070),(10492,3,14084),(10503,3,14102),(10516,3,14124),(10521,3,14130),(10526,3,14136),(10531,3,14142),(10536,3,14148),(10541,3,14154),(10552,3,14172),(10561,3,14186),(10568,3,14196),(10573,3,14202),(10578,3,14208),(10595,3,14238),(10600,3,14244),(10607,3,14254),(10612,3,14260),(10617,3,14266),(10624,3,14276),(10629,3,14282),(10636,3,14292),(10643,3,14302),(10654,3,14320),(10659,3,14326),(10668,3,14340),(10675,3,14350),(10694,3,14384),(10703,3,14398),(10708,3,14404),(10772,3,14418),(10800,3,14436),(10806,3,14442),(10813,3,14452),(10826,3,14474),(10861,3,14512),(10872,3,14530),(10893,3,14564),(10912,3,14598),(10919,3,14608),(10924,3,14614),(10931,3,14624),(10938,3,14634),(10953,3,14660),(10958,3,14666),(10963,3,14672),(10968,3,14678),(10973,3,14684),(10978,3,14690),(10983,3,14696),(11011,3,14714),(11019,3,14724),(11024,3,14730),(11118,3,14856),(11135,3,14870),(11140,3,14876),(11151,3,14894),(11164,3,14916),(11169,3,14922),(11183,3,14948),(11195,3,14966),(11202,3,14976),(11211,3,14990),(11216,3,14996),(11233,3,15026),(11244,3,15044),(11257,3,15066),(11266,3,15080),(11307,3,15102),(11320,3,15124),(11343,3,15166),(11374,3,15196),(11381,3,15206),(11388,3,15216),(11393,3,15222),(11404,3,15240),(11431,3,15290),(11438,3,15300),(11448,3,15314),(11453,3,15320),(11460,3,15330),(11467,3,15340),(11476,3,15354),(11481,3,15360),(11488,3,15370),(11495,3,15380),(11502,3,15390),(11523,3,15400),(11538,3,15418),(11545,3,15428),(11557,3,15446),(11562,3,15452),(11603,3,15510),(11608,3,15516),(11615,3,15526),(11628,3,15548),(11643,3,15574),(11652,3,15588),(11657,3,15594),(11664,3,15604),(11671,3,15614),(11678,3,15624),(11683,3,15630),(11688,3,15636),(11693,3,15642),(11698,3,15648),(11719,3,15686),(11736,3,15716),(11745,3,15730),(11790,3,15764),(11810,3,15782),(11815,3,15788),(11820,3,15794),(11849,3,15832),(11854,3,15838),(11863,3,15852),(11872,3,15866),(11883,3,15884),(11888,3,15890),(11895,3,15900),(11916,3,15938),(11937,3,15976),(11946,3,15990),(11965,3,16024),(11974,3,16038),(11979,3,16044),(11984,3,16050),(11989,3,16056),(12004,3,16082),(12011,3,16092),(12016,3,16098),(12021,3,16104),(12030,3,16118),(12037,3,16128),(12048,3,16146),(12065,3,16176),(12070,3,16182),(12077,3,16192),(12088,3,16210),(12093,3,16216),(12098,3,16222),(12107,3,16236),(12112,3,16242),(12125,3,16264),(12136,3,16282),(12141,3,16288),(12148,3,16298),(12153,3,16304),(12160,3,16314),(12167,3,16324),(12180,3,16346),(12185,3,16352),(12190,3,16358),(12199,3,16372),(12218,3,16406),(12247,3,16460),(12256,3,16470),(12263,3,16480),(12268,3,16486),(12273,3,16492),(12278,3,16498),(12283,3,16504),(12288,3,16510),(12301,3,16532),(12306,3,16538),(12319,3,16560),(12324,3,16566),(12329,3,16572),(12338,3,16586),(12345,3,16596),(12358,3,16618),(12379,3,16656),(12384,3,16662),(12397,3,16684),(12410,3,16706),(12415,3,16712),(12420,3,16718),(12425,3,16724),(12430,3,16730),(12468,3,16800),(12477,3,16814),(12482,3,16820),(12487,3,16826),(12498,3,16844),(12505,3,16854),(12512,3,16864),(12525,3,16886),(12530,3,16892),(12535,3,16898),(12561,3,16904),(12570,3,16914),(12579,3,16924),(12599,3,16946),(12606,3,16956),(12615,3,16970),(12626,3,16988),(12644,3,16994),(12650,3,17000),(12661,3,17018),(12666,3,17024),(12671,3,17030),(12678,3,17040),(12683,3,17046),(12688,3,17052),(12693,3,17058),(12701,3,17068),(12750,3,17162),(12767,3,17192),(12776,3,17206),(12791,3,17232),(12796,3,17238),(12805,3,17252),(12810,3,17258),(12867,3,17304),(12888,3,17342),(12921,3,17364),(12936,3,17382),(12943,3,17392),(12964,3,17430),(12989,3,17476),(12994,3,17482),(12999,3,17488),(13006,3,17498),(13011,3,17504),(13022,3,17522),(13110,3,17628),(13127,3,17642),(13136,3,17656),(13190,3,17734),(13205,3,17760),(13210,3,17766),(13217,3,17776),(13242,3,17798),(13263,3,17836),(13280,3,17866),(13285,3,17872),(13292,3,17882),(13303,3,17900),(13308,3,17906),(13349,3,17984),(13358,3,17998),(13381,3,18040),(13410,3,18094),(13417,3,18104),(13430,3,18126),(13471,3,18204),(13480,3,18218),(13572,3,18248),(13579,3,18258),(13596,3,18288),(13641,3,18326),(13652,3,18344),(13663,3,18362),(13670,3,18372),(13683,3,18394),(13688,3,18400),(13703,3,18426),(13712,3,18440),(13723,3,18458),(13728,3,18464),(13733,3,18470),(13738,3,18476),(13743,3,18482),(13768,3,18528),(13773,3,18534),(13778,3,18540),(13785,3,18550),(13800,3,18576),(13843,3,18602),(13853,3,18616),(13862,3,18630),(13882,3,18644),(13891,3,18658),(13910,3,18692),(13927,3,18722),(13932,3,18728),(13959,3,18778),(13968,3,18792),(13975,3,18802),(13982,3,18812),(13995,3,18834),(14000,3,18840),(14047,3,18874),(14064,3,18888),(14077,3,18910),(14082,3,18916),(14089,3,18926),(14094,3,18932),(14101,3,18942),(14106,3,18948),(14113,3,18958),(14118,3,18964),(14127,3,18978),(14134,3,18988),(14141,3,18998),(14165,3,19020),(14180,3,19046),(14198,3,19068),(14215,3,19098),(14222,3,19108),(14230,3,19122),(14236,3,19128),(14241,3,19134),(14250,3,19148),(14261,3,19166),(14276,3,19192),(14281,3,19198),(14290,3,19212),(14295,3,19218),(14310,3,19244),(14331,3,19254),(14343,3,19268),(14349,3,19274),(14360,3,19292),(14365,3,19298),(14370,3,19304),(14381,3,19322),(14394,3,19344),(14399,3,19350),(14408,3,19364),(14419,3,19382),(14428,3,19396),(14433,3,19402),(14438,3,19408),(14447,3,19422),(14454,3,19432),(14459,3,19438),(14476,3,19468),(14487,3,19486),(14494,3,19496),(14501,3,19506),(14510,3,19520),(14515,3,19526),(14520,3,19532),(14527,3,19542),(14534,3,19552),(14541,3,19562),(14550,3,19576),(14555,3,19582),(14607,3,19604),(14638,3,19662),(14645,3,19672),(14669,3,19714),(14676,3,19724),(14693,3,19754),(14699,3,19764),(14738,3,19838),(14773,3,19904),(14816,3,19986),(14825,3,20000),(14838,3,20022),(14847,3,20036),(14870,3,20078),(14877,3,20088),(14888,3,20106),(14895,3,20116),(14900,3,20122),(14907,3,20132),(14932,3,20178),(14941,3,20192),(14950,3,20206),(15005,3,20228),(15014,3,20242),(15041,3,20280),(15080,3,20334),(15087,3,20344),(15122,3,20410),(15127,3,20416),(15174,3,20506),(15185,3,20524),(15200,3,20550),(15207,3,20560),(15245,3,20570),(15262,3,20596),(15271,3,20610),(15278,3,20620),(15289,3,20638),(15294,3,20644),(15301,3,20654),(15306,3,20660),(15317,3,20678),(15328,3,20696),(15333,3,20702),(15346,3,20724),(15353,3,20734),(15376,3,20776),(15381,3,20782),(15392,3,20800),(15415,3,20842),(15436,3,20880),(15441,3,20886),(15491,3,20892),(15499,3,20906),(15504,3,20912),(15517,3,20930),(15564,3,20980),(15569,3,20986),(15578,3,21000),(15585,3,21010),(15598,3,21032),(15625,3,21082),(15634,3,21096),(15645,3,21114),(15654,3,21128),(15665,3,21146),(15694,3,21200),(15707,3,21222),(15745,3,21240),(15758,3,21262),(15763,3,21268),(15768,3,21274),(15781,3,21296),(15796,3,21302),(15827,3,21360),(15832,3,21366),(15837,3,21372),(15844,3,21382),(15853,3,21396),(15862,3,21410),(15867,3,21416),(15882,3,21442),(15893,3,21460),(15898,3,21466),(15903,3,21472),(15908,3,21478),(15915,3,21488),(15936,3,21526),(15949,3,21548),(15954,3,21554),(15959,3,21560),(15970,3,21578),(15981,3,21596),(15990,3,21610),(15997,3,21620),(16006,3,21634),(16011,3,21640),(16024,3,21662),(16033,3,21676),(16048,3,21702),(16120,3,21736),(16137,3,21766),(16144,3,21776),(16153,3,21790),(16193,3,21824),(16218,3,21870),(16223,3,21876),(16236,3,21898),(16253,3,21928),(16263,3,21946),(16272,3,21960),(16277,3,21966),(16284,3,21976),(16289,3,21982),(16294,3,21988),(16303,3,22002),(16308,3,22008),(16313,3,22014),(16342,3,22068),(16353,3,22087),(16358,3,22093),(16365,3,22103),(16370,3,22109),(16377,3,22119),(16386,3,22133),(16439,3,22171),(16446,3,22181),(16458,3,22199),(16463,3,22205),(16470,3,22215),(16481,3,22221),(16493,3,22243),(16516,3,22269),(16521,3,22275),(16526,3,22281),(16531,3,22287),(16536,3,22293),(16549,3,22315),(16562,3,22337),(16569,3,22347),(16574,3,22353),(16585,3,22371),(16598,3,22393),(16603,3,22399),(16610,3,22409),(16625,3,22435),(16640,3,22461),(16645,3,22467),(16650,3,22473),(16655,3,22479),(16660,3,22485),(16665,3,22491),(16684,3,22525),(16693,3,22539),(16704,3,22557),(16709,3,22563),(16714,3,22569),(16753,3,22583),(16763,3,22593),(16777,3,22615),(16784,3,22625),(16789,3,22631),(16794,3,22637),(16807,3,22643),(16814,3,22653),(16821,3,22663),(16834,3,22689),(16839,3,22695),(16858,3,22729),(16875,3,22759),(16882,3,22769),(16887,3,22775),(16892,3,22781),(16897,3,22787),(16906,3,22801),(16951,3,22823),(16958,3,22833),(16981,3,22871),(16990,3,22885),(16995,3,22891),(17018,3,22909),(17023,3,22915),(17044,3,22953),(17051,3,22963),(17072,3,23001),(17083,3,23019),(17090,3,23029),(17103,3,23051),(17114,3,23069),(17121,3,23079),(17128,3,23089),(17133,3,23095),(17163,3,23113),(17168,3,23119),(17181,3,23141),(17193,3,23163),(17200,3,23177),(17205,3,23183),(17228,3,23225),(17243,3,23251),(17250,3,23261),(17265,3,23287),(17290,3,23333),(17297,3,23343),(17318,3,23381),(17325,3,23391),(17330,3,23397),(17337,3,23407),(17348,3,23425),(17355,3,23435),(17372,3,23465),(17377,3,23471),(17388,3,23489),(17393,3,23495),(17398,3,23501),(17407,3,23515),(17412,3,23521),(17423,3,23539),(17436,3,23561),(17443,3,23571),(17450,3,23581),(17459,3,23595),(17470,3,23613),(17633,3,23739),(17641,3,23749),(17652,3,23767),(17657,3,23773),(17662,3,23779),(17679,3,23809),(17692,3,23831),(17697,3,23837),(17704,3,23847),(17709,3,23853),(17720,3,23871),(17725,3,23877),(17730,3,23883),(17735,3,23889),(17742,3,23899),(17751,3,23913),(17769,3,23927),(17774,3,23933),(17786,3,23947),(17821,3,23985),(17829,3,23995),(17835,3,24001),(17846,3,24019),(17857,3,24029),(17870,3,24051),(17877,3,24061),(17882,3,24067),(17889,3,24077),(17896,3,24087),(17901,3,24093),(17908,3,24103),(17917,3,24117),(17930,3,24139),(17935,3,24145),(17942,3,24155),(17965,3,24197),(18044,3,24275),(18049,3,24281),(18081,3,24331),(18096,3,24357),(18105,3,24371),(18110,3,24377),(18115,3,24383),(18126,3,24401),(18131,3,24407),(18138,3,24417),(18143,3,24423),(18181,3,24493),(18190,3,24507),(18201,3,24525),(18210,3,24539),(18233,3,24581),(18266,3,24643),(18291,3,24689),(18306,3,24715),(18315,3,24729),(18328,3,24751),(18347,3,24785),(18378,3,24843),(18387,3,24857),(18398,3,24875),(18403,3,24881),(18418,3,24907),(18425,3,24917),(18448,3,24959),(18477,3,25013),(18492,3,25039),(18517,3,25085),(18522,3,25091),(18533,3,25109),(18540,3,25119),(18553,3,25141),(18658,3,25347),(18665,3,25357),(18678,3,25379),(18689,3,25397),(18698,3,25411),(18703,3,25417),(18712,3,25431),(18725,3,25453),(18770,3,25539),(18787,3,25569),(18856,3,25703),(18861,3,25709),(18866,3,25715),(18885,3,25749),(18890,3,25755),(18901,3,25773),(18906,3,25779),(18913,3,25789),(18930,3,25819),(18961,3,25877),(18966,3,25883),(18971,3,25889),(18976,3,25895),(18981,3,25901),(18990,3,25915),(18999,3,25929),(19004,3,25935),(19013,3,25949),(19018,3,25955),(19025,3,25965),(19030,3,25971),(19035,3,25977),(19040,3,25983),(19045,3,25989),(19050,3,25995),(19055,3,26001),(19060,3,26007),(19085,3,26053),(19090,3,26059),(19095,3,26065),(19102,3,26075),(19109,3,26085),(19114,3,26091),(19119,3,26097),(19128,3,26111),(19133,3,26117),(19138,3,26123),(19145,3,26133),(19150,3,26139),(19155,3,26145),(19160,3,26151),(19165,3,26157),(19172,3,26167),(19179,3,26177),(19186,3,26187),(19193,3,26197),(19200,3,26207),(19205,3,26213),(19210,3,26219),(19219,3,26233),(19224,3,26239),(19231,3,26249),(19256,3,26295),(19265,3,26309),(19276,3,26327),(19283,3,26337),(19290,3,26347),(19298,3,26353),(19359,3,26375),(19366,3,26385),(19392,3,26411),(19401,3,26421),(19408,3,26431),(19416,3,26441),(19421,3,26447),(19426,3,26453),(19434,3,26459),(19445,3,26477),(19454,3,26491),(19470,3,26521),(19485,3,26547),(19490,3,26553),(19499,3,26567),(19506,3,26577),(19515,3,26591),(19544,3,26645),(19549,3,26651),(19564,3,26677),(19614,3,26703),(19619,3,26709),(19630,3,26723),(19642,3,26737),(19647,3,26743),(19652,3,26749),(19659,3,26759),(19666,3,26769),(19675,3,26783),(19703,3,26833),(19708,3,26839),(19715,3,26849),(19726,3,26867),(19731,3,26873),(19740,3,26887),(19745,3,26893),(19750,3,26899),(19767,3,26929),(19772,3,26935),(19777,3,26941),(19784,3,26951),(19793,3,26965),(19806,3,26987),(19811,3,26993),(19818,3,27003),(19825,3,27013),(19848,3,27055),(19871,3,27097),(19876,3,27103),(19881,3,27109),(19886,3,27115),(19893,3,27125),(19902,3,27139),(19917,3,27165),(19989,3,27187),(20010,3,27205),(20015,3,27211),(20036,3,27249),(20051,3,27275),(20062,3,27293),(20067,3,27299),(20072,3,27305),(20093,3,27343),(20098,3,27349),(20111,3,27371),(20116,3,27377),(20129,3,27399),(20134,3,27405),(20139,3,27411),(20144,3,27417),(20149,3,27423),(20154,3,27429),(20176,3,27435),(20193,3,27453),(20199,3,27459),(20204,3,27465),(20211,3,27475),(20216,3,27481),(20231,3,27507),(20238,3,27517),(20253,3,27543),(20258,3,27549),(20267,3,27563),(20272,3,27569),(20285,3,27591),(20296,3,27609),(20305,3,27623),(20314,3,27637),(20341,3,27651),(20346,3,27657),(20355,3,27671),(20377,3,27712),(20383,3,27719),(20430,3,27781),(20437,3,27791),(20442,3,27797),(20447,3,27803),(20461,3,27829),(20468,3,27839),(20473,3,27845),(20478,3,27851),(20487,3,27865),(20492,3,27871),(20499,3,27881),(20504,3,27887),(20511,3,27897),(20524,3,27919),(20579,3,27965),(20591,3,27983),(20594,3,27985),(20601,3,27995),(20624,3,28037),(20633,3,28051),(20640,3,28061),(20663,3,28103),(20668,3,28109),(20679,3,28127),(20684,3,28133),(20693,3,28147),(20698,3,28153),(20703,3,28159),(20726,3,28201),(20761,3,28267),(20810,3,28273),(20841,3,28311),(20858,3,28333),(20865,3,28343),(20870,3,28349),(20875,3,28355),(20886,3,28373),(20897,3,28391),(20902,3,28397),(20907,3,28403),(20922,3,28429),(20934,3,28447),(20947,3,28469),(20952,3,28475),(20961,3,28489),(20970,3,28503),(20977,3,28513),(20982,3,28519),(20987,3,28525),(21009,3,28531),(21016,3,28537),(21032,3,28559),(21039,3,28569),(21044,3,28575),(21057,3,28585),(21066,3,28599),(21075,3,28613),(21080,3,28619),(21109,3,28673),(21114,3,28679),(21145,3,28737),(21156,3,28755),(21163,3,28765),(21184,3,28803),(21189,3,28809),(21198,3,28823),(21205,3,28833),(21214,3,28847),(21219,3,28853),(21226,3,28863),(21231,3,28869),(21236,3,28875),(21241,3,28881),(21300,3,28891),(21309,3,28905),(21314,3,28911),(21319,3,28917),(21324,3,28923),(21369,3,28969),(21400,3,29019),(21413,3,29041),(21426,3,29063),(21437,3,29081),(21454,3,29111),(21461,3,29121),(21474,3,29143),(21479,3,29149),(21494,3,29175),(21503,3,29189),(21562,3,29251),(21569,3,29261),(21620,3,29327),(21639,3,29361),(21650,3,29379),(21671,3,29417),(21676,3,29423),(21685,3,29437),(21690,3,29443),(21709,3,29477),(21718,3,29491),(21733,3,29517),(21746,3,29539),(21797,3,29561),(21808,3,29579),(21813,3,29585),(21820,3,29595),(21825,3,29601),(21830,3,29607),(21835,3,29613),(21861,3,29663),(21866,3,29669),(21871,3,29675),(21888,3,29705),(21901,3,29727),(21908,3,29737),(21913,3,29743),(21928,3,29769),(21935,3,29779),(21948,3,29801),(21955,3,29811),(21960,3,29817),(21965,3,29823),(21972,3,29833),(21985,3,29855),(21998,3,29877),(22009,3,29895),(22024,3,29921),(22035,3,29939),(22054,3,29973),(22059,3,29979),(22074,3,30005),(22210,3,30079),(22217,3,30089),(22226,3,30103),(22231,3,30109),(22237,3,30115),(22263,3,30157),(22278,3,30184),(22287,3,30198),(22298,3,30216),(22359,3,30286),(22390,3,30344),(22395,3,30350),(22406,3,30368),(22417,3,30386),(22420,3,30388),(22429,3,30402),(22456,3,30428),(22463,3,30438),(22484,3,30476),(22489,3,30482),(22514,3,30504),(22537,3,30546),(22568,3,30604),(22601,3,30666),(22608,3,30676),(22613,3,30682),(22669,3,30736),(22680,3,30754),(22697,3,30780),(22724,3,30806),(22740,3,30832),(22753,3,30854),(22802,3,30948),(22809,3,30958),(22816,3,30968),(22837,3,31006),(22850,3,31028),(22857,3,31038),(22870,3,31060),(22877,3,31070),(22882,3,31076),(22889,3,31086),(22896,3,31096),(22907,3,31114),(22912,3,31120),(22917,3,31126),(22922,3,31132),(22931,3,31146),(22994,3,31180),(22999,3,31186),(23004,3,31192),(23009,3,31198),(23014,3,31204),(23019,3,31210),(23035,3,31216),(23067,3,31278),(23076,3,31292),(23085,3,31306),(23100,3,31332),(23117,3,31362),(23122,3,31368),(23127,3,31374),(23132,3,31380),(23137,3,31386),(23146,3,31400),(23153,3,31410),(23160,3,31420),(23199,3,31450),(23230,3,31496),(23237,3,31506),(23244,3,31516),(23255,3,31534),(23275,3,31572),(23282,3,31582),(23289,3,31592),(23330,3,31670),(23368,3,31680),(23373,3,31686),(23378,3,31692),(23383,3,31698),(23388,3,31704),(23404,3,31731),(23412,3,31741),(23440,3,31779),(23451,3,31797),(23458,3,31807),(23469,3,31825),(23474,3,31831),(23479,3,31837),(23497,3,31875),(23504,3,31885),(23509,3,31891),(23514,3,31897),(23519,3,31903),(23536,3,31933),(23555,3,31967),(23560,3,31973),(23588,3,31987),(23593,3,31993),(23606,3,32015),(23620,3,32041),(23625,3,32047),(23642,3,32077),(23651,3,32091),(23677,3,32137),(23682,3,32143),(23687,3,32149),(23696,3,32163),(23701,3,32169),(23708,3,32179),(23760,3,32229),(23766,3,32235),(23775,3,32249),(23813,3,32319),(23822,3,32333),(23827,3,32339),(23848,3,32377),(23857,3,32391),(23864,3,32401),(23883,3,32435),(23896,3,32457),(23901,3,32463),(23930,3,32517),(23935,3,32523),(23942,3,32533),(23957,3,32559),(23962,3,32565),(23967,3,32571),(23984,3,32601),(23989,3,32607),(23998,3,32621),(24005,3,32631),(24012,3,32641),(24019,3,32651),(24036,3,32681),(24049,3,32703),(24122,3,32725),(24127,3,32731),(24134,3,32737),(24157,3,32779),(24196,3,32813),(24201,3,32819),(24206,3,32825),(24211,3,32831),(24216,3,32837),(24252,3,32903),(24277,3,32949),(24296,3,32983),(24301,3,32989),(24306,3,32995),(24313,3,33005),(24334,3,33043),(24377,3,33069),(24397,3,33103),(24425,3,33125),(24432,3,33135),(24445,3,33157),(24456,3,33175),(24467,3,33193),(24478,3,33211),(24493,3,33237),(24498,3,33243),(24525,3,33293),(24530,3,33299),(24543,3,33321),(24551,3,33331),(24552,3,33332),(24566,3,33355),(24571,3,33361),(24576,3,33367),(24585,3,33381),(24592,3,33391),(24611,3,33425),(24624,3,33448),(24641,3,33478),(24662,3,33516),(24681,3,33550),(24686,3,33556),(24695,3,33570),(24702,3,33580),(24707,3,33586),(24712,3,33592),(24725,3,33614),(24744,3,33648),(24754,3,33662),(24759,3,33668),(24764,3,33674),(24775,3,33692),(24790,3,33718),(24799,3,33732),(24804,3,33738),(24809,3,33744),(24814,3,33750),(24821,3,33760),(24828,3,33770),(24833,3,33776),(24840,3,33786),(24851,3,33804),(24858,3,33814),(24861,3,33816),(24868,3,33826),(24878,3,33844),(24886,3,33854),(24891,3,33860),(24904,3,33882),(24909,3,33888),(24918,3,33902),(24933,3,33928),(24962,3,33982),(24975,3,34004),(24984,3,34018),(24993,3,34032),(25004,3,34050),(25011,3,34060),(25016,3,34066),(25029,3,34088),(25044,3,34114),(25057,3,34136),(25062,3,34142),(25071,3,34156),(25076,3,34162),(25081,3,34168),(25096,3,34194),(25101,3,34200),(25112,3,34218),(25117,3,34224),(25122,3,34230),(25133,3,34248),(25148,3,34274),(25179,3,34328),(25192,3,34350),(25201,3,34364),(25210,3,34378),(25215,3,34384),(25226,3,34402),(25233,3,34412),(25240,3,34422),(25247,3,34432),(25260,3,34454),(25269,3,34468),(25282,3,34490),(25338,3,34524),(25343,3,34530),(25351,3,34540),(25356,3,34546),(25374,3,34564),(25379,3,34570),(25390,3,34588),(25401,3,34606),(25410,3,34620),(25415,3,34626),(25436,3,34664),(25441,3,34670),(25446,3,34676),(25451,3,34682),(25456,3,34688),(25465,3,34702),(25470,3,34708),(25511,3,34786),(25516,3,34792),(25527,3,34810),(25532,3,34816),(25541,3,34830),(25546,3,34836),(25555,3,34850),(25560,3,34856),(25565,3,34862),(25570,3,34868),(25581,3,34886),(25641,3,34896),(25648,3,34906),(25673,3,34936),(25682,3,34946),(25687,3,34952),(25692,3,34958),(25699,3,34964),(25706,3,34974),(25719,3,34996),(25724,3,35002),(25731,3,35012),(25744,3,35034),(25789,3,35120),(25798,3,35134),(25833,3,35148),(25838,3,35154),(25849,3,35168),(25854,3,35174),(25859,3,35180),(25871,3,35194),(25881,3,35208),(25892,3,35226),(25897,3,35232),(25902,3,35238),(25909,3,35248),(25914,3,35254),(25919,3,35260),(25924,3,35266),(25929,3,35272),(25934,3,35278),(25939,3,35284),(25945,3,35290),(25953,3,35300),(25958,3,35306),(25964,3,35312),(25969,3,35318),(25974,3,35324),(25979,3,35330),(25984,3,35336),(25989,3,35342),(25994,3,35348),(25999,3,35354),(26004,3,35360),(26019,3,35386),(26026,3,35396),(26031,3,35402),(26037,3,35408),(26042,3,35414),(26047,3,35420),(26056,3,35434),(26063,3,35444),(26068,3,35450),(26081,3,35472),(26090,3,35486),(26095,3,35492),(26102,3,35502),(26107,3,35508),(26114,3,35518),(26119,3,35524),(26128,3,35538),(26135,3,35548),(26140,3,35554),(26147,3,35564),(26154,3,35574),(26180,3,35600),(26186,3,35606),(26191,3,35612),(26198,3,35622),(26218,3,35644),(26247,3,35670),(26258,3,35688),(26263,3,35694),(26270,3,35704),(26275,3,35710),(26280,3,35716),(26285,3,35722),(26292,3,35732),(26301,3,35746),(26320,3,35780),(26325,3,35786),(26330,3,35792),(26335,3,35798),(26340,3,35804),(26345,3,35810),(26356,3,35828),(26363,3,35838),(26368,3,35844),(26375,3,35854),(26380,3,35860),(26387,3,35870),(26396,3,35884),(26401,3,35890),(26406,3,35896),(26413,3,35906),(26418,3,35912),(26425,3,35922),(26432,3,35932),(26439,3,35942),(26448,3,35956),(26455,3,35966),(26460,3,35972),(26469,3,35986),(26478,3,36000),(26485,3,36010),(26492,3,36020),(26497,3,36026),(26504,3,36036),(26515,3,36054),(26571,3,36088),(26586,3,36106),(26591,3,36112),(26608,3,36118),(26621,3,36140),(26628,3,36150),(26633,3,36156),(26644,3,36174),(26649,3,36180),(26654,3,36186),(26663,3,36200),(26670,3,36210),(26675,3,36216),(26692,3,36246),(26697,3,36252),(26711,3,36262),(26717,3,36268),(26722,3,36274),(26754,3,36304),(26759,3,36310),(26772,3,36332),(26794,3,36358),(26805,3,36372),(26823,3,36402),(26836,3,36424),(26843,3,36434),(26846,3,36436),(26853,3,36446),(26858,3,36452),(26863,3,36458),(26890,3,36508),(26901,3,36526),(26906,3,36532),(26911,3,36538),(26918,3,36548),(26941,3,36562),(26946,3,36568),(26951,3,36574),(26956,3,36580),(26961,3,36586),(26966,3,36592),(26988,3,36618),(26994,3,36624),(27017,3,36642),(27022,3,36648),(27029,3,36658),(27036,3,36668),(27041,3,36674),(27050,3,36688),(27055,3,36694),(27064,3,36708),(27077,3,36730),(27084,3,36740),(27091,3,36750),(27098,3,36760),(27124,3,36778),(27148,3,36808),(27190,3,36862),(27195,3,36868),(27204,3,36882),(27209,3,36888),(27218,3,36902),(27229,3,36920),(27234,3,36926),(27239,3,36932),(27256,3,36962),(27261,3,36968),(27268,3,36978),(27273,3,36984),(27294,3,37002),(27299,3,37008),(27308,3,37022),(27324,3,37048),(27330,3,37054),(27343,3,37076),(27348,3,37082),(27354,3,37092),(27359,3,37098),(27364,3,37104),(27369,3,37110),(27386,3,37140),(27393,3,37151),(27400,3,37161),(27409,3,37175),(27414,3,37181),(27419,3,37187),(27426,3,37197),(27435,3,37211),(27446,3,37229),(27455,3,37243),(27470,3,37269),(27477,3,37279),(27486,3,37293),(27514,3,37299),(27528,3,37321),(27535,3,37331),(27552,3,37341),(27557,3,37347),(27562,3,37353),(27567,3,37359),(27570,3,37361),(27597,3,37411),(27602,3,37417),(27607,3,37423),(27612,3,37429),(27617,3,37435),(27632,3,37461),(27637,3,37467),(27644,3,37477),(27657,3,37499),(27679,3,37509),(27684,3,37515),(27691,3,37525),(27697,3,37531),(27702,3,37537),(27715,3,37551),(27720,3,37557),(27725,3,37563),(27730,3,37569),(27737,3,37579),(27746,3,37593),(27763,3,37623),(27770,3,37633),(27783,3,37655),(27798,3,37681),(27809,3,37699),(27814,3,37705),(27819,3,37711),(27824,3,37717),(27851,3,37731),(27866,3,37757),(27885,3,37779),(27892,3,37789),(27903,3,37807),(27908,3,37813),(27923,3,37839),(27928,3,37845),(27933,3,37851),(27938,3,37857),(27943,3,37863),(27952,3,37877),(27957,3,37883),(27964,3,37893),(27975,3,37911),(27988,3,37933),(28003,3,37959),(28010,3,37969),(28015,3,37975),(28024,3,37989),(28029,3,37995),(28034,3,38001),(28064,3,38011),(28090,3,38045),(28099,3,38059),(28108,3,38073),(28115,3,38083),(28120,3,38089),(28127,3,38099),(28134,3,38109),(28139,3,38115),(28148,3,38129),(28157,3,38143),(28168,3,38161),(28173,3,38167),(28178,3,38173),(28185,3,38183),(28190,3,38189),(28195,3,38195),(28206,3,38213),(28211,3,38219),(28216,3,38225),(28221,3,38231),(28240,3,38241),(28245,3,38247),(28252,3,38257),(28257,3,38263),(28295,3,38313),(28305,3,38327),(28310,3,38333),(28331,3,38371),(28336,3,38377),(28355,3,38411),(28366,3,38429),(28379,3,38451),(28384,3,38457),(28393,3,38471),(28406,3,38493),(28413,3,38503),(28418,3,38509),(28431,3,38531),(28436,3,38537),(28441,3,38543),(28446,3,38549),(28453,3,38559),(28458,3,38565),(28467,3,38579),(28474,3,38589),(28502,3,38595),(28507,3,38601),(28539,3,38655),(28561,3,38693),(28588,3,38699),(28597,3,38713),(28602,3,38719),(28619,3,38749),(28624,3,38755),(28629,3,38761),(28636,3,38771),(28649,3,38793),(28658,3,38807),(28663,3,38813),(28684,3,38851),(28691,3,38861),(28696,3,38867),(28703,3,38877),(28708,3,38883),(28713,3,38889),(28718,3,38895),(28723,3,38901),(28728,3,38907),(28731,3,38909),(28738,3,38919),(28743,3,38925),(28763,3,38935),(28768,3,38941),(28775,3,38947),(28780,3,38953),(28793,3,38967),(28798,3,38973),(28815,3,39003),(28822,3,39013),(28827,3,39019),(28842,3,39045),(28865,3,39087),(28876,3,39105),(28891,3,39131),(28896,3,39137),(28901,3,39143),(28906,3,39149),(28924,3,39163),(28929,3,39169),(28934,3,39175),(28939,3,39181),(28954,3,39207),(28969,3,39221),(28974,3,39227),(28979,3,39233),(28982,3,39235),(28987,3,39241),(28992,3,39247),(28997,3,39253),(29010,3,39275),(29021,3,39293),(29026,3,39299),(29033,3,39309),(29038,3,39315),(29043,3,39321),(29048,3,39327),(29055,3,39337),(29060,3,39343),(29065,3,39349),(29072,3,39359),(29077,3,39365),(29082,3,39371),(29093,3,39389),(29098,3,39395),(29103,3,39401),(29116,3,39423),(29132,3,39429),(29159,3,39467),(29164,3,39473),(29169,3,39479),(29176,3,39489),(29187,3,39507),(29196,3,39513),(29205,3,39527),(29212,3,39537),(29217,3,39543),(29240,3,39585),(29246,3,39591),(29251,3,39597),(29256,3,39603),(29263,3,39613),(29268,3,39619),(29285,3,39649),(29298,3,39671),(29303,3,39677),(29343,3,39719),(29348,3,39725),(29357,3,39739),(29362,3,39745),(29367,3,39751),(29372,3,39757),(29377,3,39763),(29394,3,39793),(29403,3,39807),(29408,3,39813),(29413,3,39819),(29418,3,39825),(29427,3,39839),(29432,3,39845),(29437,3,39851),(29444,3,39861),(29449,3,39867),(29456,3,39877),(29463,3,39887),(29468,3,39893),(29473,3,39899),(29480,3,39909),(29485,3,39915),(29492,3,39925),(29501,3,39939),(29506,3,39945),(29511,3,39951),(29518,3,39961),(29523,3,39967),(29532,3,39981),(29541,3,39995),(29574,3,40013),(29600,3,40051),(29619,3,40085),(29626,3,40095),(29657,3,40153),(29666,3,40167),(29673,3,40177),(29678,3,40183),(29687,3,40197),(29722,3,40263),(29727,3,40269),(29734,3,40279),(29776,3,40309),(29787,3,40319),(29801,3,40341),(29808,3,40351),(29815,3,40361),(29820,3,40367),(29827,3,40377),(29834,3,40387),(29839,3,40393),(29848,3,40407),(29859,3,40425),(29866,3,40435),(29871,3,40441),(29890,3,40475),(29897,3,40485),(29902,3,40491),(29907,3,40497),(29924,3,40527),(29929,3,40533),(29938,3,40547),(29945,3,40557),(29954,3,40571),(29980,3,40577),(29986,3,40583),(29994,3,40593),(30019,3,40627),(30026,3,40637),(30031,3,40643),(30048,3,40673),(30057,3,40687),(30074,3,40717),(30079,3,40723),(30084,3,40729),(30097,3,40751),(30112,3,40777),(30123,3,40795),(30128,3,40801),(30152,3,40823),(30157,3,40829),(30162,3,40835),(30167,3,40841),(30184,3,40863),(30189,3,40869),(30196,3,40879),(30201,3,40885),(30214,3,40907),(30221,3,40917),(30240,3,40951),(30250,3,40969),(30258,3,40979),(30265,3,40989),(30270,3,40995),(30277,3,41005),(30284,3,41015),(30305,3,41053),(30312,3,41063),(30317,3,41069),(30338,3,41079),(30343,3,41085),(30360,3,41115),(30375,3,41129),(30388,3,41151),(30395,3,41161),(30400,3,41167),(30409,3,41181),(30432,3,41223),(30445,3,41245),(30450,3,41251),(30465,3,41277),(30476,3,41295),(30481,3,41301),(30492,3,41319),(30503,3,41337),(30512,3,41351),(30517,3,41357),(30522,3,41363),(30529,3,41373),(30534,3,41379),(30539,3,41385),(30546,3,41395),(30553,3,41405),(30558,3,41411),(30563,3,41417),(30570,3,41427),(30591,3,41465),(30596,3,41471),(30601,3,41477),(30606,3,41483),(30611,3,41489),(30616,3,41495),(30625,3,41509),(30665,3,41523),(30672,3,41533),(30677,3,41539),(30682,3,41545),(30689,3,41555),(30694,3,41561),(30699,3,41567),(30704,3,41573),(30709,3,41579),(30714,3,41585),(30719,3,41591),(30724,3,41597),(30729,3,41603),(30734,3,41609),(30745,3,41627),(30752,3,41637),(30761,3,41651),(30768,3,41661),(30773,3,41667),(30778,3,41673),(30789,3,41691),(30794,3,41697),(30799,3,41703),(30804,3,41709),(30809,3,41715),(30836,3,41765),(30841,3,41771),(30846,3,41777),(30851,3,41783),(30860,3,41797),(30867,3,41807),(30878,3,41825),(30908,3,41839),(30913,3,41845),(30918,3,41851),(30935,3,41881),(30968,3,41915),(30979,3,41933),(30990,3,41951),(31005,3,41977),(31010,3,41983),(31019,3,41997),(31024,3,42003),(31033,3,42017),(31036,3,42019),(31041,3,42025),(31044,3,42027),(31051,3,42037),(31056,3,42043),(31061,3,42049),(31072,3,42067),(31077,3,42073),(31086,3,42087),(31091,3,42093),(31096,3,42099),(31101,3,42105),(31106,3,42111),(31113,3,42121),(31126,3,42131),(31158,3,42185),(31163,3,42191),(31170,3,42201),(31177,3,42211),(31182,3,42217),(31193,3,42235),(31202,3,42249),(31213,3,42267),(31220,3,42277),(31227,3,42287),(31234,3,42297),(31243,3,42311),(31252,3,42325),(31267,3,42351),(31282,3,42361),(31299,3,42383),(31306,3,42393),(31319,3,42415),(31326,3,42425),(31343,3,42455),(31348,3,42461),(31353,3,42467),(31358,3,42473),(31363,3,42479),(31368,3,42485),(31377,3,42499),(31382,3,42505),(31387,3,42511),(31394,3,42522),(31399,3,42528),(31404,3,42534),(31409,3,42540),(31414,3,42546),(31433,3,42580),(31438,3,42586),(31443,3,42592),(31450,3,42602),(31457,3,42612),(31462,3,42618),(31489,3,42640),(31507,3,42674),(31519,3,42680),(31524,3,42686),(31533,3,42696),(31540,3,42706),(31549,3,42720),(31572,3,42762),(31577,3,42768),(31586,3,42782),(31591,3,42788),(31602,3,42806),(31607,3,42812),(31616,3,42826),(31621,3,42832),(31634,3,42854),(31639,3,42860),(31646,3,42870),(31653,3,42880),(31660,3,42890),(31665,3,42896),(31670,3,42902),(31675,3,42908),(31680,3,42914),(31685,3,42920),(31690,3,42926),(31701,3,42944),(31706,3,42950),(31717,3,42968),(31722,3,42974),(31754,3,42988),(31761,3,42998),(31771,3,43012),(31782,3,43026),(31783,3,43027),(31793,3,43042),(31800,3,43052),(31805,3,43058),(31841,3,43130),(31857,3,43136),(31846,3,43140),(31847,3,43141),(31855,3,43153),(31860,3,43154),(31859,3,43159),(31898,3,43168),(31883,3,43169),(31890,3,43182),(31891,3,43191),(31887,3,43192),(31888,3,43204),(31892,3,43218),(31894,3,43219),(31895,3,43222),(31897,3,43230),(31899,3,43238),(31896,3,43247),(32134,3,43497),(32139,3,43503),(32146,3,43513),(32163,3,43543),(32172,3,43557),(32177,3,43563),(32228,3,43661),(32241,3,43683),(32254,3,43705),(32311,3,43815),(32320,3,43829),(32371,3,43927),(32384,3,43949),(32401,3,43979),(32424,3,44021),(32449,3,44067),(32506,3,44177),(32523,3,44207),(32534,3,44225),(32539,3,44231),(32554,3,44257),(32569,3,44283),(32580,3,44301),(32591,3,44319),(32610,3,44353),(32621,3,44371),(32642,3,44409),(32655,3,44431),(32666,3,44449),(32677,3,44467),(32684,3,44477),(32689,3,44483),(32694,3,44489),(32707,3,44511),(32757,3,44553),(32764,3,44563),(32769,3,44569),(32782,3,44591),(32791,3,44605),(32800,3,44619),(32805,3,44625),(32810,3,44631),(32826,3,44637),(32839,3,44659),(32844,3,44665),(32849,3,44671),(32856,3,44681),(32861,3,44687),(32870,3,44701),(32875,3,44707),(32880,3,44713),(32883,3,44715),(32898,3,44741),(32915,3,44771),(32922,3,44781),(32945,3,44823),(32958,3,44845),(32967,3,44859),(32972,3,44865),(32983,3,44883),(32992,3,44897),(32997,3,44903),(33002,3,44909),(33009,3,44919),(33014,3,44925),(33023,3,44939),(33030,3,44949),(33035,3,44955),(33046,3,44973),(33051,3,44979),(33068,3,45009),(33077,3,45023),(33082,3,45029),(33087,3,45035),(33098,3,45053),(33103,3,45059),(33124,3,45097),(33133,3,45111),(33142,3,45125),(33151,3,45139),(33156,3,45145),(33163,3,45155),(33172,3,45169),(33177,3,45175),(33186,3,45189),(33191,3,45195),(33196,3,45201),(33211,3,45227),(33242,3,45285),(33257,3,45311),(33262,3,45317),(33267,3,45323),(33280,3,45345),(33285,3,45351),(33290,3,45357),(33303,3,45379),(33308,3,45385),(33325,3,45415),(33336,3,45433),(33343,3,45443),(33354,3,45461),(33509,3,45515),(33578,3,45649),(33585,3,45659),(33602,3,45689),(33643,3,45767),(33650,3,45777),(33655,3,45783),(33664,3,45797),(33669,3,45803),(33676,3,45813),(33681,3,45819),(33686,3,45825),(33695,3,45839),(33702,3,45849),(33712,3,45863),(33717,3,45869),(33738,3,45883),(33759,3,45921),(33796,3,45959),(33813,3,45989),(33849,3,46039),(33854,3,46045),(33885,3,46075),(33890,3,46081),(33911,3,46119),(33916,3,46125),(33925,3,46139),(33934,3,46153),(33957,3,46195),(33978,3,46233),(33987,3,46247),(33992,3,46253),(33999,3,46263),(34004,3,46269),(34009,3,46275),(34014,3,46281),(34023,3,46295),(34059,3,46329),(34064,3,46335),(34069,3,46341),(34074,3,46347),(34079,3,46353),(34084,3,46359),(34149,3,46453),(34204,3,46547),(34209,3,46553),(34222,3,46575),(34227,3,46581),(34240,3,46603),(34247,3,46613),(34258,3,46631),(34263,3,46637),(34270,3,46647),(34277,3,46657),(34284,3,46667),(34321,3,46701),(34330,3,46715),(34339,3,46729),(34364,3,46755),(34407,3,46813),(34418,3,46831),(34423,3,46837),(34428,3,46843),(34433,3,46849),(34444,3,46867),(34449,3,46873),(34460,3,46891),(34487,3,46941),(34503,3,46965),(34528,3,47011),(34559,3,47069),(34609,3,47099),(34640,3,47145),(34645,3,47151),(34650,3,47157),(34689,3,47215),(34694,3,47221),(34701,3,47231),(34708,3,47241),(34713,3,47247),(34720,3,47257),(34747,3,47307),(34754,3,47317),(34767,3,47339),(34774,3,47350),(34783,3,47364),(34792,3,47378),(34797,3,47384),(34802,3,47390),(34813,3,47408),(34818,3,47414),(34825,3,47424),(34832,3,47434),(34855,3,47476),(34860,3,47482),(34865,3,47488),(34874,3,47502),(34881,3,47512),(34888,3,47522),(34893,3,47528),(34898,3,47534),(34915,3,47564),(34924,3,47578),(34929,3,47584),(34938,3,47598),(34957,3,47632),(34962,3,47638),(34977,3,47664),(35002,3,47710),(35127,3,47748),(35146,3,47782),(35163,3,47812),(35189,3,47834),(35196,3,47844),(35201,3,47850),(35227,3,47900),(35238,3,47918),(35243,3,47924),(35250,3,47934),(35259,3,47948),(35264,3,47954),(35291,3,48004),(35296,3,48010),(35303,3,48020),(35312,3,48034),(35317,3,48040),(35322,3,48046),(35329,3,48056),(35340,3,48074),(35345,3,48080),(35352,3,48090),(35383,3,48116),(35390,3,48126),(35407,3,48156),(35412,3,48162),(35425,3,48184),(35442,3,48190),(35449,3,48200),(35454,3,48206),(35469,3,48232),(35476,3,48242),(35481,3,48248),(35486,3,48254),(35513,3,48304),(35530,3,48334),(35535,3,48340),(35540,3,48346),(35551,3,48364),(35562,3,48382),(35571,3,48396),(35666,3,48482),(35689,3,48524),(35694,3,48530),(35717,3,48572),(35722,3,48578),(35771,3,48628),(35776,3,48634),(35795,3,48668),(35802,3,48678),(35809,3,48688),(35816,3,48698),(35829,3,48720),(35852,3,48762),(35857,3,48768),(35862,3,48774),(35867,3,48780),(35884,3,48810),(35893,3,48824),(35908,3,48850),(35917,3,48864),(35922,3,48870),(36000,3,48952),(36017,3,48970),(36022,3,48976),(36027,3,48982),(36066,3,49056),(36079,3,49078),(36090,3,49096),(36103,3,49118),(36110,3,49128),(36124,3,49134),(36156,3,49180),(36161,3,49186),(36202,3,49244),(36227,3,49278),(36232,3,49284),(36249,3,49314),(36270,3,49352),(36275,3,49358),(36280,3,49364),(36291,3,49382),(36314,3,49424),(36319,3,49430),(36330,3,49448),(36339,3,49462),(36344,3,49468),(36351,3,49478),(36356,3,49484),(36419,3,49606),(36438,3,49640),(36445,3,49650),(36450,3,49656),(36461,3,49674),(36470,3,49688),(36477,3,49698),(36482,3,49704),(36487,3,49710),(36496,3,49724),(36503,3,49734),(36574,3,49872),(36579,3,49878),(36584,3,49884),(36589,3,49890),(36598,3,49904),(36605,3,49914),(36610,3,49920),(36750,3,49946),(36755,3,49952),(36777,3,49974),(36782,3,49980),(36791,3,49994),(36799,3,50004),(36810,3,50014),(36815,3,50020),(36820,3,50026),(36843,3,50068),(36854,3,50086),(36905,3,50136),(36949,3,50202),(36969,3,50228),(36978,3,50242),(37005,3,50292),(37010,3,50298),(37015,3,50304),(37102,3,50410),(37111,3,50424),(37131,3,50442),(37136,3,50448),(37143,3,50458),(37152,3,50472),(37157,3,50478),(37164,3,50488),(37182,3,50502),(37201,3,50536),(37208,3,50546),(37213,3,50552),(37228,3,50578),(37245,3,50608),(37252,3,50618),(37257,3,50624),(37262,3,50630),(37267,3,50636),(37274,3,50646),(37291,3,50676),(37308,3,50706),(37313,3,50712),(37318,3,50718),(37327,3,50732),(37332,3,50738),(37383,3,50756),(37388,3,50762),(37393,3,50768),(37402,3,50782),(37407,3,50788),(37412,3,50794),(37423,3,50812),(37457,3,50846),(37464,3,50856),(37475,3,50874),(37482,3,50884),(37500,3,50898),(37529,3,50952),(37542,3,50974),(37557,3,51000),(37564,3,51010),(37571,3,51020),(37580,3,51034),(37585,3,51040),(37594,3,51054),(37603,3,51068),(37614,3,51086),(37660,3,51112),(37697,3,51154),(37739,3,51220),(37802,3,51294),(37811,3,51308),(37816,3,51314),(37821,3,51320),(37830,3,51334),(37839,3,51348),(37844,3,51354),(37849,3,51360),(37854,3,51366),(37859,3,51372),(37864,3,51378),(37869,3,51384),(37874,3,51390),(37879,3,51396),(37892,3,51418),(37905,3,51440),(37918,3,51462),(37937,3,51496),(37942,3,51502),(37947,3,51508),(37962,3,51534),(37967,3,51540),(37974,3,51550),(37979,3,51556),(37988,3,51570),(37993,3,51576),(38006,3,51598),(38011,3,51604),(38018,3,51614),(38025,3,51624),(38081,3,51634),(38090,3,51648),(38097,3,51658),(38112,3,51684),(38117,3,51690),(38124,3,51700),(38153,3,51730),(38178,3,51760),(38191,3,51774),(38198,3,51784),(38203,3,51790),(38208,3,51796),(38221,3,51818),(38253,3,51860),(38291,3,51910),(38302,3,51928),(38309,3,51938),(38322,3,51960),(38335,3,51982),(38342,3,51992),(38375,3,52014),(38382,3,52024),(38398,3,52042),(38409,3,52060),(38459,3,52146),(38522,3,52208),(38584,3,52286),(38620,3,52340),(38637,3,52370),(38692,3,52476),(38709,3,52506),(38718,3,52520),(38725,3,52530),(38742,3,52560),(38808,3,52586),(38823,3,52600),(38842,3,52634),(38853,3,52652),(38860,3,52662),(38865,3,52668),(38870,3,52674),(38875,3,52680),(38882,3,52690),(38889,3,52700),(38894,3,52706),(38899,3,52712),(38904,3,52718),(38911,3,52728),(38922,3,52746),(38927,3,52752),(38963,3,52778),(38974,3,52796),(38979,3,52802),(38984,3,52808),(38989,3,52814),(38996,3,52824),(39001,3,52830),(39006,3,52836),(39032,3,52854),(39037,3,52860),(39057,3,52886),(39062,3,52892),(39069,3,52902),(39074,3,52908),(39081,3,52918),(39086,3,52924),(39091,3,52930),(39096,3,52936),(39103,3,52946),(39108,3,52952),(39113,3,52958),(39118,3,52964),(39129,3,52982),(39134,3,52988),(39139,3,52994),(39144,3,53000),(39149,3,53006),(39158,3,53020),(39163,3,53026),(39170,3,53036),(39175,3,53042),(39180,3,53048),(39185,3,53054),(39190,3,53060),(39197,3,53070),(39202,3,53076),(39209,3,53086),(39216,3,53096),(39225,3,53110),(39240,3,53136),(39245,3,53142),(39250,3,53148),(39255,3,53154),(39262,3,53164),(39269,3,53174),(39276,3,53184),(39281,3,53190),(39292,3,53208),(39299,3,53218),(39308,3,53232),(39313,3,53238),(39324,3,53256),(39329,3,53262),(39336,3,53272),(39343,3,53282),(39409,3,53292),(39414,3,53298),(39423,3,53312),(39430,3,53322),(39451,3,53348),(39458,3,53358),(39471,3,53380),(39497,3,53406),(39502,3,53412),(39507,3,53418),(39512,3,53424),(39517,3,53430),(39526,3,53444),(39533,3,53454),(39538,3,53460),(39545,3,53470),(39556,3,53488),(39567,3,53506),(39594,3,53520),(39607,3,53542),(39612,3,53548),(39617,3,53554),(39622,3,53560),(39633,3,53578),(39638,3,53584),(39645,3,53594),(39650,3,53600),(39655,3,53606),(39660,3,53612),(39665,3,53618),(39674,3,53632),(39683,3,53646),(39688,3,53652),(39693,3,53658),(39698,3,53664),(39703,3,53670),(39706,3,53672),(39713,3,53682),(39718,3,53688),(39723,3,53694),(39728,3,53700),(39735,3,53711),(39740,3,53717),(39749,3,53731),(39754,3,53737),(39759,3,53743),(39764,3,53749),(39769,3,53755),(39774,3,53761),(39778,3,53767),(39786,3,53777),(39793,3,53787),(39798,3,53793),(39803,3,53799),(39808,3,53805),(39813,3,53811),(39820,3,53821),(39825,3,53827),(39830,3,53833),(39837,3,53843),(39842,3,53849),(39847,3,53855),(39852,3,53861),(39857,3,53867),(39862,3,53873),(39867,3,53879),(39872,3,53885),(39879,3,53895),(39886,3,53905),(39909,3,53947),(39914,3,53953),(39919,3,53959),(39926,3,53969),(39931,3,53975),(39936,3,53981),(39943,3,53991),(39948,3,53997),(39953,3,54003),(39958,3,54009),(39963,3,54015),(39968,3,54021),(39975,3,54031),(39984,3,54045),(39995,3,54063),(40000,3,54069),(40009,3,54083),(40014,3,54089),(40019,3,54095),(40024,3,54101),(40029,3,54107),(40034,3,54113),(40145,3,54123),(40152,3,54133),(40157,3,54139),(40162,3,54145),(40171,3,54159),(40176,3,54165),(40190,3,54179),(40201,3,54197),(40208,3,54207),(40232,3,54233),(40237,3,54239),(40242,3,54245),(40255,3,54267),(40260,3,54273),(40265,3,54279),(40270,3,54285),(40275,3,54291),(40295,3,54305),(40300,3,54311),(40309,3,54321),(40314,3,54327),(40319,3,54333),(40326,3,54343),(40333,3,54353),(40338,3,54359),(40343,3,54365),(40348,3,54371),(40353,3,54377),(40358,3,54383),(40363,3,54389),(40370,3,54399),(40375,3,54405),(40380,3,54411),(40385,3,54417),(40390,3,54423),(40394,3,54429),(40400,3,54435),(40405,3,54441),(40410,3,54447),(40415,3,54453),(40420,3,54459),(40425,3,54465),(40430,3,54471),(40432,3,54473),(40440,3,54483),(40445,3,54489),(40450,3,54495),(40455,3,54501),(40460,3,54507),(40465,3,54513),(40470,3,54519),(40475,3,54525),(40480,3,54531),(40485,3,54537),(40490,3,54543),(40495,3,54549),(40500,3,54555),(40505,3,54561),(40510,3,54567),(40515,3,54573),(40520,3,54579),(40525,3,54585),(40530,3,54591),(40535,3,54597),(40540,3,54603),(40545,3,54609),(40550,3,54615),(40559,3,54630),(40568,3,54644),(40577,3,54658),(40588,3,54676),(40595,3,54686),(40600,3,54692),(40605,3,54698),(40614,3,54712),(40619,3,54718),(40632,3,54740),(40639,3,54751),(40644,3,54757),(40649,3,54763),(40654,3,54769),(40661,3,54779),(40668,3,54789),(40673,3,54795),(40678,3,54801),(40685,3,54811),(40690,3,54817),(40695,3,54823),(40700,3,54829),(40705,3,54835),(40710,3,54841),(40717,3,54851),(40722,3,54857),(40727,3,54863),(40732,3,54869),(40737,3,54875),(40742,3,54881),(40747,3,54887),(40756,3,54901),(40761,3,54907),(40766,3,54913),(40771,3,54919),(40780,3,54933),(40785,3,54939),(40790,3,54945),(40793,3,54947),(40800,3,54957),(40805,3,54963),(40810,3,54969),(40815,3,54975),(40820,3,54981),(40829,3,54995),(40836,3,55005),(40841,3,55011),(40850,3,55025),(40853,3,55027),(40872,3,55061),(40877,3,55067),(40882,3,55073),(40889,3,55083),(40894,3,55089),(40899,3,55095),(40904,3,55101),(40917,3,55123),(40924,3,55133),(40929,3,55139),(40936,3,55149),(40943,3,55159),(40948,3,55165),(40955,3,55175),(40960,3,55181),(40965,3,55187),(40967,3,55189),(40975,3,55199),(40980,3,55205),(40985,3,55211),(40990,3,55217),(40995,3,55223),(41000,3,55229),(41004,3,55235),(41010,3,55241),(41015,3,55247),(41020,3,55253),(41025,3,55259),(41030,3,55265),(41035,3,55271),(41042,3,55281),(41047,3,55287),(41052,3,55293),(41057,3,55299),(41060,3,55301),(41067,3,55311),(41072,3,55317),(41077,3,55323),(41082,3,55329),(41087,3,55335),(41092,3,55341),(41101,3,55355),(41112,3,55373),(41117,3,55379),(41122,3,55385),(41127,3,55391),(41132,3,55397),(41137,3,55403),(41142,3,55409),(41147,3,55415),(41152,3,55421),(41171,3,55455),(41186,3,55481),(41191,3,55487),(41198,3,55497),(41205,3,55507),(41214,3,55521),(41219,3,55527),(41228,3,55541),(41235,3,55551),(41240,3,55557),(41247,3,55567),(41252,3,55573),(41499,3,55619),(41515,3,55629),(41520,3,55635),(41531,3,55653),(41549,3,55675),(41554,3,55681),(41559,3,55687),(41564,3,55693),(41591,3,55727),(41598,3,55737),(41605,3,55747),(41610,3,55753),(41615,3,55759),(41620,3,55765),(41627,3,55775),(41632,3,55781),(41637,3,55787),(41642,3,55793),(41647,3,55799),(41679,3,55829),(41685,3,55835),(41686,3,55837),(41694,3,55847),(41703,3,55853),(41710,3,55863),(41715,3,55869),(41720,3,55875),(41727,3,55885),(41734,3,55895),(41739,3,55901),(41741,3,55903),(41743,3,55905),(41752,3,55911),(41753,3,55912),(41758,3,55913),(41756,3,55914),(41755,3,55918),(41764,3,55928),(41775,3,55929),(41774,3,55931),(41781,3,55947),(41792,3,55954),(41783,3,55955),(41790,3,55957),(41791,3,55958),(41776,3,55961),(41874,3,56157),(41881,3,56167),(41889,3,56173),(41888,3,56175),(41890,3,56177),(41894,3,56183),(41893,3,56184),(41898,3,56185),(41899,3,56186),(41916,3,56198),(41917,3,56199),(41914,3,56200),(41905,3,56201),(41918,3,56202),(41912,3,56203),(41920,3,56204),(41932,3,56211),(41933,3,56214),(41943,3,56215),(41941,3,56216),(41950,3,56221),(41942,3,56222),(41947,3,56223),(41946,3,56224),(41958,3,56229),(41952,3,56230),(41967,3,56238),(41966,3,56241),(42018,3,56242),(42015,3,56247),(42025,3,56250),(42014,3,56252),(42007,3,56254),(41982,3,56255),(42026,3,56256),(42024,3,56257),(41984,3,56260),(41991,3,56261),(42021,3,56263),(42022,3,56266),(42008,3,56271),(42019,3,56281),(42002,3,56282),(42009,3,56283),(42012,3,56284),(42016,3,56286),(42017,3,56288),(42028,3,56292),(42006,3,56293),(42023,3,56294),(42046,3,56295),(42011,3,56297),(42040,3,56298),(42043,3,56299),(42041,3,56301),(42057,3,56302),(42058,3,56303),(42052,3,56305),(42054,3,56307),(42060,3,56309),(42056,3,56310),(42059,3,56313),(42051,3,56316),(42049,3,56317),(42053,3,56319),(42061,3,56320),(42055,3,56321),(42050,3,56325),(42189,3,56416),(42190,3,56432),(42185,3,56433),(42191,3,56439),(42188,3,56471),(42291,3,56715),(42427,3,56729),(42412,3,56730),(42426,3,56731),(42418,3,56732),(42425,3,56738),(42420,3,56739),(42419,3,56740),(42416,3,56741),(42428,3,56742),(42430,3,56744),(42447,3,56755),(42449,3,56756),(42456,3,56763),(42455,3,56764),(42459,3,56768),(42458,3,56769),(42465,3,56771),(42470,3,56777),(42460,3,56778),(42464,3,56780),(42474,3,56784),(42479,3,56787),(42482,3,56788),(42478,3,56794),(42487,3,56797),(42484,3,56798),(42485,3,56801),(42489,3,56806),(42486,3,56809),(42490,3,56815),(42497,3,56816),(42491,3,56817),(42493,3,56819),(42518,3,56832),(42509,3,56833),(42524,3,56846),(42522,3,56848),(42517,3,56849),(42523,3,56850),(42532,3,56857),(42530,3,56858),(42545,3,56864),(42542,3,56866),(42550,3,56871),(42559,3,56872),(42546,3,56873),(42556,3,56885),(42561,3,56894),(42578,3,56900),(42579,3,56901),(42594,3,56902),(42597,3,56903),(42601,3,56904),(42598,3,56905),(42607,3,56908),(42605,3,56909),(42608,3,56910),(42609,3,56911),(42610,3,56912),(42611,3,56913),(42613,3,56914),(42617,3,56916),(42631,3,56917),(42618,3,56918),(42620,3,56919),(42619,3,56920),(42632,3,56923),(42621,3,56924),(42628,3,56926),(42627,3,56928),(42630,3,56930),(42634,3,56932),(42635,3,56933),(42925,3,57267),(42930,3,57273),(42935,3,57279),(42940,3,57285),(42945,3,57291),(42950,3,57297),(42957,3,57307),(42962,3,57313),(42967,3,57319),(42972,3,57325),(42977,3,57331),(42979,3,57333),(42987,3,57343),(42992,3,57349),(43004,3,57355),(43015,3,57361),(43020,3,57367),(43025,3,57373),(43029,3,57378),(43035,3,57385),(43040,3,57391),(43047,3,57401),(43052,3,57407),(43057,3,57413),(43062,3,57419),(43067,3,57425),(43072,3,57431),(43077,3,57437),(43084,3,57447),(43089,3,57453),(43096,3,57463),(43101,3,57469),(43108,3,57475),(43107,3,57476),(43116,3,57487),(43133,3,57493),(43138,3,57499),(43143,3,57505),(43148,3,57511),(43153,3,57517),(43160,3,57523),(43159,3,57524),(43168,3,57535),(43173,3,57541),(43178,3,57547),(43183,3,57553),(43188,3,57559),(43193,3,57565),(43200,3,57575),(43205,3,57581),(43210,3,57587),(43215,3,57593),(43220,3,57599),(43225,3,57605),(43231,3,57611),(43232,3,57613),(43240,3,57623),(43245,3,57629),(43250,3,57635),(43255,3,57641),(43260,3,57647),(43265,3,57653),(43270,3,57659),(43275,3,57665),(43280,3,57671),(43285,3,57677),(43290,3,57683),(43295,3,57689),(43300,3,57695),(43305,3,57701),(43310,3,57707),(43315,3,57713),(43320,3,57719),(43325,3,57725),(43330,3,57731),(43335,3,57737),(43340,3,57743),(43345,3,57749),(43351,3,57757),(43357,3,57765),(43362,3,57771),(43379,3,57801),(43386,3,57811),(43393,3,57821),(43398,3,57827),(43403,3,57833),(43408,3,57839),(43415,3,57849),(43420,3,57855),(43425,3,57861),(43434,3,57876),(43439,3,57882),(43446,3,57892),(43451,3,57898),(43456,3,57904),(43461,3,57910),(43466,3,57916),(43471,3,57922),(43478,3,57932),(43485,3,57942),(43490,3,57948),(43495,3,57954),(43500,3,57960),(43507,3,57970),(43512,3,57976),(43517,3,57982),(43522,3,57988),(43527,3,57994),(43532,3,58000),(43537,3,58006),(43544,3,58016),(43549,3,58022),(43554,3,58028),(43559,3,58034),(43564,3,58040),(43569,3,58046),(43574,3,58052),(43589,3,58078),(43594,3,58084),(43599,3,58090),(43604,3,58096),(43609,3,58102),(43616,3,58112),(43623,3,58122),(43628,3,58128),(43635,3,58138),(43640,3,58144),(43647,3,58155),(43652,3,58161),(43657,3,58167),(43662,3,58173),(43667,3,58179),(43672,3,58185),(43677,3,58191),(43682,3,58197),(43687,3,58203),(43692,3,58209),(43697,3,58215),(43702,3,58221),(43709,3,58231),(43714,3,58237),(43723,3,58251),(43728,3,58257),(43733,3,58263),(43738,3,58269),(43743,3,58275),(43748,3,58281),(43753,3,58287),(43843,3,58317),(43913,3,58331),(43918,3,58337),(43923,3,58343),(43928,3,58349),(43933,3,58355),(43942,3,58369),(43967,3,58375),(43972,3,58381),(43979,3,58391),(44006,3,58429),(44011,3,58435),(44028,3,58449),(44035,3,58459),(44040,3,58465),(44045,3,58471),(44050,3,58477),(44055,3,58483),(44060,3,58489),(44067,3,58499),(44076,3,58513),(44081,3,58519),(44086,3,58525),(44095,3,58539),(44110,3,58545),(44115,3,58551),(44120,3,58557),(44122,3,58559),(44132,3,58573),(44137,3,58579),(44142,3,58585),(44147,3,58591),(44152,3,58597),(44157,3,58603),(44164,3,58613),(44169,3,58619),(44174,3,58625),(44179,3,58631),(44184,3,58637),(44193,3,58651),(44200,3,58661),(44205,3,58667),(44210,3,58673),(44215,3,58679),(44241,3,58697),(44248,3,58708),(44272,3,58730),(44277,3,58736),(44284,3,58746),(44289,3,58752),(44296,3,58762),(44305,3,58776),(44310,3,58782),(44315,3,58788),(44320,3,58794),(44325,3,58800),(44330,3,58806),(44335,3,58812),(44342,3,58822),(44347,3,58828),(44352,3,58834),(44359,3,58844),(44364,3,58850),(44369,3,58856),(44374,3,58862),(44381,3,58872),(44390,3,58886),(44395,3,58892),(44400,3,58898),(44409,3,58912),(44418,3,58926),(44423,3,58932),(44432,3,58946),(44437,3,58952),(44444,3,58962),(44449,3,58968),(44456,3,58978),(44461,3,58984),(44466,3,58990),(44473,3,59000),(44478,3,59006),(44483,3,59012),(44488,3,59018),(44491,3,59020),(44499,3,59034),(44505,3,59040),(44510,3,59046),(44515,3,59052),(44522,3,59063),(44527,3,59069),(44532,3,59075),(44537,3,59081),(44542,3,59087),(44547,3,59093),(44552,3,59099),(44569,3,59129),(44578,3,59143),(44583,3,59149),(44592,3,59163),(44597,3,59169),(44602,3,59175),(44607,3,59181),(44612,3,59187),(44617,3,59193),(44622,3,59199),(44627,3,59205),(44632,3,59211),(44635,3,59213),(44642,3,59223),(44655,3,59245),(44662,3,59255),(44667,3,59261),(44676,3,59275),(44681,3,59281),(44688,3,59291),(44693,3,59297),(44710,3,59327),(44717,3,59337),(44724,3,59347),(44729,3,59353),(44734,3,59359),(44739,3,59365),(44746,3,59375),(44755,3,59389),(44760,3,59395),(44765,3,59401),(44770,3,59407),(44775,3,59413),(44873,3,59419),(44878,3,59425),(44883,3,59431),(44917,3,59437),(44928,3,59455),(44933,3,59461),(44940,3,59471),(44945,3,59477),(44950,3,59483),(44955,3,59489),(44962,3,59499),(44967,3,59505),(44976,3,59519),(44981,3,59525),(44988,3,59535),(44995,3,59545),(45000,3,59551),(45009,3,59565),(45014,3,59571),(45029,3,59577),(45038,3,59591),(45043,3,59597),(45048,3,59603),(45053,3,59609),(45060,3,59619),(45065,3,59625),(45068,3,59627),(45091,3,59653),(45098,3,59663),(45107,3,59677),(45112,3,59683),(45117,3,59689),(45122,3,59695),(45127,3,59701),(45132,3,59707),(45137,3,59713),(45142,3,59719),(45149,3,59729),(45158,3,59743),(45176,3,59761),(45181,3,59767),(45186,3,59773),(45191,3,59779),(45196,3,59785),(45213,3,59803),(45224,3,59821),(45229,3,59827),(45234,3,59833),(45241,3,59843),(45243,3,59845),(45251,3,59855),(45256,3,59861),(45261,3,59867),(45270,3,59881),(45275,3,59887),(45280,3,59893),(45285,3,59899),(45290,3,59905),(45299,3,59919),(45304,3,59925),(45309,3,59931),(45314,3,59937),(45319,3,59943),(45324,3,59949),(45329,3,59955),(45336,3,59965),(45341,3,59971),(45346,3,59977),(45351,3,59983),(45356,3,59989),(45361,3,59995),(45366,3,60001),(45371,3,60007),(45376,3,60013),(45381,3,60019),(45386,3,60025),(45395,3,60039),(45406,3,60057),(45411,3,60063),(45416,3,60069),(45421,3,60075),(45428,3,60085),(45433,3,60091),(45438,3,60097),(45443,3,60103),(45448,3,60109),(45453,3,60115),(45458,3,60121),(45463,3,60127),(45468,3,60133),(45473,3,60139),(45478,3,60145),(45485,3,60155),(45490,3,60161),(45497,3,60171),(45510,3,60193),(45515,3,60199),(45522,3,60209),(45527,3,60215),(45532,3,60221),(45537,3,60227),(45542,3,60233),(45547,3,60239),(45549,3,60241),(45557,3,60251),(45564,3,60261),(45569,3,60267),(45574,3,60273),(45579,3,60279),(45586,3,60289),(45591,3,60295),(45665,3,60301),(45674,3,60315),(45681,3,60325),(45686,3,60331),(45691,3,60337),(45696,3,60343),(45706,3,60349),(45711,3,60355),(45716,3,60361),(45727,3,60379),(45732,3,60385),(45740,3,60399),(45746,3,60405),(45751,3,60411),(45756,3,60417),(45763,3,60427),(45780,3,60457),(45785,3,60463),(45792,3,60473),(45813,3,60511),(45820,3,60521),(45825,3,60527),(45832,3,60537),(45839,3,60547),(45846,3,60557),(45870,3,60575),(45879,3,60589),(45886,3,60599),(45896,3,60605),(45901,3,60611),(45906,3,60617),(45913,3,60627),(45920,3,60637),(45925,3,60643),(45930,3,60649),(45937,3,60659),(45950,3,60669),(45955,3,60675),(45962,3,60685),(45971,3,60699),(45976,3,60705),(45983,3,60716),(45990,3,60726),(45995,3,60732),(46000,3,60738),(46005,3,60744),(46010,3,60750),(46015,3,60756),(46022,3,60766),(46027,3,60772),(46034,3,60782),(46049,3,60808),(46054,3,60814),(46059,3,60820),(46066,3,60830),(46071,3,60836),(46076,3,60842),(46081,3,60848),(46086,3,60854),(46091,3,60860),(46096,3,60866),(46101,3,60872),(46106,3,60878),(46111,3,60884),(46116,3,60890),(46121,3,60896),(46126,3,60902),(46131,3,60908),(46136,3,60914),(46141,3,60920),(46146,3,60926),(46151,3,60932),(46156,3,60938),(46163,3,60948),(46172,3,60958),(46174,3,60959),(46173,3,60960),(46189,3,60984),(46194,3,60990),(46199,3,60996),(46204,3,61002),(46209,3,61008),(46214,3,61014),(46219,3,61020),(46224,3,61026),(46231,3,61036),(46238,3,61046),(46247,3,61060),(46254,3,61070),(46269,3,61096),(46274,3,61102),(46277,3,61105),(46288,3,61122),(46293,3,61128),(46298,3,61134),(46303,3,61140),(46308,3,61146),(46313,3,61152),(46318,3,61158),(46322,3,61164),(46330,3,61174),(46335,3,61180),(46340,3,61186),(46345,3,61192),(46352,3,61202),(46357,3,61208),(46364,3,61218),(46371,3,61228),(46378,3,61238),(46383,3,61244),(46392,3,61258),(46397,3,61264),(46402,3,61270),(46407,3,61276),(46412,3,61282),(46417,3,61288),(46422,3,61294),(46427,3,61300),(46432,3,61306),(46437,3,61312),(46442,3,61318),(46449,3,61328),(46456,3,61338),(46461,3,61344),(46466,3,61350),(46471,3,61356),(46476,3,61362),(46487,3,61380),(46501,3,61390),(46506,3,61396),(46521,3,61414),(46532,3,61432),(46537,3,61438),(46544,3,61448),(46549,3,61454),(46554,3,61460),(46561,3,61470),(46566,3,61476),(46571,3,61482),(46576,3,61488),(46581,3,61494),(46588,3,61504),(46595,3,61514),(46600,3,61520),(46607,3,61530),(46612,3,61536),(46619,3,61546),(46626,3,61556),(46633,3,61566),(46642,3,61580),(46647,3,61586),(46652,3,61592),(46657,3,61598),(46662,3,61604),(46669,3,61614),(46674,3,61620),(46679,3,61626),(46681,3,61628),(46689,3,61638),(46694,3,61644),(46703,3,61658),(46710,3,61668),(46721,3,61686),(46728,3,61696),(46733,3,61702),(46738,3,61708),(46745,3,61718),(46750,3,61724),(46757,3,61734),(46762,3,61740),(46769,3,61746),(46768,3,61747),(46777,3,61758),(46784,3,61768),(46789,3,61774),(46794,3,61780),(46799,3,61786),(46804,3,61792),(46809,3,61798),(46814,3,61804),(46819,3,61810),(46824,3,61816),(46829,3,61822),(46834,3,61828),(46841,3,61838),(46846,3,61844),(46851,3,61850),(46858,3,61860),(46863,3,61866),(46868,3,61872),(46873,3,61878),(46878,3,61884),(46885,3,61894),(46892,3,61904),(46897,3,61910),(46902,3,61916),(46907,3,61922),(46912,3,61928),(46927,3,61954),(46932,3,61960),(46939,3,61970),(46944,3,61976),(46949,3,61982),(46954,3,61988),(46959,3,61994),(46964,3,62000),(46969,3,62006),(46976,3,62016),(46981,3,62022),(46986,3,62028),(46991,3,62034),(46996,3,62040),(47001,3,62046),(47008,3,62056),(47013,3,62062),(47018,3,62068),(47023,3,62074),(47028,3,62080),(47037,3,62094),(47042,3,62100),(47047,3,62106),(47054,3,62116),(47061,3,62126),(47066,3,62132),(47073,3,62142),(47078,3,62148),(47083,3,62154),(47088,3,62160),(47095,3,62170),(47100,3,62176),(47109,3,62190),(47114,3,62196),(47119,3,62202),(47124,3,62208),(47129,3,62214),(47134,3,62220),(47139,3,62226),(47144,3,62232),(47157,3,62254),(47162,3,62260),(47167,3,62266),(47172,3,62272),(47177,3,62278),(47182,3,62284),(47187,3,62290),(47192,3,62296),(47197,3,62302),(47202,3,62308),(47207,3,62314),(47212,3,62320),(47217,3,62326),(47222,3,62332),(47231,3,62346),(47236,3,62352),(47241,3,62358),(47246,3,62364),(47255,3,62378),(47260,3,62384),(47265,3,62390),(47274,3,62404),(47279,3,62410),(47284,3,62416),(47291,3,62426),(47296,3,62432),(47303,3,62442),(47308,3,62448),(47313,3,62454),(47324,3,62472),(47331,3,62482),(47336,3,62488),(47341,3,62494),(47346,3,62500),(47353,3,62510),(47358,3,62516),(47363,3,62522),(47368,3,62528),(47373,3,62534),(47378,3,62540),(47385,3,62550),(47390,3,62556),(47395,3,62562),(47406,3,62580),(47411,3,62586),(47416,3,62592),(47421,3,62598),(47426,3,62604),(47431,3,62610),(47436,3,62616),(47441,3,62622),(47446,3,62628),(47451,3,62634),(47456,3,62640),(47461,3,62646),(47466,3,62652),(47468,3,62654),(47476,3,62664),(47481,3,62670),(47488,3,62680),(47493,3,62686),(47500,3,62696),(47505,3,62702),(47510,3,62708),(47517,3,62718),(47522,3,62724),(47527,3,62730),(47534,3,62740),(47539,3,62746),(47546,3,62756),(47551,3,62762),(47556,3,62768),(47561,3,62774),(47566,3,62780),(47571,3,62786),(47576,3,62792),(47581,3,62798),(47586,3,62804),(47591,3,62810),(47596,3,62816),(47601,3,62822),(47606,3,62828),(47613,3,62838),(47618,3,62844),(47623,3,62850),(47630,3,62860),(47635,3,62866),(47640,3,62872),(47645,3,62878),(47650,3,62884),(47655,3,62890),(47664,3,62904),(47669,3,62910),(47674,3,62916),(47683,3,62930),(47688,3,62936),(47693,3,62942),(47698,3,62948),(47703,3,62954),(47708,3,62960),(47919,3,62966),(47936,3,62996),(47943,3,63006),(47954,3,63024),(47961,3,63034),(47966,3,63040),(47971,3,63046),(47976,3,63052),(47985,3,63066),(47990,3,63072),(47995,3,63078),(48004,3,63092),(48009,3,63098),(48014,3,63104),(48019,3,63110),(48030,3,63128),(48037,3,63138),(48042,3,63144),(48047,3,63150),(48054,3,63160),(48059,3,63166),(48064,3,63172),(48069,3,63178),(48082,3,63200),(48095,3,63222),(48104,3,63236),(48113,3,63250),(48142,3,63304),(48151,3,63318),(48156,3,63324),(48161,3,63330),(48166,3,63336),(48171,3,63342),(48176,3,63348),(48181,3,63354),(48186,3,63360),(48199,3,63382),(48206,3,63392),(48219,3,63398),(48224,3,63404),(48229,3,63410),(48236,3,63420),(48241,3,63426),(48246,3,63432),(48251,3,63438),(48256,3,63444),(48261,3,63450),(48266,3,63456),(48271,3,63462),(48276,3,63468),(48281,3,63474),(48288,3,63485),(48297,3,63500),(48306,3,63514),(48311,3,63520),(48316,3,63526),(48323,3,63536),(48328,3,63542),(48333,3,63548),(48338,3,63554),(48340,3,63556),(48348,3,63566),(48353,3,63572),(48358,3,63578),(48363,3,63584),(48368,3,63590),(48373,3,63596),(48378,3,63602),(48383,3,63608),(48388,3,63614),(48393,3,63620),(48402,3,63634),(48413,3,63652),(48424,3,63670),(48429,3,63676),(48436,3,63686),(48443,3,63696),(48450,3,63706),(48459,3,63720),(48464,3,63726),(48471,3,63736),(48476,3,63742),(48483,3,63752),(48496,3,63774),(48503,3,63784),(48508,3,63790),(48513,3,63796),(48518,3,63802),(48531,3,63824),(48536,3,63830),(48541,3,63836),(48546,3,63842),(48553,3,63852),(48558,3,63858),(48563,3,63864),(48568,3,63870),(48575,3,63876),(48573,3,63878),(48579,3,63880),(48588,3,63894),(48595,3,63904),(48600,3,63910),(48605,3,63916),(48610,3,63922),(48615,3,63928),(48621,3,63934),(48622,3,63935),(48624,3,63938),(48629,3,63944),(48640,3,63958),(48644,3,63961),(48650,3,63970),(48652,3,63971),(48660,3,63982),(48665,3,63988),(48670,3,63994),(48675,3,64000),(48680,3,64006),(48685,3,64012),(48690,3,64018),(48695,3,64024),(48700,3,64030),(48705,3,64036),(48710,3,64042),(48715,3,64048),(48720,3,64054),(48724,3,64060),(48730,3,64066),(48735,3,64072),(48740,3,64078),(48747,3,64088),(48752,3,64094),(48765,3,64116),(48778,3,64138),(48785,3,64148),(48790,3,64154),(48795,3,64160),(48802,3,64170),(48811,3,64184),(48818,3,64194),(48823,3,64200),(48828,3,64206),(48833,3,64212),(48846,3,64234),(48851,3,64240),(48856,3,64246),(48869,3,64268),(48876,3,64278),(48880,3,64284),(48886,3,64290),(48891,3,64296),(48898,3,64306),(48907,3,64320),(48914,3,64330),(48919,3,64336),(48924,3,64342),(48933,3,64356),(48938,3,64362),(48943,3,64368),(48958,3,64394),(48965,3,64404),(48972,3,64414),(48977,3,64420),(48982,3,64426),(48991,3,64440),(48996,3,64446),(48998,3,64448),(49006,3,64458),(49013,3,64468),(49018,3,64474),(49023,3,64480),(49028,3,64486),(49033,3,64492),(49038,3,64498),(49043,3,64504),(49048,3,64510),(49061,3,64532),(49066,3,64538),(49075,3,64552),(49080,3,64558),(49087,3,64568),(49092,3,64574),(49097,3,64580),(49102,3,64586),(49107,3,64592),(49112,3,64598),(49117,3,64604),(49124,3,64615),(49129,3,64621),(49134,3,64627),(49139,3,64633),(49146,3,64643),(49151,3,64649),(49156,3,64655),(49161,3,64661),(49166,3,64667),(49171,3,64673),(49176,3,64679),(49183,3,64689),(49188,3,64695),(49197,3,64709),(49202,3,64715),(49207,3,64721),(49212,3,64727),(49221,3,64741),(49308,3,64911),(49313,3,64917),(49318,3,64923),(49323,3,64929),(49328,3,64935),(49333,3,64941),(49338,3,64947),(49343,3,64953),(49348,3,64959),(49353,3,64965),(49358,3,64971),(49367,3,64985),(49373,3,64995),(49393,3,65025),(49392,3,65027),(49401,3,65037),(49406,3,65043),(49411,3,65049),(49416,3,65055),(49421,3,65061),(49426,3,65067),(49431,3,65073),(49436,3,65079),(49443,3,65089),(49456,3,65111),(49461,3,65117),(49466,3,65123),(49473,3,65133),(49478,3,65139),(49483,3,65145),(49488,3,65151),(49493,3,65157),(49498,3,65163),(49511,3,65185),(49534,3,65228),(49539,3,65234),(49544,3,65240),(49549,3,65246),(49554,3,65252),(49561,3,65262),(49566,3,65268),(49571,3,65274),(49576,3,65280),(49581,3,65286),(49588,3,65296),(49593,3,65302),(49598,3,65308),(49605,3,65318),(49610,3,65324),(49615,3,65330),(49620,3,65336),(49625,3,65342),(49632,3,65352),(49639,3,65362),(49644,3,65368),(49649,3,65374),(49654,3,65380),(49659,3,65386),(49668,3,65400),(49673,3,65406),(49684,3,65424),(49689,3,65430),(49696,3,65440),(49701,3,65446),(49706,3,65452),(49711,3,65458),(49716,3,65464),(49725,3,65478),(49732,3,65488),(49737,3,65494),(49746,3,65508),(49753,3,65518),(49758,3,65524),(49769,3,65542),(49774,3,65548),(49781,3,65558),(49786,3,65564),(49791,3,65570),(49796,3,65576),(49801,3,65582),(49806,3,65588),(49811,3,65594),(49818,3,65604),(49823,3,65610),(49834,3,65628),(49839,3,65634),(49850,3,65652),(49855,3,65658),(49862,3,65668),(49883,3,65706),(49888,3,65712),(49893,3,65718),(49900,3,65728),(49905,3,65734),(49918,3,65756),(49933,3,65782),(49946,3,65804),(49951,3,65810),(49956,3,65816),(49961,3,65822),(49966,3,65828),(49971,3,65834),(49978,3,65844),(49989,3,65862),(49998,3,65876),(50003,3,65882),(50194,3,66260),(50199,3,66266),(50202,3,66268),(50209,3,66278),(50214,3,66284),(50217,3,66286),(50224,3,66296),(50229,3,66302),(50240,3,66320),(50245,3,66326),(50252,3,66336),(50259,3,66346),(50264,3,66352),(50269,3,66358),(50276,3,66368),(50287,3,66386),(50310,3,66428),(50329,3,66462),(50342,3,66484),(50349,3,66494),(50354,3,66500),(50359,3,66506),(50364,3,66512),(50369,3,66518),(50374,3,66524),(50381,3,66534),(50386,3,66540),(50391,3,66546),(50398,3,66556),(50403,3,66562),(50408,3,66568),(50413,3,66574),(50418,3,66580),(50427,3,66594),(50434,3,66604),(50447,3,66626),(50456,3,66641),(50465,3,66656),(50470,3,66662),(50477,3,66673),(50482,3,66679),(50489,3,66690),(50496,3,66701),(50501,3,66708),(50508,3,66718),(50515,3,66729),(50518,3,66731),(50525,3,66741),(50532,3,66751),(50551,3,66785),(50556,3,66791),(50567,3,66810),(50576,3,66825),(50585,3,66840),(50596,3,66859),(50605,3,66875),(50612,3,66885),(50619,3,66896),(50626,3,66907),(50633,3,66918),(50640,3,66929),(50647,3,66940),(50652,3,66946),(50659,3,66957),(50666,3,66968),(50671,3,66974),(50678,3,66985),(50685,3,66995),(50690,3,67001),(50703,3,67023),(50708,3,67029),(50710,3,67031),(50722,3,67049),(50727,3,67055),(50732,3,67061),(50741,3,67075),(50754,3,67097),(50767,3,67119),(50772,3,67125),(50779,3,67135),(50790,3,67153),(50801,3,67171),(50806,3,67177),(50811,3,67183),(50816,3,67189),(50825,3,67203),(50830,3,67209),(50837,3,67219),(50844,3,67229),(50849,3,67235),(50858,3,67249),(50863,3,67255),(50876,3,67277),(50881,3,67283),(50892,3,67301),(50897,3,67307),(50904,3,67317),(50909,3,67323),(50920,3,67341),(50925,3,67347),(50934,3,67361),(50949,3,67387),(50954,3,67393),(50957,3,67395),(50966,3,67409),(50971,3,67415),(50976,3,67421),(50981,3,67427),(50986,3,67433),(50991,3,67439),(50996,3,67445),(51001,3,67451),(51006,3,67457),(51013,3,67467),(51022,3,67481),(51029,3,67491),(51034,3,67497),(51049,3,67523),(51060,3,67541),(51065,3,67547),(51072,3,67557),(51077,3,67563),(51088,3,67581),(51097,3,67595),(51106,3,67609),(51117,3,67627),(51122,3,67633),(51141,3,67667),(51146,3,67673),(51148,3,67674),(51158,3,67689),(51167,3,67703),(51174,3,67713),(51179,3,67719),(51184,3,67725),(51189,3,67731),(51194,3,67737),(51199,3,67743),(51210,3,67761),(51215,3,67767),(51220,3,67773),(51225,3,67779),(51236,3,67797),(51243,3,67807),(51248,3,67813),(51255,3,67823),(51258,3,67826),(51259,3,67827),(51292,3,67885),(51301,3,67899),(51316,3,67925),(51329,3,67947),(51340,3,67965),(51345,3,67971),(51350,3,67977),(51355,3,67983),(51360,3,67989),(51369,3,68003),(51388,3,68037),(51395,3,68047),(51416,3,68085),(51421,3,68091),(51426,3,68097),(51433,3,68107),(51438,3,68113),(51447,3,68127),(51452,3,68133),(51465,3,68155),(51472,3,68165),(51477,3,68171),(51482,3,68177),(51487,3,68183),(51496,3,68197),(51501,3,68203),(51508,3,68213),(51513,3,68219),(51518,3,68225),(51523,3,68231),(51528,3,68237),(51541,3,68259),(51548,3,68269),(51553,3,68275),(51558,3,68281),(51563,3,68287),(51568,3,68293),(51575,3,68303),(51580,3,68309),(51587,3,68319),(51592,3,68325),(51597,3,68331),(51602,3,68337),(51607,3,68343),(51612,3,68349),(51617,3,68355),(51622,3,68361),(51629,3,68371),(51634,3,68377),(51636,3,68379),(51644,3,68389),(51649,3,68395),(51653,3,68397),(51659,3,68407),(51664,3,68413),(51669,3,68419),(51682,3,68441),(51689,3,68451),(51694,3,68457),(51699,3,68463),(51704,3,68469),(51709,3,68475),(51720,3,68493),(51725,3,68499),(51736,3,68518),(51741,3,68524),(51746,3,68530),(51751,3,68536),(51756,3,68542),(51761,3,68548),(51766,3,68554),(51771,3,68560),(51776,3,68566),(51781,3,68572),(51792,3,68590),(51799,3,68600),(51806,3,68610),(51811,3,68616),(51816,3,68622),(51823,3,68628),(51821,3,68630),(51831,3,68640),(51836,3,68646),(51841,3,68652),(51846,3,68658),(51851,3,68664),(51856,3,68670),(51863,3,68680),(51868,3,68686),(51873,3,68692),(51884,3,68710),(51889,3,68716),(51900,3,68734),(51905,3,68740),(51910,3,68746),(51947,3,68816),(51954,3,68826),(51959,3,68832),(51966,3,68842),(51971,3,68848),(51978,3,68858),(51983,3,68864),(51988,3,68870),(51993,3,68876),(51998,3,68882),(52003,3,68888),(52008,3,68894),(52013,3,68900),(52018,3,68906),(52027,3,68920),(52032,3,68926),(52043,3,68944),(52048,3,68950),(52059,3,68968),(52066,3,68978),(52077,3,68996),(52084,3,69007),(52089,3,69013),(52098,3,69027),(52111,3,69049),(52116,3,69055),(52133,3,69085),(52140,3,69095),(52156,3,69121),(52157,3,69123),(52175,3,69153),(52188,3,69175),(52193,3,69181),(52200,3,69191),(52205,3,69197),(52214,3,69211),(52225,3,69229),(52230,3,69235),(52235,3,69241),(52240,3,69247),(52245,3,69253),(52250,3,69259),(52255,3,69265),(52264,3,69279),(52269,3,69285),(52274,3,69291),(52279,3,69297),(52284,3,69303),(52289,3,69309),(52296,3,69319),(52303,3,69329),(52308,3,69335),(52317,3,69349),(52322,3,69355),(52331,3,69369),(52336,3,69375),(52341,3,69381),(52348,3,69391),(52353,3,69397),(52360,3,69407),(52369,3,69421),(52374,3,69427),(52381,3,69437),(52392,3,69455),(52397,3,69461),(52402,3,69467),(52407,3,69473),(52412,3,69479),(52417,3,69485),(52422,3,69491),(52427,3,69497),(52432,3,69503),(52437,3,69509),(52442,3,69515),(52449,3,69521),(52450,3,69522),(52451,3,69525),(52462,3,69539),(52467,3,69545),(52472,3,69551),(52477,3,69557),(52482,3,69563),(52489,3,69573),(52496,3,69583),(52503,3,69593),(52508,3,69599),(52515,3,69609),(52520,3,69615),(52525,3,69621),(52530,3,69627),(52535,3,69633),(52540,3,69639),(52545,3,69645),(52550,3,69651),(52555,3,69657),(52562,3,69667),(52567,3,69673),(52572,3,69679),(52577,3,69685),(52582,3,69691),(52587,3,69697),(52594,3,69707),(52599,3,69713),(52604,3,69719),(52609,3,69725),(52614,3,69731),(52619,3,69737),(52626,3,69747),(52631,3,69753),(52636,3,69759),(52641,3,69765),(52646,3,69771),(52651,3,69777),(52656,3,69783),(52665,3,69797),(52674,3,69811),(52679,3,69817),(52686,3,69827),(52691,3,69833),(52696,3,69839),(52701,3,69845),(52708,3,69855),(52715,3,69865),(52720,3,69871),(52725,3,69877),(52730,3,69883),(52737,3,69893),(52742,3,69899),(52747,3,69905),(52752,3,69911),(52757,3,69917),(52762,3,69923),(52767,3,69929),(52772,3,69935),(52777,3,69941),(52784,3,69951),(52791,3,69961),(52798,3,69971),(52803,3,69977),(52808,3,69983),(52813,3,69989),(52818,3,69995),(52823,3,70001),(52828,3,70007),(52833,3,70013),(52838,3,70019),(52843,3,70025),(52852,3,70039),(52857,3,70045),(52862,3,70051),(52867,3,70057),(52872,3,70063),(52883,3,70081),(52888,3,70087),(52893,3,70093),(52898,3,70099),(52903,3,70105),(52908,3,70111),(52913,3,70117),(52918,3,70123),(52923,3,70129),(52930,3,70139),(52939,3,70153),(52944,3,70159),(52951,3,70169),(52956,3,70175),(52961,3,70181),(52968,3,70191),(52977,3,70205),(52982,3,70211),(52999,3,70241),(53004,3,70247),(53013,3,70261),(53018,3,70267),(53023,3,70273),(53030,3,70284),(53037,3,70294),(53042,3,70300),(53047,3,70306),(53052,3,70312),(53057,3,70318),(53062,3,70324),(53067,3,70330),(53076,3,70344),(53093,3,70374),(53102,3,70388),(53107,3,70394),(53120,3,70416),(53125,3,70422),(53130,3,70428),(53135,3,70434),(53140,3,70440),(53145,3,70446),(53162,3,70476),(53166,3,70482),(53178,3,70500),(53212,3,70566),(53226,3,70588),(53233,3,70598),(53236,3,70600),(53243,3,70610),(53248,3,70612),(53281,3,70678),(53304,3,70722),(53371,3,70850),(53383,3,70872),(53411,3,70922),(53432,3,70960),(53443,3,70978),(53458,3,71004),(53463,3,71010),(53468,3,71016),(53473,3,71022),(53480,3,71032),(53497,3,71062),(53508,3,71080),(53517,3,71094),(53522,3,71100),(53527,3,71106),(53532,3,71112),(53539,3,71122),(53548,3,71136),(53553,3,71142),(53558,3,71148),(53565,3,71158),(53570,3,71164),(53579,3,71178),(53586,3,71188),(53591,3,71194),(53596,3,71200),(53603,3,71210),(53608,3,71216),(53617,3,71231),(53622,3,71237),(53627,3,71243),(53632,3,71249),(53637,3,71255),(53642,3,71261),(53651,3,71275),(53656,3,71281),(53665,3,71295),(53670,3,71301),(53675,3,71307),(53682,3,71317),(53687,3,71323),(53694,3,71333),(53699,3,71339),(53704,3,71345),(53711,3,71355),(53716,3,71361),(53723,3,71371),(53728,3,71377),(53733,3,71383),(53740,3,71393),(53745,3,71399),(53750,3,71405),(53757,3,71415),(53762,3,71421),(53767,3,71427),(53772,3,71433),(53777,3,71439),(53782,3,71445),(53787,3,71451),(53794,3,71461),(53805,3,71479),(53810,3,71485),(53815,3,71491),(53822,3,71501),(53827,3,71507),(53832,3,71513),(53837,3,71519),(53842,3,71525),(53847,3,71531),(53852,3,71537),(53857,3,71543),(53862,3,71549),(53867,3,71555),(53872,3,71561),(53877,3,71567),(53886,3,71581),(53893,3,71591),(53898,3,71597),(53903,3,71603),(53908,3,71609),(53913,3,71615),(53918,3,71621),(53925,3,71631),(53930,3,71637),(53935,3,71643),(53940,3,71649),(53945,3,71655),(53950,3,71661),(53959,3,71675),(53964,3,71681),(53969,3,71687),(53980,3,71705),(53985,3,71711),(53990,3,71717),(53995,3,71723),(54000,3,71729),(54005,3,71735),(54010,3,71741),(54015,3,71747),(54020,3,71753),(54025,3,71759),(54030,3,71765),(54037,3,71775),(54042,3,71781),(54047,3,71787),(54052,3,71793),(54057,3,71799),(54062,3,71805),(54069,3,71815),(54076,3,71825),(54083,3,71835),(54088,3,71841),(54093,3,71847),(54098,3,71853),(54103,3,71859),(54108,3,71865),(54113,3,71871),(54118,3,71877),(54125,3,71887),(54130,3,71893),(54139,3,71907),(54144,3,71913),(54149,3,71919),(54158,3,71933),(54163,3,71939),(54168,3,71945),(54173,3,71951),(54178,3,71957),(54183,3,71963),(54188,3,71969),(54197,3,71983),(54202,3,71989),(54207,3,71995),(54212,3,72001),(54217,3,72007),(54222,3,72013),(54227,3,72019),(54232,3,72025),(54241,3,72039),(54248,3,72049),(54253,3,72055),(54258,3,72061),(54267,3,72075),(54274,3,72085),(54279,3,72091),(54286,3,72101),(54291,3,72107),(54296,3,72113),(54301,3,72119),(54303,3,72121),(54313,3,72135),(54320,3,72145),(54329,3,72159),(54334,3,72165),(54339,3,72171),(54346,3,72182),(54355,3,72196),(54362,3,72206),(54381,3,72240),(54398,3,72270),(54403,3,72276),(54408,3,72282),(54423,3,72308),(54428,3,72314),(54434,3,72324),(54444,3,72338),(54449,3,72344),(54454,3,72350),(54459,3,72356),(54468,3,72370),(54475,3,72380),(54490,3,72407),(54499,3,72421),(54504,3,72427),(54509,3,72433),(54514,3,72439),(54525,3,72457),(54532,3,72467),(54551,3,72501),(54558,3,72511),(54569,3,72529),(54580,3,72547),(54587,3,72557),(54598,3,72575),(54603,3,72581),(54608,3,72587),(54613,3,72593),(54622,3,72607),(54627,3,72613),(54632,3,72619),(54639,3,72629),(54644,3,72635),(54651,3,72645),(54658,3,72655),(54663,3,72661),(54668,3,72667),(54685,3,72697),(54710,3,72743),(54719,3,72757),(54724,3,72763),(54731,3,72773),(54738,3,72783),(54755,3,72813),(54762,3,72823),(54767,3,72829),(54772,3,72835),(54781,3,72850),(54788,3,72860),(54793,3,72866),(54802,3,72880),(54815,3,72902),(54822,3,72912),(54831,3,72926),(54840,3,72940),(54857,3,72970),(54862,3,72976),(54873,3,72994),(54880,3,73004),(54883,3,73008),(54890,3,73016),(54897,3,73026),(54904,3,73037),(54919,3,73063),(54924,3,73069),(54933,3,73083),(54950,3,73113),(54959,3,73127),(54964,3,73133),(54969,3,73139),(54974,3,73145),(54987,3,73167),(54996,3,73181),(55001,3,73187),(55024,3,73230),(55029,3,73236),(55046,3,73266),(55059,3,73288),(55064,3,73294),(55071,3,73304),(55084,3,73326),(55089,3,73332),(55102,3,73354),(55107,3,73360),(55120,3,73382),(55129,3,73396),(55134,3,73402),(55145,3,73420),(55154,3,73434),(55159,3,73440),(55164,3,73446),(55171,3,73456),(55176,3,73462),(55181,3,73468),(55192,3,73486),(55205,3,73508),(55220,3,73534),(55231,3,73552),(55236,3,73558),(55241,3,73564),(55250,3,73578),(55267,3,73608),(55288,3,73646),(55297,3,73660),(55306,3,73674),(55311,3,73680),(55316,3,73686),(55321,3,73692),(55326,3,73698),(55333,3,73708),(55342,3,73722),(55351,3,73736),(55356,3,73742),(55365,3,73756),(55370,3,73762),(55379,3,73776),(55384,3,73782),(55389,3,73788),(55394,3,73794),(55401,3,73804),(55410,3,73819),(55417,3,73829),(55422,3,73835),(55429,3,73845),(55436,3,73855),(55443,3,73865),(55452,3,73879),(55459,3,73889),(55464,3,73895),(55471,3,73905),(55476,3,73911),(55481,3,73917),(55486,3,73923),(55495,3,73937),(55502,3,73947),(55507,3,73953),(55516,3,73967),(55521,3,73973),(55526,3,73979),(55531,3,73985),(55536,3,73991),(55541,3,73997),(55546,3,74003),(55551,3,74009),(55898,3,74015),(55903,3,74021),(55912,3,74035),(55917,3,74041),(55922,3,74047),(55927,3,74053),(55932,3,74059),(55939,3,74069),(55944,3,74075),(55951,3,74085),(55956,3,74091),(55961,3,74097),(55970,3,74111),(55975,3,74117),(55980,3,74123),(55985,3,74129),(55990,3,74135),(55995,3,74141),(56010,3,74167),(56017,3,74177),(56030,3,74199),(56035,3,74205),(56040,3,74211),(56045,3,74217),(56050,3,74223),(56055,3,74229),(56060,3,74235),(56065,3,74241),(56070,3,74247),(56083,3,74269),(56094,3,74287),(56099,3,74293),(56106,3,74303),(56111,3,74309),(56705,3,75498),(57505,3,77103),(58257,3,78603),(59951,3,81973),(60103,3,82275),(62865,3,87785),(63835,3,89747),(64267,3,90589),(67938,3,97927),(68811,3,99669),(68832,3,99707),(68837,3,99713),(68842,3,99719),(68849,3,99729),(68854,3,99735),(68865,3,99753),(68870,3,99759),(68875,3,99765),(68880,3,99771),(68885,3,99777),(68890,3,99783),(68895,3,99789),(68900,3,99795),(68905,3,99801),(68910,3,99807),(68915,3,99813),(68922,3,99824),(68927,3,99830),(68932,3,99836),(68941,3,99850),(68946,3,99856),(68953,3,99866),(68958,3,99872),(68963,3,99878),(68968,3,99884),(68975,3,99894),(68982,3,99904),(68989,3,99914),(68998,3,99928),(69003,3,99934),(69012,3,99948),(69017,3,99954),(69024,3,99964),(69031,3,99974),(69038,3,99984),(69043,3,99990),(69048,3,99996),(69055,3,100006),(69060,3,100012),(69065,3,100018),(69082,3,100049),(69087,3,100055),(69092,3,100061),(69097,3,100067),(69102,3,100073),(69107,3,100079),(69112,3,100085),(69117,3,100091),(69122,3,100097),(69127,3,100103),(69132,3,100109),(69147,3,100135),(69152,3,100141),(69157,3,100147),(69162,3,100153),(69167,3,100159),(69172,3,100165),(69179,3,100175),(69184,3,100181),(69187,3,100185),(69194,3,100193),(69199,3,100199),(69204,3,100205),(69213,3,100219),(69218,3,100225),(69223,3,100231),(69228,3,100237),(69233,3,100243),(69238,3,100249),(69243,3,100255),(69248,3,100261),(69253,3,100267),(69258,3,100273),(69267,3,100287),(69272,3,100293),(69277,3,100299),(69282,3,100305),(69287,3,100311),(69294,3,100321),(69299,3,100327),(69304,3,100333),(69309,3,100339),(69318,3,100353),(69323,3,100359),(69328,3,100365),(69335,3,100375),(69364,3,100429),(69371,3,100439),(69376,3,100445),(69381,3,100451),(69388,3,100461),(69393,3,100467),(69400,3,100477),(69405,3,100483),(69410,3,100489),(69417,3,100499),(69419,3,100501),(69425,3,100511),(69432,3,100517),(69437,3,100523),(69442,3,100529),(69447,3,100535),(69462,3,100561),(69473,3,100579),(69478,3,100585),(69483,3,100591),(69488,3,100597),(69493,3,100603),(69498,3,100609),(69503,3,100615),(69508,3,100621),(69513,3,100627),(69522,3,100641),(69531,3,100655),(69536,3,100661),(69541,3,100667),(69546,3,100673),(69551,3,100679),(69556,3,100685),(69561,3,100691),(69566,3,100697),(69571,3,100703),(69576,3,100709),(69583,3,100720),(69588,3,100726),(69593,3,100732),(69600,3,100742),(69605,3,100748),(69610,3,100754),(69615,3,100760),(69620,3,100766),(69627,3,100776),(69632,3,100782),(69637,3,100788),(69642,3,100794),(69649,3,100804),(69654,3,100810),(69659,3,100816),(69664,3,100822),(69671,3,100832),(69676,3,100838),(69681,3,100844),(69686,3,100850),(69691,3,100856),(69696,3,100862),(69701,3,100868),(69710,3,100882),(69715,3,100888),(69722,3,100898),(69731,3,100913),(69736,3,100919),(69738,3,100921),(69746,3,100931),(69751,3,100937),(69756,3,100943),(69763,3,100953),(69768,3,100959),(69773,3,100965),(69778,3,100971),(69791,3,100993),(69798,3,101003),(69803,3,101009),(69808,3,101015),(69813,3,101021),(69818,3,101027),(69825,3,101038),(69830,3,101044),(69835,3,101050),(69842,3,101060),(69847,3,101066),(69852,3,101072),(69857,3,101078),(69866,3,101092),(69869,3,101094),(69874,3,101100),(69879,3,101106),(69884,3,101112),(69891,3,101122),(69896,3,101128),(69901,3,101134),(69903,3,101136),(69911,3,101146),(69914,3,101148),(69921,3,101158),(69926,3,101164),(69931,3,101170),(69936,3,101176),(69943,3,101186),(69948,3,101192),(69957,3,101206),(69962,3,101212),(69967,3,101218),(69974,3,101228),(69979,3,101234),(69984,3,101240),(69993,3,101254),(70004,3,101273),(70015,3,101291),(70020,3,101297),(70025,3,101303),(70030,3,101309),(70035,3,101315),(70040,3,101321),(70045,3,101327),(70050,3,101333),(70055,3,101339),(70062,3,101349),(70067,3,101355),(70072,3,101361),(70077,3,101367),(70082,3,101373),(70087,3,101379),(70092,3,101385),(70101,3,101399),(70106,3,101405),(70111,3,101411),(70116,3,101417),(70123,3,101427),(70128,3,101433),(70133,3,101439),(70138,3,101445),(70143,3,101451),(70148,3,101457),(70153,3,101463),(70158,3,101469),(70163,3,101475),(70168,3,101481),(70173,3,101487),(70186,3,101509),(70191,3,101515),(70196,3,101521),(70201,3,101527),(70206,3,101533),(70213,3,101543),(70217,3,101549),(70223,3,101555),(70228,3,101561),(70233,3,101567),(70235,3,101569),(70243,3,101579),(70250,3,101589),(70255,3,101595),(70260,3,101601),(70265,3,101607),(70270,3,101613),(70275,3,101619),(70282,3,101629),(70284,3,101631),(70292,3,101641),(70297,3,101647),(70302,3,101653),(70307,3,101659),(70312,3,101665),(70317,3,101671),(70322,3,101677),(70327,3,101683),(70332,3,101689),(70337,3,101695),(70342,3,101701),(70349,3,101711),(70354,3,101717),(70359,3,101723),(70364,3,101729),(70369,3,101735),(70376,3,101745),(70383,3,101755),(70388,3,101761),(70393,3,101767),(70398,3,101773),(70403,3,101779),(70408,3,101785),(70412,3,101791),(70418,3,101797),(70423,3,101803),(70428,3,101809),(70433,3,101815),(70438,3,101821),(70443,3,101827),(70448,3,101833),(70453,3,101839),(70458,3,101845),(70463,3,101851),(70468,3,101857),(70473,3,101863),(70478,3,101869),(70483,3,101875),(70494,3,101893),(70503,3,101907),(70508,3,101913),(70513,3,101919),(70522,3,101933),(70527,3,101939),(70536,3,101954),(70541,3,101960),(70555,3,101978),(70556,3,101979),(70558,3,101980),(70557,3,101981),(70560,3,101986),(70564,3,101996),(70573,3,101998),(70577,3,102000),(70592,3,102026),(70593,3,102027),(70606,3,102046),(70611,3,102052),(70616,3,102058),(70621,3,102064),(70626,3,102070),(70631,3,102076),(70640,3,102090),(70645,3,102096),(70650,3,102102),(70657,3,102113),(70662,3,102119),(70669,3,102129),(70674,3,102135),(70679,3,102141),(70684,3,102147),(70691,3,102157),(70698,3,102167),(70703,3,102173),(70708,3,102179),(70713,3,102185),(70718,3,102191),(70723,3,102197),(70728,3,102203),(70733,3,102209),(70738,3,102215),(70743,3,102221),(70748,3,102227),(70757,3,102241),(70762,3,102247),(70767,3,102253),(70776,3,102267),(70781,3,102273),(70786,3,102279),(70793,3,102289),(70798,3,102295),(70803,3,102301),(70808,3,102307),(70813,3,102313),(70818,3,102319),(70822,3,102321),(70828,3,102331),(70833,3,102337),(70835,3,102339),(70843,3,102349),(70848,3,102355),(70853,3,102361),(70858,3,102367),(70863,3,102373),(70868,3,102379),(70873,3,102385),(70880,3,102395),(70887,3,102405),(70894,3,102415),(70899,3,102421),(70904,3,102427),(70909,3,102433),(70916,3,102443),(70925,3,102457),(70932,3,102467),(70943,3,102485),(70950,3,102495),(70957,3,102505),(70962,3,102511),(70967,3,102517),(70972,3,102523),(70977,3,102529),(70984,3,102539),(70991,3,102549),(70996,3,102555),(71001,3,102561),(71006,3,102567),(71013,3,102577),(71018,3,102583),(71023,3,102589),(71028,3,102595),(71033,3,102601),(71040,3,102611),(71045,3,102617),(71050,3,102623),(71055,3,102629),(71060,3,102635),(71065,3,102641),(71070,3,102647),(71075,3,102653),(71082,3,102663),(71087,3,102669),(71092,3,102675),(71097,3,102681),(71102,3,102687),(71107,3,102693),(71112,3,102699),(71117,3,102705),(71124,3,102715),(71131,3,102725),(71138,3,102735),(71143,3,102741),(71148,3,102747),(71153,3,102753),(71158,3,102759),(71165,3,102769),(71170,3,102775),(71179,3,102789),(71186,3,102799),(71191,3,102805),(71202,3,102824),(71207,3,102830),(71212,3,102836),(71217,3,102842),(71222,3,102848),(71229,3,102858),(71236,3,102868),(71241,3,102874),(71248,3,102884),(71253,3,102890),(71260,3,102900),(71265,3,102906),(71270,3,102912),(71275,3,102918),(71286,3,102936),(71291,3,102942),(71302,3,102960),(71307,3,102966),(71312,3,102972),(71319,3,102982),(71324,3,102988),(71331,3,102998),(71334,3,103000),(71347,3,103022),(71352,3,103028),(71357,3,103034),(71364,3,103044),(71369,3,103050),(71378,3,103064),(71383,3,103070),(71388,3,103076),(71393,3,103082),(71398,3,103088),(71405,3,103098),(71410,3,103104),(71415,3,103110),(71422,3,103120),(71435,3,103142),(71440,3,103148),(71445,3,103154),(71450,3,103160),(71457,3,103170),(71464,3,103180),(71469,3,103186),(71474,3,103192),(71481,3,103202),(71486,3,103208),(71491,3,103214),(71496,3,103220),(71503,3,103230),(71508,3,103236),(71515,3,103246),(71520,3,103252),(71525,3,103258),(71530,3,103264),(71543,3,103286),(71548,3,103292),(71553,3,103298),(71558,3,103304),(71563,3,103310),(71568,3,103316),(71575,3,103326),(71586,3,103344),(71591,3,103350),(71598,3,103360),(71603,3,103366),(71608,3,103372),(71613,3,103378),(71618,3,103384),(71623,3,103390),(71630,3,103401),(71635,3,103407),(71644,3,103421),(71649,3,103427),(71654,3,103433),(71659,3,103439),(71664,3,103445),(71677,3,103467),(71684,3,103478),(71689,3,103484),(71694,3,103490),(71699,3,103496),(71704,3,103502),(71709,3,103508),(71714,3,103514),(71719,3,103520),(71724,3,103526),(71733,3,103540),(71740,3,103550),(71747,3,103560),(71752,3,103566),(71757,3,103572),(71762,3,103578),(71767,3,103584),(71774,3,103594),(71779,3,103600),(71786,3,103610),(71791,3,103616),(71796,3,103622),(71801,3,103628),(71810,3,103642),(71815,3,103648),(71820,3,103654),(71827,3,103664),(71832,3,103670),(71837,3,103676),(71842,3,103682),(71847,3,103688),(71854,3,103698),(71861,3,103708),(71868,3,103718),(71879,3,103737),(71888,3,103747),(71887,3,103748),(71896,3,103759),(71903,3,103770),(71908,3,103776),(71913,3,103782),(71918,3,103788),(71923,3,103794),(71928,3,103800),(71933,3,103806),(71938,3,103812),(71943,3,103818),(71954,3,103836),(71959,3,103842),(71964,3,103848),(71969,3,103854),(71974,3,103860),(71979,3,103866),(71984,3,103872),(71989,3,103878),(71994,3,103884),(71999,3,103890),(72004,3,103896),(72006,3,103898),(72014,3,103908),(72021,3,103918),(72030,3,103932),(72035,3,103938),(72040,3,103944),(72047,3,103954),(72064,3,103984),(72081,3,104014),(72088,3,104024),(72101,3,104046),(72106,3,104052),(72111,3,104058),(72116,3,104064),(72121,3,104070),(72126,3,104076),(72131,3,104082),(72138,3,104092),(72147,3,104106),(72152,3,104112),(72157,3,104118),(72162,3,104124),(72169,3,104134),(72180,3,104152),(72185,3,104158),(72194,3,104172),(72199,3,104178),(72204,3,104184),(72213,3,104199),(72218,3,104205),(72227,3,104219),(72232,3,104225),(72237,3,104231),(72246,3,104245),(72255,3,104259),(72260,3,104265),(72269,3,104279),(72274,3,104285),(72291,3,104315),(72296,3,104321),(72301,3,104327),(72306,3,104333),(72311,3,104339),(72316,3,104345),(72321,3,104351),(72326,3,104357),(72331,3,104363),(72336,3,104369),(72341,3,104375),(72350,3,104389),(72355,3,104395),(72366,3,104413),(72377,3,104431),(72386,3,104445),(72391,3,104451),(72400,3,104465),(72407,3,104475),(72414,3,104485),(72419,3,104491),(72424,3,104497),(72429,3,104503),(72433,3,104509),(72439,3,104515),(72444,3,104521),(72449,3,104527),(72456,3,104537),(72471,3,104563),(72476,3,104569),(72483,3,104580),(72488,3,104586),(72495,3,104596),(72500,3,104602),(72505,3,104608),(72510,3,104614),(72517,3,104624),(72522,3,104630),(72527,3,104636),(72532,3,104642),(72537,3,104648),(72548,3,104667),(72553,3,104673),(72558,3,104679),(72563,3,104685),(72568,3,104691),(72575,3,104702),(72580,3,104708),(72587,3,104718),(72592,3,104724),(72597,3,104730),(72602,3,104736),(72607,3,104742),(72614,3,104752),(72619,3,104758),(72624,3,104764),(72631,3,104774),(72636,3,104780),(72641,3,104786),(72646,3,104792),(72651,3,104798),(72656,3,104804),(72661,3,104810),(72666,3,104816),(72671,3,104822),(72676,3,104828),(72681,3,104834),(72686,3,104840),(72691,3,104846),(72706,3,104872),(72711,3,104878),(72716,3,104884),(72721,3,104890),(72726,3,104896),(72731,3,104902),(72736,3,104908),(72741,3,104914),(72746,3,104920),(72751,3,104926),(72756,3,104932),(72761,3,104938),(72766,3,104944),(72771,3,104950),(72778,3,104960),(72783,3,104966),(72794,3,104984),(72801,3,104994),(72810,3,105008),(72815,3,105014),(72820,3,105020),(72829,3,105034),(72834,3,105040),(72851,3,105070),(72856,3,105076),(72861,3,105082),(72866,3,105088),(72871,3,105094),(72882,3,105112),(72893,3,105130),(72898,3,105136),(72903,3,105142),(72910,3,105152),(72915,3,105158),(72920,3,105164),(72927,3,105174),(72934,3,105184),(72941,3,105194),(72948,3,105205),(72955,3,105215),(72960,3,105221),(72965,3,105227),(72974,3,105241),(72979,3,105247),(72984,3,105253),(72989,3,105259),(72996,3,105269),(73003,3,105279),(73008,3,105285),(73013,3,105291),(73018,3,105297),(73023,3,105303),(73028,3,105309),(73033,3,105315),(73040,3,105326),(73045,3,105332),(73050,3,105338),(73055,3,105344),(73060,3,105350),(73065,3,105356),(73070,3,105362),(73075,3,105368),(73080,3,105374),(73085,3,105380),(73090,3,105386),(73095,3,105392),(73100,3,105398),(73105,3,105404),(73114,3,105418),(73119,3,105424),(73126,3,105435),(73131,3,105441),(73138,3,105451),(73143,3,105457),(73150,3,105467),(73155,3,105473),(73160,3,105479),(73167,3,105489),(73172,3,105495),(73174,3,105497),(73182,3,105507),(73187,3,105513),(73192,3,105519),(73201,3,105533),(73206,3,105539),(73211,3,105545),(73216,3,105551),(73221,3,105557),(73230,3,105571),(73235,3,105577),(73240,3,105583),(73245,3,105589),(73250,3,105595),(73255,3,105601),(73260,3,105607),(73265,3,105613),(73270,3,105619),(73275,3,105625),(73280,3,105631),(73285,3,105637),(73290,3,105643),(73295,3,105649),(73300,3,105655),(73305,3,105661),(73310,3,105667),(73315,3,105673),(73320,3,105679),(73325,3,105685),(73330,3,105691),(73335,3,105697),(73342,3,105707),(73347,3,105713),(73352,3,105719),(73357,3,105725),(73362,3,105731),(73367,3,105737),(73376,3,105751),(73383,3,105761),(73388,3,105767),(73393,3,105773),(73398,3,105779),(73403,3,105785),(73410,3,105795),(73415,3,105801),(73424,3,105815),(73429,3,105821),(73436,3,105831),(73441,3,105837),(73448,3,105847),(73453,3,105853),(73458,3,105859),(73462,3,105865),(73468,3,105871),(73473,3,105877),(73478,3,105883),(73483,3,105889),(73488,3,105895),(73493,3,105901),(73498,3,105907),(73503,3,105913),(73508,3,105919),(73513,3,105925),(73518,3,105931),(73523,3,105937),(73532,3,105951),(73543,3,105969),(73550,3,105979),(73555,3,105985),(73562,3,105995),(73567,3,106001),(73576,3,106015),(73581,3,106021),(73586,3,106027),(73591,3,106033),(73596,3,106039),(73603,3,106050),(73607,3,106056),(73613,3,106062),(73618,3,106068),(73623,3,106074),(73628,3,106080),(73633,3,106086),(73638,3,106092),(73643,3,106098),(73648,3,106104),(73653,3,106110),(73660,3,106120),(73667,3,106130),(73676,3,106144),(73681,3,106150),(73685,3,106156),(73691,3,106162),(73698,3,106172),(73703,3,106178),(73710,3,106188),(73715,3,106194),(73720,3,106200),(73725,3,106206),(73730,3,106212),(73735,3,106218),(73740,3,106224),(73745,3,106230),(73750,3,106236),(73755,3,106242),(73760,3,106248),(73765,3,106254),(73770,3,106260),(73775,3,106266),(73780,3,106272),(73785,3,106278),(73790,3,106284),(73795,3,106290),(73800,3,106296),(73807,3,106306),(73812,3,106312),(73817,3,106318),(73822,3,106324),(73827,3,106330),(73832,3,106336),(73837,3,106342),(73842,3,106348),(73847,3,106354),(73854,3,106364),(73859,3,106370),(73864,3,106376),(73869,3,106382),(73874,3,106388),(73879,3,106394),(73884,3,106400),(73889,3,106406),(73894,3,106412),(73899,3,106418),(73904,3,106424),(73911,3,106434),(73916,3,106440),(73921,3,106446),(73926,3,106452),(73931,3,106458),(73936,3,106464),(73941,3,106470),(73946,3,106476),(73951,3,106482),(73956,3,106488),(73961,3,106494),(73968,3,106504),(73973,3,106510),(73978,3,106516),(73983,3,106522),(73988,3,106528),(73993,3,106534),(73998,3,106540),(74003,3,106546),(74008,3,106552),(74015,3,106562),(74020,3,106568),(74025,3,106574),(74030,3,106580),(74035,3,106586),(74040,3,106592),(74045,3,106598),(74050,3,106604),(74055,3,106610),(74060,3,106616),(74065,3,106622),(74070,3,106628),(74075,3,106634),(74080,3,106640),(74085,3,106646),(74092,3,106656),(74097,3,106662),(74102,3,106668),(74107,3,106674),(74112,3,106680),(74117,3,106686),(74122,3,106692),(74127,3,106698),(74132,3,106704),(74137,3,106710),(74142,3,106716),(74147,3,106722),(74154,3,106732),(74159,3,106738),(74164,3,106744),(74169,3,106750),(74174,3,106756),(74179,3,106762),(74184,3,106768),(74189,3,106774),(74194,3,106780),(74199,3,106786),(74204,3,106792),(74209,3,106798),(74214,3,106804),(74219,3,106810),(74224,3,106816),(74229,3,106822),(74234,3,106828),(74245,3,106847),(74252,3,106857),(74257,3,106863),(74262,3,106869),(74267,3,106875),(74272,3,106881),(74277,3,106887),(74282,3,106893),(74293,3,106911),(74298,3,106917),(74303,3,106923),(74308,3,106929),(74315,3,106939),(74325,3,106945),(74320,3,106947),(74322,3,106949),(74332,3,106959),(74338,3,106965),(74351,3,106987),(74360,3,107001),(74365,3,107007),(74372,3,107017),(74381,3,107031),(74386,3,107037),(74391,3,107043),(74398,3,107053),(74405,3,107063),(74414,3,107077),(74419,3,107083),(74424,3,107089),(74431,3,107099),(74438,3,107109),(74442,3,107115),(74448,3,107121),(74453,3,107127),(74458,3,107133),(74463,3,107139),(74474,3,107157),(74479,3,107163),(74482,3,107165),(74487,3,107171),(74492,3,107177),(74497,3,107183),(74502,3,107189),(74513,3,107207),(74518,3,107213),(74523,3,107219),(74528,3,107225),(74533,3,107231),(74538,3,107237),(74543,3,107243),(74548,3,107249),(74553,3,107255),(74558,3,107261),(74563,3,107267),(74572,3,107281),(74577,3,107287),(74582,3,107293),(74584,3,107295),(74596,3,107313),(74607,3,107331),(74616,3,107345),(74621,3,107351),(74626,3,107357),(74631,3,107363),(74636,3,107369),(74641,3,107375),(74646,3,107381),(74651,3,107387),(74656,3,107393),(74665,3,107407),(74670,3,107413),(74675,3,107419),(74680,3,107425),(74685,3,107431),(74690,3,107437),(74695,3,107443),(74700,3,107449),(74705,3,107455),(74710,3,107461),(74723,3,107483),(74728,3,107489),(74733,3,107495),(74738,3,107501),(74743,3,107507),(74748,3,107513),(74753,3,107519),(74756,3,107521),(74763,3,107531),(74768,3,107537),(74773,3,107543),(74780,3,107554),(74785,3,107560),(74790,3,107566),(74795,3,107572),(74800,3,107578),(74805,3,107584),(74812,3,107594),(74817,3,107600),(74826,3,107614),(74831,3,107620),(74836,3,107626),(74843,3,107636),(74848,3,107642),(74855,3,107652),(74860,3,107658),(74867,3,107668),(74874,3,107679),(74879,3,107685),(74884,3,107691),(74889,3,107697),(74894,3,107703),(74899,3,107709),(74904,3,107715),(74909,3,107721),(74916,3,107731),(74918,3,107733),(74926,3,107743),(74931,3,107749),(74936,3,107755),(74941,3,107761),(74948,3,107771),(74953,3,107777),(74958,3,107783),(74963,3,107789),(74972,3,107803),(74977,3,107809),(74982,3,107815),(74987,3,107821),(74992,3,107827),(74997,3,107833),(75002,3,107839),(75011,3,107853),(75016,3,107859),(75021,3,107865),(75026,3,107871),(75033,3,107881),(75038,3,107887),(75043,3,107893),(75048,3,107899),(75053,3,107905),(75058,3,107911),(75063,3,107917),(75068,3,107923),(75075,3,107933),(75080,3,107939),(75085,3,107945),(75090,3,107951),(75095,3,107957),(75102,3,107967),(75107,3,107973),(75112,3,107979),(75117,3,107985),(75122,3,107991),(75127,3,107997),(75132,3,108003),(75137,3,108009),(75142,3,108015),(75147,3,108021),(75152,3,108027),(75157,3,108033),(75162,3,108039),(75167,3,108045),(75172,3,108051),(75177,3,108057),(75182,3,108063),(75189,3,108073),(75194,3,108079),(75199,3,108085),(75204,3,108091),(75209,3,108097),(75214,3,108103),(75219,3,108109),(75224,3,108115),(75229,3,108121),(75234,3,108127),(75239,3,108133),(75244,3,108139),(75249,3,108145),(75256,3,108155),(75263,3,108165),(75268,3,108171),(75273,3,108177),(75280,3,108187),(75285,3,108193),(75290,3,108199),(75295,3,108205),(75300,3,108211),(75305,3,108217),(75312,3,108227),(75317,3,108233),(75322,3,108239),(75327,3,108245),(75334,3,108255),(75341,3,108265),(75346,3,108271),(75351,3,108277),(75356,3,108283),(75365,3,108297),(75370,3,108303),(75379,3,108317),(75386,3,108327),(75391,3,108333),(75396,3,108339),(75401,3,108345),(75406,3,108351),(75411,3,108357),(75416,3,108363),(75423,3,108373),(75428,3,108379),(75433,3,108385),(75438,3,108391),(75445,3,108401),(75458,3,108423),(75465,3,108433),(75472,3,108444),(75477,3,108450),(75482,3,108456),(75487,3,108462),(75492,3,108468),(75497,3,108474),(75499,3,108476),(75507,3,108486),(75512,3,108492),(75519,3,108502),(75524,3,108508),(75529,3,108514),(75534,3,108520),(75539,3,108526),(75548,3,108540),(75553,3,108546),(75558,3,108552),(75563,3,108558),(75568,3,108564),(75575,3,108574),(75580,3,108580),(75589,3,108594),(75594,3,108600),(75599,3,108606),(75604,3,108612),(75609,3,108618),(75616,3,108628),(75621,3,108634),(75628,3,108644),(75635,3,108654),(75640,3,108660),(75645,3,108666),(75650,3,108672),(75657,3,108682),(75662,3,108688),(75667,3,108694),(75672,3,108700),(75679,3,108710),(75686,3,108721),(75691,3,108727),(75696,3,108733),(75701,3,108739),(75706,3,108745),(75711,3,108751),(75716,3,108757),(75721,3,108763),(75726,3,108769),(75731,3,108775),(75736,3,108781),(75741,3,108787),(75746,3,108793),(75751,3,108799),(75756,3,108805),(75761,3,108811),(75766,3,108817),(75771,3,108823),(75776,3,108829),(75783,3,108839),(75790,3,108849),(75795,3,108855),(75800,3,108861),(75805,3,108867),(75807,3,108869),(75809,3,108871),(75820,3,108885),(75825,3,108891),(75830,3,108897),(75835,3,108903),(75840,3,108909),(75845,3,108915),(75850,3,108921),(75855,3,108927),(75860,3,108933),(75865,3,108939),(75870,3,108945),(75875,3,108951),(75882,3,108962),(75887,3,108968),(75892,3,108974),(75897,3,108980),(75902,3,108986),(75907,3,108992),(75912,3,108998),(75917,3,109004),(75924,3,109014),(75933,3,109028),(75938,3,109034),(75943,3,109040),(75948,3,109046),(75953,3,109052),(75958,3,109058),(75963,3,109064),(75968,3,109070),(75973,3,109076),(75978,3,109082),(75985,3,109092),(75990,3,109098),(75997,3,109108),(76002,3,109114),(76007,3,109120),(76012,3,109126),(76017,3,109132),(76022,3,109138),(76027,3,109144),(76032,3,109150),(76039,3,109160),(76044,3,109166),(76049,3,109172),(76060,3,109190),(76065,3,109196),(76074,3,109210),(76079,3,109216),(76092,3,109238),(76101,3,109252),(76106,3,109258),(76113,3,109268),(76118,3,109274),(76123,3,109280),(76128,3,109286),(76133,3,109292),(76138,3,109298),(76147,3,109312),(76152,3,109318),(76157,3,109324),(76162,3,109330),(76167,3,109336),(76172,3,109342),(76177,3,109348),(76182,3,109354),(76191,3,109369),(76198,3,109380),(76203,3,109386),(76210,3,109396),(76225,3,109422),(76232,3,109433),(76237,3,109439),(76246,3,109453),(76251,3,109459),(76256,3,109465),(76261,3,109471),(76266,3,109477),(76271,3,109483),(76278,3,109493),(76283,3,109499),(76288,3,109505),(76293,3,109511),(76300,3,109521),(76305,3,109527),(76310,3,109533),(76317,3,109543),(76322,3,109549),(76327,3,109555),(76334,3,109565),(76339,3,109571),(76344,3,109577),(76349,3,109583),(76351,3,109585),(76361,3,109599),(76366,3,109605),(76371,3,109611),(76376,3,109617),(76381,3,109623),(76386,3,109629),(76391,3,109635),(76396,3,109641),(76403,3,109651),(76408,3,109657),(76413,3,109663),(76418,3,109669),(76423,3,109675),(76428,3,109681),(76433,3,109687),(76438,3,109693),(76443,3,109699),(76448,3,109705),(76453,3,109711),(76458,3,109717),(76463,3,109723),(76468,3,109729),(76473,3,109735),(76478,3,109741),(76483,3,109747),(76488,3,109753),(76493,3,109759),(76498,3,109765),(76503,3,109771),(76508,3,109777),(76513,3,109783),(76518,3,109789),(76523,3,109795),(76528,3,109801),(76533,3,109807),(76538,3,109813),(76551,3,109835),(76556,3,109841),(76561,3,109847),(76570,3,109862),(76577,3,109872),(76582,3,109878),(76587,3,109884),(76592,3,109890),(76597,3,109896),(76602,3,109902),(76607,3,109908),(76612,3,109914),(76617,3,109920),(76626,3,109934),(76631,3,109940),(76636,3,109946),(76641,3,109952),(76646,3,109958),(76653,3,109968),(76658,3,109974),(76663,3,109980),(76668,3,109986),(76673,3,109992),(76678,3,109998),(76683,3,110004),(76688,3,110010),(76695,3,110020),(76697,3,110022),(76705,3,110032),(76712,3,110042),(76719,3,110052),(76730,3,110070),(76735,3,110076),(76740,3,110082),(76745,3,110088),(76754,3,110102),(76759,3,110108),(76764,3,110114),(76769,3,110120),(76788,3,110154),(76793,3,110160),(76802,3,110174),(76809,3,110184),(76814,3,110190),(76819,3,110196),(76824,3,110202),(76837,3,110224),(76842,3,110230),(76847,3,110236),(76852,3,110242),(76859,3,110252),(76864,3,110258),(76869,3,110264),(76874,3,110270),(76879,3,110276),(76884,3,110282),(76889,3,110288),(76894,3,110294),(76899,3,110300),(76910,3,110318),(76915,3,110324),(76920,3,110330),(76925,3,110336),(76941,3,110350),(76946,3,110356),(76953,3,110366),(76958,3,110372),(76965,3,110382),(76970,3,110388),(76975,3,110394),(76982,3,110404),(76987,3,110410),(76992,3,110416),(76999,3,110426),(77012,3,110448),(77017,3,110454),(77026,3,110468),(77031,3,110474),(77036,3,110480),(77041,3,110486),(77046,3,110492),(77051,3,110498),(77058,3,110508),(77063,3,110514),(77070,3,110524),(77077,3,110535),(77082,3,110541),(77087,3,110547),(77092,3,110553),(77097,3,110559),(77102,3,110565),(77107,3,110571),(77112,3,110577),(77117,3,110583),(77122,3,110589),(77124,3,110591),(77126,3,110593),(77137,3,110607),(77144,3,110618),(77157,3,110640),(77167,3,110654),(77168,3,110656),(77176,3,110666),(77181,3,110672),(77186,3,110678),(77191,3,110684),(77196,3,110690),(77201,3,110696),(77206,3,110702),(77211,3,110708),(77213,3,110710),(77221,3,110720),(77234,3,110742),(77239,3,110748),(77244,3,110754),(77249,3,110760),(77254,3,110766),(77259,3,110772),(77264,3,110778),(77269,3,110784),(77278,3,110798),(77283,3,110804),(77287,3,110810),(77293,3,110816),(77302,3,110830),(77309,3,110840),(77314,3,110846),(77319,3,110852),(77324,3,110858),(77326,3,110860),(77334,3,110870),(77341,3,110880),(77346,3,110886),(77353,3,110896),(77355,3,110898),(77363,3,110908),(77368,3,110914),(77373,3,110920),(77378,3,110926),(77381,3,110928),(77388,3,110938),(77393,3,110944),(77398,3,110950),(77403,3,110956),(77408,3,110962),(77419,3,110980),(77426,3,110990),(77435,3,111004),(77440,3,111010),(77445,3,111016),(77460,3,111046),(77475,3,111068),(77496,3,111106),(77501,3,111112),(77506,3,111118),(77513,3,111128),(77518,3,111134),(77523,3,111140),(77532,3,111154),(77537,3,111160),(77542,3,111166),(77555,3,111188),(77560,3,111194),(77565,3,111200),(77570,3,111206),(77579,3,111220),(77588,3,111234),(77593,3,111240),(77598,3,111246),(77603,3,111252),(77608,3,111258),(77613,3,111264),(77618,3,111270),(77621,3,111272),(77628,3,111282),(77630,3,111284),(77638,3,111294),(77640,3,111296),(77650,3,111310),(77655,3,111316),(77664,3,111330),(77669,3,111336),(77674,3,111342),(77679,3,111348),(77684,3,111354),(77689,3,111360),(77694,3,111366),(77699,3,111372),(77706,3,111382),(77711,3,111388),(77716,3,111394),(77721,3,111400),(77726,3,111406),(77733,3,111416),(77738,3,111422),(77745,3,111432),(77750,3,111438),(77755,3,111444),(77760,3,111450),(77765,3,111456),(77768,3,111458),(77775,3,111468),(77780,3,111474),(77785,3,111480),(77792,3,111490),(77797,3,111496),(77804,3,111506),(77809,3,111512),(77814,3,111518),(77819,3,111524),(77824,3,111530),(77829,3,111536),(77834,3,111542),(77839,3,111548),(77844,3,111554),(77849,3,111560),(77854,3,111566),(77865,3,111584),(77874,3,111598),(77883,3,111612),(77888,3,111618),(77899,3,111636),(77904,3,111642),(77909,3,111648),(77914,3,111654),(77919,3,111660),(77924,3,111666),(77929,3,111672),(77934,3,111678),(77939,3,111684),(77944,3,111690),(77949,3,111696),(77954,3,111702),(77959,3,111708),(77966,3,111718),(77971,3,111724),(77976,3,111730),(77981,3,111736),(77986,3,111742),(77991,3,111748),(78000,3,111762),(78005,3,111768),(78010,3,111774),(78015,3,111780),(78020,3,111786),(78025,3,111792),(78030,3,111798),(78035,3,111804),(78046,3,111822),(78051,3,111828),(78056,3,111834),(78061,3,111840),(78066,3,111846),(78073,3,111856),(78082,3,111870),(78087,3,111876),(78092,3,111882),(78097,3,111888),(78102,3,111894),(78107,3,111900),(78112,3,111906),(78119,3,111916),(78124,3,111922),(78129,3,111928),(78134,3,111934),(78139,3,111940),(78148,3,111954),(78153,3,111960),(78158,3,111966),(78163,3,111972),(78168,3,111978),(78173,3,111984),(78178,3,111990),(78183,3,111996),(78188,3,112002),(78201,3,112024),(78206,3,112030),(78211,3,112036),(78216,3,112042),(78221,3,112048),(78226,3,112054),(78233,3,112064),(78238,3,112070),(78243,3,112076),(78250,3,112086),(78257,3,112096),(78266,3,112110),(78271,3,112116),(78276,3,112122),(78281,3,112128),(78286,3,112134),(78293,3,112144),(78298,3,112150),(78303,3,112156),(78308,3,112162),(78313,3,112168),(78318,3,112174),(78323,3,112180),(78328,3,112186),(78333,3,112192),(78338,3,112198),(78343,3,112204),(78348,3,112210),(78353,3,112216),(78358,3,112222),(78360,3,112224),(78368,3,112234),(78373,3,112240),(78378,3,112246),(78383,3,112252),(78388,3,112258),(78393,3,112264),(78398,3,112270),(78402,3,112276),(78408,3,112282),(78413,3,112288),(78420,3,112298),(78425,3,112304),(78430,3,112310),(78437,3,112320),(78442,3,112326),(78449,3,112336),(78454,3,112342),(78459,3,112348),(78466,3,112358),(78471,3,112364),(78476,3,112370),(78481,3,112376),(78488,3,112386),(78497,3,112400),(78502,3,112406),(78507,3,112412),(78512,3,112418),(78517,3,112424),(78522,3,112430),(78527,3,112436),(78532,3,112442),(78537,3,112448),(78542,3,112454),(78549,3,112464),(78558,3,112478),(78565,3,112488),(78574,3,112502),(78579,3,112508),(78584,3,112514),(78589,3,112520),(78596,3,112530),(78605,3,112544),(78610,3,112550),(78615,3,112556),(78622,3,112566),(78629,3,112576),(78646,3,112606),(78653,3,112616),(78658,3,112622),(78663,3,112628),(78668,3,112634),(78673,3,112640),(78678,3,112646),(78683,3,112652),(78690,3,112662),(78697,3,112672),(78702,3,112678),(78707,3,112684),(78712,3,112690),(78725,3,112712),(78730,3,112718),(78735,3,112724),(78756,3,112762),(78758,3,112764),(78770,3,112782),(78783,3,112804),(78790,3,112814),(78795,3,112820),(78800,3,112826),(78817,3,112856),(78822,3,112862),(78827,3,112868),(78831,3,112874),(78837,3,112880),(78844,3,112890),(78851,3,112900),(78856,3,112906),(78861,3,112912),(78866,3,112918),(78871,3,112924),(78876,3,112930),(78881,3,112936),(78888,3,112946),(78893,3,112952),(78902,3,112966),(78907,3,112972),(78912,3,112978),(78919,3,112988),(78924,3,112994),(78929,3,113000),(78934,3,113006),(78939,3,113012),(78944,3,113018),(78949,3,113024),(78954,3,113030),(78959,3,113036),(78964,3,113042),(78969,3,113048),(78974,3,113054),(78979,3,113060),(78984,3,113066),(78989,3,113072),(78994,3,113078),(78999,3,113084),(79004,3,113090),(79009,3,113096),(79011,3,113098),(79019,3,113108),(79024,3,113114),(79029,3,113120),(79034,3,113126),(79043,3,113140),(79048,3,113146),(79053,3,113152),(79058,3,113158),(79067,3,113172),(79072,3,113178),(79083,3,113196),(79088,3,113202),(79090,3,113204),(79098,3,113214),(79109,3,113232),(79114,3,113238),(79121,3,113248),(79126,3,113254),(79131,3,113260),(79136,3,113266),(79141,3,113272),(79150,3,113286),(79155,3,113292),(79166,3,113310),(79175,3,113324),(79180,3,113330),(79185,3,113336),(79190,3,113342),(79195,3,113348),(79200,3,113354),(79205,3,113360),(79210,3,113366),(79217,3,113376),(79222,3,113382),(79229,3,113392),(79238,3,113406),(79243,3,113412),(79254,3,113430),(79259,3,113436),(79264,3,113442),(79271,3,113452),(79276,3,113458),(79281,3,113464),(79286,3,113470),(79291,3,113476),(79296,3,113482),(79305,3,113496),(79312,3,113506),(79317,3,113512),(79326,3,113527),(79345,3,113561),(79350,3,113567),(79357,3,113577),(79362,3,113583),(79367,3,113589),(79372,3,113595),(79377,3,113601),(79382,3,113607),(79387,3,113613),(79392,3,113619),(79397,3,113625),(79402,3,113631),(79407,3,113637),(79412,3,113643),(79417,3,113649),(79422,3,113655),(79429,3,113665),(79434,3,113671),(79439,3,113677),(79444,3,113683),(79449,3,113689),(79454,3,113695),(79459,3,113701),(79464,3,113707),(79469,3,113713),(79474,3,113719),(79481,3,113730),(79494,3,113752),(79499,3,113758),(79501,3,113760),(79509,3,113770),(79520,3,113788),(79525,3,113794),(79530,3,113800),(79535,3,113806),(79540,3,113812),(79545,3,113818),(79552,3,113829),(79557,3,113835),(79562,3,113841),(79569,3,113851),(79574,3,113857),(79583,3,113872),(79588,3,113878),(79595,3,113888),(79600,3,113894),(79611,3,113912),(79616,3,113918),(79621,3,113924),(79626,3,113930),(79631,3,113936),(79636,3,113942),(79641,3,113948),(79646,3,113954),(79651,3,113960),(79656,3,113966),(79663,3,113976),(79672,3,113990),(79679,3,114000),(79684,3,114006),(79689,3,114012),(79694,3,114018),(79699,3,114024),(79706,3,114034),(79711,3,114040),(79716,3,114046),(79721,3,114052),(79726,3,114058),(79731,3,114064),(79736,3,114070),(79741,3,114076),(79746,3,114082),(79748,3,114084),(79768,3,114118),(79773,3,114124),(79778,3,114130),(79789,3,114148),(79794,3,114154),(79799,3,114160),(79804,3,114166),(79809,3,114172),(79814,3,114178),(79821,3,114188),(79826,3,114194),(79839,3,114216),(79846,3,114226),(79851,3,114232),(79856,3,114238),(79861,3,114244),(79866,3,114250),(79871,3,114256),(79874,3,114258),(79885,3,114276),(79890,3,114282),(79895,3,114288),(79908,3,114310),(79911,3,114312),(79918,3,114322),(79929,3,114340),(79938,3,114354),(79943,3,114360),(79948,3,114366),(79953,3,114372),(79958,3,114378),(79967,3,114392),(79972,3,114398),(79977,3,114404),(79984,3,114414),(79995,3,114432),(80000,3,114438),(80009,3,114452),(80014,3,114458),(80019,3,114464),(80024,3,114470),(80029,3,114476),(80033,3,114482),(80039,3,114488),(80046,3,114498),(80051,3,114504),(80056,3,114510),(80061,3,114516),(80066,3,114522),(80071,3,114528),(80076,3,114534),(80081,3,114540),(80086,3,114546),(80091,3,114552),(80096,3,114558),(80103,3,114569),(80108,3,114575),(80113,3,114581),(80120,3,114592),(80131,3,114610),(80136,3,114616),(80143,3,114626),(80148,3,114632),(80153,3,114638),(80158,3,114644),(80163,3,114650),(80170,3,114660),(80177,3,114670),(80180,3,114672),(80187,3,114682),(80192,3,114688),(80197,3,114694),(80204,3,114704),(80209,3,114710),(80214,3,114716),(80221,3,114726),(80226,3,114732),(80233,3,114742),(80240,3,114752),(80245,3,114758),(80252,3,114768),(80257,3,114774),(80262,3,114780),(80267,3,114786),(80272,3,114792),(80277,3,114798),(80282,3,114804),(80287,3,114810),(80294,3,114820),(80301,3,114830),(80306,3,114836),(80313,3,114846),(80318,3,114852),(80323,3,114858),(80330,3,114868),(80337,3,114878),(80348,3,114896),(80353,3,114902),(80362,3,114916),(80366,3,114922),(80372,3,114928),(80375,3,114930),(80382,3,114940),(80387,3,114946),(80392,3,114952),(80397,3,114958),(80402,3,114964),(80407,3,114970),(80411,3,114976),(80417,3,114982),(80422,3,114988),(80427,3,114994),(80434,3,115004),(80441,3,115014),(80446,3,115020),(80451,3,115026),(80456,3,115032),(80461,3,115038),(80466,3,115044),(80473,3,115054),(80478,3,115060),(80483,3,115066),(80490,3,115077),(80495,3,115083),(80502,3,115094),(80507,3,115100),(80514,3,115110),(80519,3,115116),(80524,3,115122),(80529,3,115128),(80534,3,115134),(80539,3,115140),(80544,3,115146),(80549,3,115152),(80552,3,115154),(80559,3,115164),(80564,3,115170),(80569,3,115176),(80574,3,115182),(80579,3,115188),(80586,3,115198),(80591,3,115204),(80598,3,115214),(80603,3,115220),(80608,3,115226),(80613,3,115232),(80618,3,115238),(80623,3,115244),(80628,3,115250),(80633,3,115256),(80638,3,115262),(80643,3,115268),(80648,3,115274),(80653,3,115280),(80658,3,115286),(80663,3,115292),(80670,3,115302),(80675,3,115308),(80680,3,115314),(80685,3,115320),(80690,3,115326),(80695,3,115332),(80700,3,115338),(80705,3,115344),(80718,3,115366),(80723,3,115372),(80728,3,115378),(80733,3,115384),(80738,3,115390),(80743,3,115396),(80752,3,115410),(80757,3,115416),(80762,3,115422),(80767,3,115428),(80772,3,115434),(80777,3,115440),(80784,3,115450),(80789,3,115456),(80794,3,115462),(80796,3,115464),(80804,3,115474),(80809,3,115480),(80814,3,115486),(80819,3,115492),(80824,3,115498),(80826,3,115500),(80834,3,115510),(80839,3,115516),(80844,3,115522),(80853,3,115536),(80858,3,115542),(80865,3,115552),(80870,3,115558),(80875,3,115564),(80886,3,115582),(80891,3,115588),(80896,3,115594),(80901,3,115600),(80908,3,115610),(80913,3,115616),(80926,3,115638),(80935,3,115652),(80944,3,115666),(80955,3,115684),(80960,3,115690),(80965,3,115696),(80972,3,115706),(80981,3,115720),(80986,3,115726),(80991,3,115732),(81000,3,115747),(81005,3,115753),(81010,3,115759),(81021,3,115777),(81026,3,115783),(81031,3,115789),(81038,3,115799),(81043,3,115805),(81050,3,115816),(81055,3,115822),(81060,3,115828),(81065,3,115834),(81070,3,115840),(81077,3,115850),(81086,3,115865),(81091,3,115871),(81096,3,115877),(81103,3,115887),(81108,3,115893),(81115,3,115903),(81120,3,115909),(81127,3,115919),(81129,3,115921),(81137,3,115931),(81148,3,115949),(81153,3,115955),(81158,3,115961),(81163,3,115967),(81168,3,115973),(81173,3,115979),(81178,3,115985),(81183,3,115991),(81185,3,115993),(81193,3,116003),(81198,3,116009),(81200,3,116011),(81212,3,116029),(81217,3,116035),(81223,3,116041),(81224,3,116042),(81232,3,116053),(81237,3,116059),(81242,3,116065),(81247,3,116071),(81252,3,116077),(81257,3,116083),(81262,3,116089),(81267,3,116095),(81272,3,116101),(81277,3,116107),(81282,3,116113),(81287,3,116119),(81292,3,116125),(81299,3,116135),(81304,3,116141),(81309,3,116147),(81314,3,116153),(81319,3,116159),(81324,3,116165),(81329,3,116171),(81334,3,116177),(81339,3,116183),(81344,3,116189),(81351,3,116200),(81356,3,116206),(81361,3,116212),(81370,3,116226),(81375,3,116232),(81380,3,116238),(81385,3,116244),(81390,3,116250),(81393,3,116252),(81400,3,116262),(81405,3,116268),(81410,3,116274),(81415,3,116280),(81420,3,116286),(81427,3,116296),(81432,3,116302),(81439,3,116312),(81444,3,116318),(81449,3,116324),(81454,3,116330),(81461,3,116341),(81466,3,116347),(81471,3,116353),(81476,3,116359),(81481,3,116365),(81486,3,116371),(81491,3,116377),(81496,3,116383),(81503,3,116394),(81508,3,116400),(81513,3,116406),(81518,3,116412),(81523,3,116418),(81528,3,116424),(81533,3,116430),(81540,3,116440),(81545,3,116446),(81550,3,116452),(81555,3,116458),(81560,3,116464),(81567,3,116474),(81572,3,116480),(81577,3,116486),(81582,3,116492),(81587,3,116498),(81592,3,116504),(81597,3,116510),(81602,3,116516),(81609,3,116526),(81614,3,116532),(81621,3,116543),(81626,3,116549),(81631,3,116555),(81636,3,116561),(81643,3,116571),(81648,3,116577),(81654,3,116583),(81655,3,116585),(81665,3,116595),(81664,3,116596),(81673,3,116607),(81678,3,116613),(81680,3,116615),(81688,3,116625),(81693,3,116631),(81700,3,116641),(81705,3,116647),(81710,3,116653),(81715,3,116659),(81720,3,116665),(81725,3,116671),(81730,3,116677),(81735,3,116683),(81740,3,116689),(81745,3,116695),(81750,3,116701),(81755,3,116707),(81764,3,116721),(81769,3,116727),(81774,3,116733),(81785,3,116751),(81790,3,116757),(81795,3,116763),(81800,3,116769),(81805,3,116775),(81810,3,116781),(81817,3,116792),(81824,3,116802),(81829,3,116808),(81834,3,116814),(81839,3,116820),(81844,3,116826),(81846,3,116828),(81854,3,116838),(81859,3,116844),(81864,3,116850),(81869,3,116856),(81878,3,116870),(81883,3,116876),(81888,3,116882),(81893,3,116888),(81900,3,116898),(81905,3,116904),(81910,3,116910),(81915,3,116916),(81920,3,116922),(81925,3,116928),(81930,3,116934),(81937,3,116944),(81944,3,116955),(81949,3,116961),(81954,3,116967),(81963,3,116981),(81968,3,116987),(81973,3,116993),(81978,3,116999),(81983,3,117005),(81990,3,117015),(81995,3,117021),(82000,3,117027),(82005,3,117033),(82012,3,117043),(82017,3,117049),(82022,3,117055),(82029,3,117066),(82031,3,117068),(82039,3,117078),(82046,3,117089),(82048,3,117091),(82053,3,117097),(82061,3,117107),(82066,3,117113),(82071,3,117119),(82076,3,117125),(82083,3,117135),(82092,3,117150),(82101,3,117164),(82106,3,117170),(82111,3,117176),(82116,3,117182),(82121,3,117188),(82126,3,117194),(82129,3,117196),(82138,3,117210),(82143,3,117216),(82148,3,117222),(82153,3,117228),(82158,3,117234),(82165,3,117244),(82170,3,117250),(82177,3,117260),(82182,3,117266),(82187,3,117272),(82194,3,117282),(82203,3,117296),(82208,3,117302),(82213,3,117308),(82218,3,117314),(82223,3,117320),(82234,3,117338),(82239,3,117344),(82252,3,117366),(82277,3,117412),(82288,3,117430),(82293,3,117436),(82324,3,117494),(82347,3,117536),(82352,3,117542),(82363,3,117560),(82378,3,117586),(82385,3,117596),(82430,3,117682),(82449,3,117716),(82486,3,117786),(82495,3,117800),(82500,3,117806),(82511,3,117824),(82513,3,117826),(82525,3,117844),(82534,3,117858),(82565,3,117916),(82591,3,117966),(82621,3,118020),(82636,3,118046),(82657,3,118084),(82700,3,118166),(82719,3,118200),(82724,3,118206),(82729,3,118212),(82738,3,118226),(82767,3,118280),(82792,3,118326),(82798,3,118336),(82840,3,118414),(82855,3,118440),(82866,3,118458),(82881,3,118484),(82888,3,118494),(82899,3,118512),(82911,3,118534),(82933,3,118572),(82946,3,118594),(82971,3,118640),(82986,3,118666),(83001,3,118692),(83058,3,118802),(83069,3,118820),(83076,3,118830),(83081,3,118836),(83096,3,118862),(83105,3,118876),(83116,3,118894),(83153,3,118964),(83184,3,119022),(83199,3,119048),(83234,3,119114),(83240,3,119124),(83250,3,119138),(83261,3,119156),(83288,3,119206),(83299,3,119224),(83306,3,119234),(83317,3,119252),(83326,3,119266),(83349,3,119308),(83374,3,119354),(83383,3,119368),(83385,3,119370),(83395,3,119384),(83414,3,119418),(83421,3,119428),(83478,3,119538),(83495,3,119568),(83510,3,119594),(83515,3,119600),(83570,3,119706),(83603,3,119768),(83618,3,119794),(83633,3,119820),(83642,3,119834),(83653,3,119852),(83704,3,119951),(83717,3,119973),(83722,3,119979),(83751,3,120033),(83754,3,120039),(83773,3,120069),(83778,3,120075),(83791,3,120097),(83797,3,120107),(83815,3,120137),(83834,3,120171),(83839,3,120177),(83844,3,120183),(83873,3,120237),(83884,3,120255),(83907,3,120297),(83914,3,120307),(83933,3,120341),(83938,3,120347),(83957,3,120381),(83964,3,120391),(83977,3,120413),(83990,3,120435),(83997,3,120445),(84028,3,120503),(84065,3,120573),(84070,3,120579),(84091,3,120617),(84116,3,120663),(84127,3,120681),(84134,3,120691),(84149,3,120717),(84240,3,120895),(84255,3,120921),(84278,3,120963),(84325,3,121053),(84344,3,121087),(84355,3,121105),(84362,3,121115),(84371,3,121129),(84466,3,121315),(84473,3,121325),(84484,3,121343),(84493,3,121357),(84520,3,121407),(84541,3,121445),(84564,3,121487),(84597,3,121549),(84626,3,121603),(84675,3,121697),(84754,3,121851),(84771,3,121881),(84784,3,121903),(84791,3,121913),(84804,3,121935),(84821,3,121965),(84846,3,122011),(84857,3,122029),(84888,3,122087),(84897,3,122101),(84936,3,122175),(84959,3,122218),(84994,3,122284),(85090,3,122474),(85130,3,122548),(85132,3,122550),(85140,3,122560),(85169,3,122614),(85192,3,122656),(85199,3,122666),(85210,3,122684),(85217,3,122694),(85226,3,122708),(85235,3,122722),(85260,3,122768),(85265,3,122774),(85270,3,122780),(85281,3,122798),(85312,3,122856),(85317,3,122862),(85340,3,122904),(85353,3,122926),(85358,3,122932),(85377,3,122966),(85384,3,122976),(85399,3,123002),(85408,3,123016),(85413,3,123022),(85420,3,123032),(85427,3,123042),(85434,3,123052),(85439,3,123058),(85444,3,123064),(85447,3,123066),(85454,3,123076),(85459,3,123082),(85464,3,123088),(85471,3,123098),(85476,3,123104),(85478,3,123106),(85486,3,123116),(85491,3,123122),(85498,3,123133),(85505,3,123143),(85512,3,123153),(85517,3,123159),(85522,3,123165),(85533,3,123183),(85538,3,123189),(85553,3,123215),(85560,3,123225),(85571,3,123243),(85580,3,123257),(85585,3,123263),(85590,3,123269),(85597,3,123279),(85602,3,123285),(85613,3,123303),(85626,3,123325),(85633,3,123335),(85640,3,123345),(85647,3,123355),(85652,3,123361),(85657,3,123367),(85680,3,123409),(85689,3,123423),(85700,3,123441),(85707,3,123451),(85718,3,123469),(85727,3,123483),(85736,3,123497),(85777,3,123575),(85786,3,123590),(85801,3,123616),(85806,3,123622),(85813,3,123632),(85816,3,123634),(85835,3,123668),(85842,3,123678),(85869,3,123728),(85872,3,123730),(85887,3,123756),(85894,3,123766),(85907,3,123788),(85920,3,123810),(85931,3,123828),(85942,3,123846),(85951,3,123860),(85964,3,123882),(85975,3,123900),(85982,3,123910),(85985,3,123912),(85996,3,123930),(86007,3,123948),(86012,3,123954),(86019,3,123964),(86042,3,124006),(86049,3,124016),(86060,3,124035),(86065,3,124041),(86074,3,124055),(86079,3,124061),(86086,3,124072),(86091,3,124078),(86102,3,124096),(86109,3,124106),(86120,3,124124),(86125,3,124130),(86136,3,124148),(86141,3,124154),(86152,3,124172),(86161,3,124186),(86168,3,124196),(86175,3,124206),(86181,3,124212),(86182,3,124213),(86192,3,124228),(86199,3,124238),(86204,3,124244),(86209,3,124250),(86216,3,124260),(86231,3,124286),(86240,3,124300),(86245,3,124306),(86250,3,124312),(86263,3,124334),(86268,3,124340),(86273,3,124346),(86278,3,124352),(86283,3,124358),(86288,3,124364),(86299,3,124382),(86308,3,124396),(86317,3,124410),(86322,3,124416),(86333,3,124434),(86346,3,124456),(86355,3,124470),(86364,3,124484),(86375,3,124502),(86384,3,124516),(86391,3,124526),(86408,3,124556),(86421,3,124578),(86438,3,124608),(86445,3,124618),(86458,3,124640),(86479,3,124678),(86502,3,124720),(86509,3,124730),(86514,3,124736),(86519,3,124742),(86530,3,124760),(86537,3,124770),(86548,3,124788),(86557,3,124802),(86570,3,124824),(86577,3,124834),(86580,3,124836),(86587,3,124846),(86592,3,124852),(86594,3,124854),(86608,3,124876),(86613,3,124878),(86624,3,124900),(86639,3,124926),(86644,3,124932),(86651,3,124942),(86658,3,124952),(86667,3,124966),(86672,3,124972),(86679,3,124982),(86686,3,124992),(86691,3,124998),(86698,3,125008),(86707,3,125023),(86712,3,125029),(86729,3,125059),(86734,3,125065),(86743,3,125079),(86750,3,125089),(86763,3,125111),(86772,3,125125),(86777,3,125131),(86782,3,125137),(86787,3,125143),(86792,3,125149),(86797,3,125155),(86806,3,125169),(86811,3,125175),(86818,3,125185),(86823,3,125191),(86836,3,125213),(86841,3,125219),(86846,3,125225),(86853,3,125235),(86858,3,125241),(86867,3,125255),(86874,3,125265),(86879,3,125271),(86884,3,125277),(86889,3,125283),(86894,3,125289),(86901,3,125299),(86908,3,125309),(86913,3,125315),(86918,3,125321),(86925,3,125331),(86930,3,125337),(86935,3,125343),(86940,3,125349),(86942,3,125351),(86950,3,125361),(86952,3,125363),(86960,3,125373),(86965,3,125379),(86970,3,125385),(86975,3,125391),(86980,3,125397),(86985,3,125403),(86990,3,125409),(86997,3,125419),(87002,3,125425),(87007,3,125431),(87012,3,125437),(87017,3,125443),(87022,3,125449),(87027,3,125455),(87032,3,125461),(87043,3,125479),(87050,3,125489),(87055,3,125495),(87062,3,125505),(87069,3,125515),(87074,3,125521),(87079,3,125527),(87090,3,125545),(87095,3,125551),(87100,3,125557),(87105,3,125563),(87110,3,125569),(87112,3,125571),(87120,3,125581),(87127,3,125591),(87132,3,125597),(87139,3,125607),(87144,3,125613),(87149,3,125619),(87158,3,125633),(87169,3,125651),(87178,3,125665),(87185,3,125675),(87190,3,125681),(87198,3,125691),(87203,3,125697),(87207,3,125703),(87213,3,125709),(87230,3,125739),(87241,3,125757),(87248,3,125767),(87263,3,125793),(87272,3,125807),(87281,3,125821),(87316,3,125887),(87335,3,125921),(87356,3,125959),(87365,3,125973),(87372,3,125983),(87391,3,126017),(87396,3,126023),(87405,3,126037),(87410,3,126043),(87415,3,126049),(87422,3,126059),(87427,3,126065),(87432,3,126071),(87437,3,126077),(87442,3,126083),(87457,3,126109),(87478,3,126147),(87489,3,126165),(87496,3,126175),(87505,3,126189),(87512,3,126199),(87517,3,126205),(87524,3,126215),(87535,3,126233),(87538,3,126235),(87547,3,126249),(87552,3,126255),(87569,3,126285),(87574,3,126291),(87581,3,126301),(87586,3,126307),(87593,3,126317),(87602,3,126331),(87621,3,126365),(87626,3,126371),(87631,3,126377),(87636,3,126383),(87641,3,126389),(87650,3,126404),(87663,3,126426),(87668,3,126432),(87673,3,126438),(87684,3,126456),(87693,3,126470),(87698,3,126476),(87703,3,126482),(87708,3,126488),(87715,3,126498),(87720,3,126504),(87725,3,126510),(87730,3,126516),(87735,3,126522),(87737,3,126524),(87745,3,126534),(87750,3,126540),(87755,3,126546),(87760,3,126552),(87765,3,126558),(87770,3,126564),(87775,3,126570),(87789,3,126596),(87795,3,126602),(87800,3,126608),(87805,3,126614),(87812,3,126624),(87817,3,126630),(87822,3,126636),(87827,3,126642),(87832,3,126648),(87839,3,126658),(87844,3,126664),(87849,3,126670),(87854,3,126676),(87859,3,126682),(87864,3,126688),(87871,3,126698),(87876,3,126704),(87881,3,126710),(87886,3,126716),(87893,3,126726),(87898,3,126732),(87905,3,126742),(87912,3,126752),(87917,3,126758),(87922,3,126764),(87927,3,126770),(87932,3,126776),(87947,3,126802),(87952,3,126808),(87967,3,126834),(87986,3,126868),(87997,3,126886),(88006,3,126900),(88011,3,126906),(88046,3,126972),(88061,3,126998),(88068,3,127008),(88073,3,127014),(88078,3,127020),(88085,3,127030),(88090,3,127036),(88095,3,127042),(88100,3,127048),(88105,3,127054),(88112,3,127064),(88137,3,127110),(88146,3,127124),(88157,3,127142),(88176,3,127176),(88181,3,127182),(88188,3,127192),(88193,3,127198),(88202,3,127212),(88207,3,127218),(88212,3,127224),(88221,3,127238),(88228,3,127248),(88233,3,127254),(88240,3,127264),(88242,3,127266),(88250,3,127276),(88255,3,127282),(88264,3,127296),(88273,3,127311),(88278,3,127317),(88285,3,127327),(88290,3,127333),(88295,3,127339),(88302,3,127349),(88307,3,127355),(88312,3,127361),(88317,3,127367),(88322,3,127373),(88329,3,127383),(88334,3,127389),(88341,3,127400),(88346,3,127406),(88351,3,127412),(88353,3,127414),(88355,3,127416),(88366,3,127430),(88375,3,127444),(88380,3,127450),(88385,3,127456),(88390,3,127462),(88392,3,127464),(88402,3,127478),(88407,3,127484),(88412,3,127490),(88417,3,127496),(88422,3,127502),(88427,3,127508),(88432,3,127514),(88443,3,127533),(88448,3,127539),(88455,3,127550),(88460,3,127556),(88471,3,127574),(88476,3,127580),(88481,3,127586),(88486,3,127592),(88495,3,127606),(88504,3,127620),(88509,3,127626),(88514,3,127632),(88521,3,127642),(88526,3,127648),(88545,3,127682),(88552,3,127692),(88569,3,127722),(88574,3,127728),(88599,3,127774),(88606,3,127784),(88611,3,127790),(88616,3,127796),(88621,3,127802),(88626,3,127808),(88633,3,127818),(88638,3,127824),(88643,3,127830),(88652,3,127845),(88657,3,127851),(88664,3,127862),(88669,3,127868),(88676,3,127878),(88681,3,127884),(88686,3,127890),(88691,3,127896),(88694,3,127898),(88703,3,127912),(88708,3,127918),(88717,3,127932),(88730,3,127954),(88739,3,127968),(88748,3,127978),(88747,3,127980),(88756,3,127990),(88761,3,127996),(88766,3,128002),(88775,3,128016),(88780,3,128022),(88785,3,128028),(88790,3,128034),(88795,3,128040),(88800,3,128046),(88805,3,128052),(88810,3,128058),(88815,3,128064),(88824,3,128078),(88829,3,128084),(88833,3,128090),(88839,3,128096),(88844,3,128102),(88849,3,128108),(88856,3,128118),(88861,3,128124),(88866,3,128130),(88871,3,128136),(88878,3,128147),(88883,3,128153),(88888,3,128159),(88893,3,128165),(88898,3,128171),(88913,3,128197),(88918,3,128203),(88923,3,128209),(88928,3,128215),(88937,3,128229),(88939,3,128231),(88947,3,128241),(88954,3,128251),(88959,3,128257),(88968,3,128271),(88973,3,128277),(88982,3,128291),(88987,3,128297),(88996,3,128311),(89003,3,128321),(89008,3,128327),(89015,3,128337),(89020,3,128343),(89029,3,128357),(89034,3,128363),(89039,3,128369),(89050,3,128388),(89059,3,128402),(89064,3,128408),(89069,3,128414),(89074,3,128420),(89079,3,128426),(89084,3,128432),(89089,3,128438),(89096,3,128448),(89101,3,128454),(89110,3,128468),(89115,3,128474),(89122,3,128484),(89129,3,128494),(89138,3,128508),(89143,3,128514),(89150,3,128524),(89155,3,128530),(89162,3,128541),(89167,3,128547),(89178,3,128565),(89183,3,128571),(89188,3,128577),(89193,3,128583),(89200,3,128593),(89207,3,128603),(89212,3,128609),(89217,3,128615),(89222,3,128621),(89233,3,128639),(89242,3,128653),(89249,3,128664),(89254,3,128670),(89259,3,128676),(89264,3,128682),(89269,3,128688),(89274,3,128694),(89279,3,128700),(89284,3,128706),(89289,3,128712),(89294,3,128718),(89299,3,128724),(89304,3,128730),(89309,3,128736),(89314,3,128742),(89319,3,128748),(89324,3,128754),(89329,3,128760),(89334,3,128766),(89339,3,128772),(89344,3,128778),(89351,3,128788),(89358,3,128798),(89369,3,128816),(89382,3,128838),(89387,3,128844),(89392,3,128850),(89397,3,128856),(89402,3,128862),(89415,3,128884),(89424,3,128898),(89429,3,128904),(89436,3,128914),(89445,3,128928),(89458,3,128950),(89475,3,128980),(89506,3,129038),(89511,3,129044),(89520,3,129058),(89527,3,129068),(89536,3,129082),(89547,3,129100),(89574,3,129150),(89579,3,129156),(89586,3,129166),(89591,3,129172),(89596,3,129178),(89611,3,129204),(89628,3,129234),(89633,3,129240),(89652,3,129274),(89657,3,129280),(89662,3,129286),(89669,3,129296),(89678,3,129310),(89683,3,129316),(89685,3,129318),(89693,3,129328),(89698,3,129334),(89703,3,129340),(89708,3,129346),(89715,3,129356),(89732,3,129386),(89745,3,129408),(89754,3,129422),(89759,3,129428),(89764,3,129434),(89787,3,129476),(89792,3,129482),(89797,3,129488),(89806,3,129502),(89811,3,129508),(89816,3,129514),(89821,3,129520),(89826,3,129526),(89848,3,129574),(89885,3,129638),(89889,3,129644),(89894,3,129653),(89898,3,129656),(89897,3,129657),(89919,3,129695),(89925,3,129707),(89999,3,129845),(90006,3,129857),(90010,3,129861),(90048,3,129924),(90065,3,129951),(90091,3,130009),(90127,3,130071),(90140,3,130093),(90147,3,130103),(90176,3,130157),(90209,3,130229),(90288,3,130373),(90303,3,130399),(90308,3,130405),(90327,3,130439),(90332,3,130445),(90339,3,130455),(90344,3,130461),(90349,3,130467),(90356,3,130477),(90361,3,130483),(90366,3,130489),(90375,3,130503),(90398,3,130545),(90409,3,130563),(90442,3,130625),(90463,3,130663),(90490,3,130713),(90493,3,130715),(90512,3,130749),(90519,3,130759),(90542,3,130801),(90547,3,130807),(90552,3,130813),(90557,3,130819),(90564,3,130829),(90571,3,130839),(90578,3,130849),(90585,3,130859),(90590,3,130865),(90595,3,130871),(90602,3,130881),(90607,3,130887),(90609,3,130889),(90623,3,130911),(90628,3,130917),(90635,3,130927),(90640,3,130933),(90645,3,130939),(90650,3,130945),(90655,3,130951),(90660,3,130957),(90665,3,130963),(90684,3,130997),(90693,3,131011),(90698,3,131017),(90703,3,131023),(90710,3,131034),(90717,3,131044),(90722,3,131050),(90727,3,131056),(90732,3,131062),(90739,3,131072),(90744,3,131078),(90749,3,131084),(90756,3,131094),(90763,3,131104),(90772,3,131118),(90777,3,131124),(90780,3,131126),(90789,3,131140),(90796,3,131150),(90805,3,131164),(90810,3,131170),(90823,3,131192),(90828,3,131198),(90833,3,131204),(90838,3,131210),(90843,3,131216),(90848,3,131222),(90863,3,131248),(90868,3,131254),(90876,3,131268),(90886,3,131282),(90903,3,131312),(90908,3,131318),(90923,3,131344),(90928,3,131350),(90933,3,131356),(90938,3,131362),(90943,3,131368),(90948,3,131374),(90955,3,131384),(90970,3,131410),(90979,3,131424),(90994,3,131451),(90999,3,131457),(91014,3,131483),(91016,3,131485),(91026,3,131499),(91035,3,131513),(91042,3,131523),(91051,3,131537),(91058,3,131547),(91067,3,131561),(91076,3,131575),(91081,3,131581),(91086,3,131587),(91093,3,131597),(91100,3,131607),(91109,3,131621),(91116,3,131631),(91121,3,131637),(91126,3,131643),(91131,3,131649),(91150,3,131683),(91155,3,131689),(91166,3,131707),(91175,3,131721),(91182,3,131731),(91189,3,131741),(91194,3,131747),(91199,3,131753),(91204,3,131759),(91209,3,131765),(91214,3,131771),(91229,3,131797),(91234,3,131803),(91239,3,131809),(91244,3,131815),(91249,3,131821),(91254,3,131827),(91259,3,131833),(91264,3,131839),(91269,3,131845),(91276,3,131855),(91281,3,131861),(91286,3,131867),(91291,3,131873),(91304,3,131896),(91309,3,131902),(91318,3,131916),(91323,3,131922),(91328,3,131928),(91333,3,131934),(91338,3,131940),(91343,3,131946),(91348,3,131952),(91353,3,131958),(91358,3,131964),(91363,3,131970),(91368,3,131976),(91373,3,131982),(91378,3,131988),(91383,3,131994),(91388,3,132000),(91397,3,132014),(91402,3,132020),(91407,3,132026),(91416,3,132040),(91421,3,132046),(91434,3,132068),(91439,3,132074),(91446,3,132084),(91453,3,132094),(91458,3,132100),(91465,3,132110),(91468,3,132112),(91475,3,132122),(91480,3,132128),(91485,3,132134),(91502,3,132164),(91509,3,132174),(91518,3,132188),(91525,3,132198),(91532,3,132208),(91539,3,132218),(91544,3,132224),(91555,3,132242),(91564,3,132256),(91575,3,132274),(91582,3,132284),(91591,3,132298),(91596,3,132304),(91605,3,132318),(91612,3,132328),(91623,3,132346),(91628,3,132352),(91637,3,132366),(91644,3,132376),(91649,3,132382),(91654,3,132388),(91673,3,132422),(91678,3,132428),(91685,3,132438),(91690,3,132444),(91701,3,132462),(91714,3,132484),(91719,3,132490),(91724,3,132496),(91741,3,132526),(91754,3,132548),(91769,3,132574),(91780,3,132592),(91797,3,132622),(91802,3,132628),(91815,3,132650),(91826,3,132669),(91831,3,132675),(91836,3,132681),(91841,3,132687),(91846,3,132693),(91851,3,132699),(91858,3,132709),(91863,3,132715),(91874,3,132733),(91879,3,132739),(91886,3,132749),(91895,3,132763),(91900,3,132769),(91902,3,132771),(91910,3,132781),(91915,3,132787),(91920,3,132793),(91925,3,132799),(91930,3,132805),(91935,3,132811),(91940,3,132817),(91945,3,132823),(91950,3,132829),(91955,3,132835),(91960,3,132841),(91969,3,132855),(91976,3,132865),(91981,3,132871),(91986,3,132877),(91991,3,132883),(91996,3,132889),(92001,3,132895),(92006,3,132901),(92011,3,132907),(92016,3,132913),(92021,3,132919),(92030,3,132933),(92039,3,132947),(92044,3,132953),(92049,3,132959),(92056,3,132969),(92065,3,132983),(92070,3,132989),(92075,3,132995),(92080,3,133001),(92085,3,133007),(92090,3,133013),(92097,3,133023),(92102,3,133029),(92111,3,133043),(92116,3,133049),(92123,3,133059),(92128,3,133065),(92137,3,133080),(92146,3,133094),(92151,3,133100),(92156,3,133106),(92167,3,133124),(92172,3,133130),(92177,3,133136),(92182,3,133142),(92187,3,133148),(92194,3,133158),(92207,3,133180),(92230,3,133222),(92245,3,133248),(92256,3,133266),(92259,3,133268),(92266,3,133278),(92273,3,133288),(92278,3,133294),(92295,3,133324),(92300,3,133330),(92313,3,133352),(92318,3,133358),(92323,3,133364),(92328,3,133370),(92335,3,133380),(92344,3,133394),(92367,3,133436),(92378,3,133454),(92385,3,133464),(92390,3,133470),(92401,3,133488),(92406,3,133494),(92417,3,133512),(92424,3,133522),(92429,3,133528),(92434,3,133534),(92441,3,133544),(92446,3,133550),(92451,3,133556),(92456,3,133562),(92461,3,133568),(92466,3,133574),(92471,3,133580),(92476,3,133586),(92481,3,133592),(92492,3,133610),(92497,3,133616),(92502,3,133622),(92507,3,133628),(92512,3,133634),(92519,3,133644),(92526,3,133654),(92533,3,133664),(92546,3,133686),(92551,3,133692),(92556,3,133698),(92561,3,133704),(92582,3,133742),(92593,3,133760),(92598,3,133766),(92607,3,133780),(92614,3,133790),(92619,3,133796),(92624,3,133802),(92631,3,133812),(92638,3,133822),(92649,3,133840),(92656,3,133850),(92665,3,133864),(92672,3,133874),(92677,3,133880),(92690,3,133902),(92697,3,133912),(92702,3,133918),(92707,3,133924),(92716,3,133939),(92719,3,133941),(92726,3,133951),(92731,3,133957),(92736,3,133963),(92747,3,133981),(92760,3,134003),(92765,3,134009),(92770,3,134015),(92775,3,134021),(92782,3,134031),(92787,3,134037),(92792,3,134043),(92797,3,134049),(92802,3,134055),(92807,3,134061),(92812,3,134067),(92817,3,134073),(92822,3,134079),(92827,3,134085),(92832,3,134091),(92839,3,134101),(92848,3,134115),(92853,3,134121),(92860,3,134131),(92865,3,134137),(92872,3,134147),(92877,3,134153),(92882,3,134159),(92887,3,134165),(92892,3,134171),(92903,3,134189),(92908,3,134195),(92913,3,134201),(92915,3,134203),(92923,3,134213),(92928,3,134219),(92933,3,134225),(92938,3,134231),(92943,3,134237),(92948,3,134243),(92957,3,134257),(92962,3,134263),(92969,3,134273),(92974,3,134279),(92979,3,134285),(92984,3,134291),(92991,3,134301),(92996,3,134307),(93009,3,134329),(93014,3,134335),(93019,3,134341),(93024,3,134347),(93033,3,134361),(93038,3,134367),(93057,3,134401),(93064,3,134411),(93073,3,134425),(93082,3,134439),(93087,3,134445),(93092,3,134451),(93097,3,134457),(93102,3,134463),(93107,3,134469),(93112,3,134475),(93117,3,134481),(93122,3,134487),(93127,3,134493),(93136,3,134507),(93141,3,134513),(93146,3,134519),(93151,3,134525),(93156,3,134531),(93161,3,134537),(93170,3,134551),(93177,3,134562),(93182,3,134568),(93187,3,134574),(93192,3,134580),(93197,3,134586),(93202,3,134592),(93209,3,134602),(93214,3,134608),(93219,3,134614),(93224,3,134620),(93229,3,134626),(93234,3,134632),(93241,3,134642),(93250,3,134656),(93257,3,134666),(93262,3,134672),(93267,3,134678),(93274,3,134688),(93279,3,134694),(93284,3,134700),(93291,3,134710),(93296,3,134716),(93298,3,134718),(93306,3,134728),(93311,3,134734),(93316,3,134740),(93321,3,134746),(93326,3,134752),(93331,3,134758),(93336,3,134764),(93341,3,134770),(93346,3,134776),(93357,3,134795),(93362,3,134801),(93367,3,134807),(93372,3,134813),(93377,3,134819),(93384,3,134829),(93389,3,134835),(93394,3,134841),(93399,3,134847),(93406,3,134857),(93415,3,134872),(93420,3,134878),(93427,3,134888),(93432,3,134894),(93439,3,134905),(93444,3,134911),(93449,3,134917),(93454,3,134923),(93459,3,134929),(93464,3,134935),(93469,3,134941),(93474,3,134947),(93479,3,134953),(93484,3,134959),(93489,3,134965),(93496,3,134975),(93501,3,134981),(93508,3,134991),(93513,3,134997),(93518,3,135003),(93523,3,135009),(93528,3,135015),(93545,3,135045),(93556,3,135063),(93571,3,135089),(93576,3,135095),(93581,3,135101),(93586,3,135107),(93591,3,135113),(93596,3,135119),(93603,3,135129),(93605,3,135131),(93613,3,135141),(93618,3,135147),(93623,3,135153),(93634,3,135171),(93639,3,135177),(93644,3,135183),(93653,3,135198),(93662,3,135212),(93671,3,135226),(93676,3,135232),(93687,3,135250),(93692,3,135256),(93697,3,135262),(93702,3,135268),(93707,3,135274),(93716,3,135288),(93721,3,135294),(93726,3,135300),(93731,3,135306),(93738,3,135316),(93745,3,135326),(93750,3,135332),(93755,3,135338),(93760,3,135344),(93765,3,135350),(93770,3,135356),(93775,3,135362),(93780,3,135368),(93789,3,135382),(93794,3,135388),(93799,3,135394),(93804,3,135400),(93809,3,135406),(93814,3,135412),(93819,3,135418),(93821,3,135420),(93831,3,135434),(93836,3,135440),(93841,3,135446),(93846,3,135452),(93853,3,135462),(93858,3,135468),(93861,3,135470),(93866,3,135476),(93871,3,135482),(93876,3,135488),(93881,3,135494),(93886,3,135500),(93891,3,135506),(93900,3,135520),(93907,3,135530),(93912,3,135536),(93919,3,135546),(93924,3,135552),(93929,3,135558),(93948,3,135592),(93953,3,135598),(93960,3,135608),(93969,3,135622),(93976,3,135632),(93981,3,135638),(93986,3,135644),(93991,3,135650),(93995,3,135656),(94015,3,135690),(94020,3,135696),(94027,3,135706),(94036,3,135720),(94043,3,135730),(94050,3,135740),(94061,3,135758),(94070,3,135772),(94081,3,135790),(94092,3,135808),(94105,3,135830),(94114,3,135844),(94119,3,135850),(94126,3,135860),(94139,3,135882),(94146,3,135892),(94155,3,135906),(94170,3,135932),(94187,3,135962),(94200,3,135984),(94209,3,135998),(94214,3,136004),(94239,3,136050),(94254,3,136076),(94267,3,136098),(94288,3,136136),(94293,3,136142),(94304,3,136160),(94317,3,136182),(94322,3,136188),(94329,3,136198),(94334,3,136204),(94339,3,136210),(94344,3,136216),(94351,3,136226),(94396,3,136312),(94403,3,136322),(94408,3,136328),(94413,3,136334),(94418,3,136340),(94423,3,136346),(94430,3,136356),(94435,3,136362),(94440,3,136368),(94445,3,136374),(94454,3,136388),(94459,3,136394),(94466,3,136404),(94471,3,136410),(94473,3,136412),(94483,3,136426),(94490,3,136436),(94495,3,136442),(94500,3,136448),(94505,3,136454),(94510,3,136460),(94515,3,136466),(94520,3,136472),(94525,3,136478),(94530,3,136484),(94535,3,136490),(94540,3,136496),(94547,3,136506),(94558,3,136525),(94563,3,136531),(94568,3,136537),(94573,3,136543),(94580,3,136553),(94585,3,136559),(94587,3,136561),(94597,3,136575),(94604,3,136585),(94609,3,136591),(94620,3,136609),(94625,3,136615),(94634,3,136629),(94639,3,136635),(94644,3,136641),(94649,3,136647),(94654,3,136653),(94665,3,136671),(94670,3,136677),(94677,3,136687),(94682,3,136693),(94687,3,136699),(94692,3,136705),(94697,3,136711),(94706,3,136725),(94711,3,136731),(94716,3,136737),(94723,3,136747),(94728,3,136753),(94735,3,136763),(94744,3,136777),(94751,3,136787),(94756,3,136793),(94761,3,136799),(94766,3,136805),(94771,3,136811),(94780,3,136825),(94785,3,136831),(94794,3,136845),(94799,3,136851),(94804,3,136857),(94819,3,136883),(94828,3,136897),(94835,3,136907),(94856,3,136945),(94871,3,136971),(94888,3,137001),(94893,3,137007),(94898,3,137013),(94903,3,137019),(94910,3,137029),(94919,3,137043),(94926,3,137053),(94929,3,137055),(94936,3,137065),(94941,3,137071),(94952,3,137089),(94959,3,137099),(94978,3,137133),(94987,3,137147),(94992,3,137153),(94997,3,137159),(95002,3,137165),(95007,3,137171),(95012,3,137177),(95017,3,137183),(95022,3,137189),(95031,3,137203),(95040,3,137217),(95047,3,137228),(95056,3,137242),(95061,3,137248),(95072,3,137266),(95077,3,137272),(95084,3,137282),(95089,3,137288),(95096,3,137298),(95107,3,137316),(95114,3,137326),(95119,3,137332),(95122,3,137334),(95129,3,137344),(95134,3,137350),(95143,3,137364),(95148,3,137370),(95153,3,137376),(95168,3,137402),(95175,3,137412),(95180,3,137418),(95185,3,137424),(95190,3,137430),(95197,3,137440),(95202,3,137446),(95209,3,137456),(95214,3,137462),(95219,3,137468),(95224,3,137474),(95229,3,137480),(95233,3,137486),(95239,3,137492),(95244,3,137498),(95249,3,137504),(95254,3,137510),(95263,3,137524),(95268,3,137530),(95273,3,137536),(95278,3,137542),(95283,3,137548),(95288,3,137554),(95295,3,137564),(95300,3,137570),(95305,3,137576),(95312,3,137586),(95319,3,137596),(95324,3,137602),(95329,3,137608),(95336,3,137618),(95341,3,137624),(95348,3,137634),(95359,3,137652),(95366,3,137662),(95373,3,137672),(95378,3,137678),(95381,3,137680),(95388,3,137690),(95397,3,137704),(95410,3,137727),(95415,3,137733),(95420,3,137739),(95439,3,137773),(95452,3,137795),(95457,3,137801),(95462,3,137807),(95467,3,137813),(95470,3,137815),(95479,3,137829),(95486,3,137839),(95495,3,137853),(95502,3,137863),(95515,3,137885),(95536,3,137923),(95545,3,137937),(95550,3,137943),(95555,3,137949),(95560,3,137955),(95571,3,137973),(95576,3,137979),(95593,3,138009),(95600,3,138019),(95615,3,138045),(95630,3,138071),(95635,3,138077),(95642,3,138087),(95649,3,138097),(95658,3,138111),(95663,3,138117),(95668,3,138123),(95677,3,138137),(95686,3,138151),(95691,3,138157),(95696,3,138163),(95701,3,138169),(95708,3,138179),(95715,3,138189),(95720,3,138195),(95727,3,138205),(95732,3,138211),(95737,3,138217),(95744,3,138227),(95751,3,138237),(95760,3,138251),(95767,3,138261),(95772,3,138267),(95777,3,138273),(95784,3,138283),(95789,3,138289),(95796,3,138299),(95801,3,138305),(95808,3,138315),(95815,3,138326),(95826,3,138344),(95835,3,138358),(95850,3,138384),(95855,3,138390),(95860,3,138396),(95865,3,138402),(95870,3,138408),(95875,3,138414),(95880,3,138420),(95885,3,138426),(95892,3,138436),(95899,3,138446),(95904,3,138452),(95913,3,138466),(95926,3,138488),(95933,3,138498),(95944,3,138516),(95955,3,138534),(95960,3,138540),(95965,3,138546),(95970,3,138552),(95975,3,138558),(95980,3,138564),(95991,3,138582),(95998,3,138592),(96021,3,138634),(96032,3,138652),(96041,3,138666),(96052,3,138684),(96061,3,138698),(96066,3,138704),(96073,3,138714),(96078,3,138720),(96083,3,138726),(96088,3,138732),(96095,3,138742),(96100,3,138748),(96105,3,138754),(96110,3,138760),(96123,3,138782),(96138,3,138808),(96143,3,138814),(96148,3,138820),(96161,3,138842),(96166,3,138848),(96171,3,138854),(96180,3,138868),(96185,3,138874),(96196,3,138892),(96201,3,138898),(96206,3,138904),(96211,3,138910),(96216,3,138916),(96229,3,138938),(96236,3,138948),(96245,3,138962),(96264,3,138996),(96271,3,139006),(96276,3,139012),(96281,3,139018),(96286,3,139024),(96291,3,139030),(96298,3,139040),(96305,3,139050),(96310,3,139056),(96315,3,139062),(96320,3,139068),(96325,3,139074),(96332,3,139084),(96339,3,139094),(96344,3,139100),(96349,3,139106),(96354,3,139112),(96359,3,139118),(96364,3,139124),(96369,3,139130),(96374,3,139136),(96379,3,139142),(96384,3,139148),(96391,3,139159),(96396,3,139165),(96403,3,139175),(96418,3,139201),(96431,3,139223),(96436,3,139229),(96441,3,139235),(96448,3,139245),(96453,3,139251),(96460,3,139261),(96465,3,139267),(96470,3,139273),(96475,3,139279),(96480,3,139285),(96485,3,139291),(96490,3,139297),(96495,3,139303),(96500,3,139309),(96507,3,139320),(96514,3,139330),(96519,3,139336),(96526,3,139346),(96531,3,139352),(96536,3,139358),(96541,3,139364),(96546,3,139370),(96555,3,139385),(96564,3,139399),(96573,3,139413),(96584,3,139431),(96605,3,139469),(96618,3,139491),(96629,3,139509),(96642,3,139531),(96647,3,139537),(96658,3,139555),(96663,3,139561),(96668,3,139567),(96675,3,139577),(96686,3,139595),(96699,3,139617),(96704,3,139623),(96713,3,139637),(96720,3,139647),(96727,3,139657),(96742,3,139683),(96749,3,139693),(96758,3,139707),(96763,3,139713),(96774,3,139731),(96779,3,139737),(96784,3,139743),(96793,3,139757),(96806,3,139779),(96811,3,139785),(96818,3,139795),(96833,3,139821),(96838,3,139827),(96845,3,139837),(96852,3,139847),(96857,3,139853),(96864,3,139863),(96869,3,139869),(96874,3,139875),(96879,3,139881),(96884,3,139887),(96889,3,139893),(96904,3,139919),(96909,3,139925),(96914,3,139931),(96923,3,139945),(96932,3,139959),(96937,3,139965),(96942,3,139971),(96946,3,139977),(96956,3,139991),(96963,3,140001),(96970,3,140011),(96977,3,140021),(96988,3,140039),(96995,3,140049),(97000,3,140055),(97009,3,140069),(97016,3,140079),(97025,3,140093),(97032,3,140104),(97037,3,140110),(97044,3,140120),(97049,3,140126),(97054,3,140132),(97063,3,140146),(97068,3,140152),(97073,3,140158),(97082,3,140172),(97089,3,140182),(97100,3,140200),(97105,3,140206),(97110,3,140212),(97121,3,140230),(97128,3,140240),(97133,3,140246),(97138,3,140252),(97147,3,140266),(97152,3,140272),(97157,3,140278),(97162,3,140284),(97167,3,140290),(97172,3,140296),(97177,3,140302),(97182,3,140308),(97189,3,140318),(97196,3,140328),(97201,3,140334),(97206,3,140340),(97211,3,140346),(97216,3,140352),(97220,3,140358),(97228,3,140368),(97237,3,140382),(97239,3,140384),(97249,3,140398),(97254,3,140404),(97261,3,140414),(97266,3,140420),(97273,3,140430),(97280,3,140441),(97285,3,140447),(97290,3,140453),(97295,3,140459),(97302,3,140469),(97317,3,140495),(97322,3,140501),(97329,3,140511),(97334,3,140517),(97339,3,140523),(97342,3,140525),(97351,3,140539),(97356,3,140545),(97361,3,140551),(97366,3,140557),(97371,3,140563),(97376,3,140569),(97381,3,140575),(97388,3,140585),(97393,3,140591),(97398,3,140597),(97403,3,140603),(97408,3,140609),(97413,3,140615),(97424,3,140633),(97431,3,140643),(97436,3,140649),(97443,3,140659),(97448,3,140665),(97453,3,140671),(97458,3,140677),(97465,3,140687),(97470,3,140693),(97475,3,140699),(97480,3,140705),(97485,3,140711),(97492,3,140721),(97497,3,140727),(97508,3,140745),(97513,3,140751),(97518,3,140757),(97523,3,140763),(97532,3,140778),(97537,3,140784),(97542,3,140790),(97547,3,140796),(97552,3,140802),(97557,3,140808),(97562,3,140814),(97567,3,140820),(97572,3,140826),(97579,3,140836),(97584,3,140842),(97589,3,140848),(97598,3,140862),(97605,3,140872),(97614,3,140886),(97619,3,140892),(97624,3,140898),(97629,3,140904),(97634,3,140910),(97639,3,140916),(97644,3,140922),(97649,3,140928),(97654,3,140934),(97663,3,140948),(97668,3,140954),(97673,3,140960),(97678,3,140966),(97683,3,140972),(97688,3,140978),(97693,3,140984),(97698,3,140990),(97705,3,141000),(97710,3,141006),(97715,3,141012),(97720,3,141018),(97727,3,141028),(97732,3,141034),(97737,3,141040),(97746,3,141054),(97753,3,141064),(97766,3,141086),(97771,3,141092),(97776,3,141098),(97784,3,141108),(97785,3,141110),(97793,3,141120),(97800,3,141130),(97805,3,141136),(97810,3,141142),(97833,3,141184),(97838,3,141190),(97849,3,141208),(97854,3,141214),(97859,3,141220),(97864,3,141226),(97873,3,141240),(97878,3,141246),(97883,3,141252),(97890,3,141263),(97895,3,141269),(97902,3,141279),(97907,3,141285),(97920,3,141307),(97925,3,141313),(97930,3,141319),(97937,3,141329),(97944,3,141339),(97953,3,141353),(97958,3,141359),(97965,3,141369),(97976,3,141387),(97985,3,141401),(97990,3,141407),(97995,3,141413),(98008,3,141436),(98019,3,141454),(98026,3,141464),(98031,3,141470),(98038,3,141480),(98043,3,141486),(98048,3,141492),(98053,3,141498),(98058,3,141504),(98063,3,141510),(98068,3,141516),(98072,3,141522),(98080,3,141532),(98087,3,141543),(98102,3,141569),(98109,3,141579),(98114,3,141585),(98121,3,141595),(98126,3,141601),(98133,3,141611),(98138,3,141617),(98143,3,141623),(98152,3,141637),(98159,3,141648),(98164,3,141654),(98169,3,141660),(98174,3,141666),(98179,3,141672),(98184,3,141678),(98189,3,141684),(98196,3,141694),(98201,3,141700),(98214,3,141722),(98219,3,141728),(98230,3,141746),(98235,3,141752),(98242,3,141762),(98247,3,141768),(98250,3,141770),(98257,3,141780),(98262,3,141786),(98267,3,141792),(98280,3,141814),(98285,3,141820),(98290,3,141826),(98301,3,141844),(98308,3,141854),(98315,3,141864),(98320,3,141870),(98331,3,141888),(98338,3,141898),(98347,3,141912),(98352,3,141918),(98367,3,141944),(98380,3,141966),(98389,3,141980),(98400,3,141998),(98405,3,142004),(98420,3,142030),(98431,3,142048),(98436,3,142054),(98455,3,142088),(98460,3,142094),(98473,3,142116),(98520,3,142206),(98527,3,142216),(98532,3,142222),(98537,3,142228),(98542,3,142234),(98549,3,142244),(98564,3,142270),(98583,3,142304),(98588,3,142310),(98595,3,142320),(98614,3,142354),(98629,3,142380),(98634,3,142386),(98641,3,142396),(98646,3,142402),(98667,3,142440),(98672,3,142446),(98679,3,142456),(98688,3,142471),(98693,3,142477),(98700,3,142487),(98707,3,142497),(98714,3,142507),(98717,3,142509),(98724,3,142519),(98729,3,142525),(98736,3,142535),(98741,3,142541),(98748,3,142552),(98753,3,142558),(98758,3,142564),(98765,3,142574),(98770,3,142580),(98775,3,142586),(98782,3,142596),(98787,3,142602),(98796,3,142616),(98799,3,142618),(98804,3,142624),(98811,3,142634),(98820,3,142648),(98825,3,142654),(98830,3,142660),(98835,3,142666),(98842,3,142676),(98847,3,142682),(98854,3,142692),(98859,3,142698),(98864,3,142704),(98869,3,142710),(98874,3,142716),(98883,3,142730),(98888,3,142736),(98893,3,142742),(98898,3,142748),(98903,3,142754),(98908,3,142760),(98917,3,142774),(98922,3,142780),(98935,3,142802),(98940,3,142808),(98945,3,142814),(98950,3,142820),(98955,3,142826),(98962,3,142836),(98971,3,142850),(98976,3,142856),(98981,3,142862),(98986,3,142868),(98995,3,142882),(99002,3,142892),(99009,3,142902),(99016,3,142912),(99021,3,142918),(99026,3,142924),(99031,3,142930),(99036,3,142936),(99049,3,142958),(99054,3,142964),(99065,3,142982),(99072,3,142992),(99077,3,142998),(99088,3,143016),(99097,3,143030),(99110,3,143052),(99116,3,143058),(99127,3,143076),(99134,3,143086),(99141,3,143096),(99146,3,143102),(99159,3,143124),(99164,3,143130),(99169,3,143136),(99182,3,143158),(99189,3,143168),(99196,3,143178),(99205,3,143192),(99212,3,143203),(99221,3,143217),(99230,3,143231),(99243,3,143253),(99250,3,143263),(99255,3,143269),(99260,3,143275),(99271,3,143293),(99284,3,143315),(99297,3,143337),(99302,3,143343),(99309,3,143353),(99320,3,143371),(99329,3,143385),(99334,3,143391),(99343,3,143405),(99352,3,143419),(99363,3,143437),(99368,3,143443),(99375,3,143453),(99380,3,143459),(99385,3,143465),(99390,3,143471),(99395,3,143477),(99402,3,143487),(99407,3,143493),(99416,3,143507),(99421,3,143513),(99428,3,143524),(99433,3,143530),(99438,3,143536),(99445,3,143546),(99450,3,143552),(99457,3,143562),(99464,3,143572),(99469,3,143578),(99474,3,143584),(99479,3,143590),(99484,3,143596),(99489,3,143602),(99496,3,143612),(99501,3,143618),(99520,3,143652),(99529,3,143666),(99536,3,143676),(99543,3,143686),(99548,3,143692),(99555,3,143702),(99562,3,143712),(99567,3,143718),(99572,3,143724),(99577,3,143730),(99582,3,143736),(99587,3,143742),(99594,3,143752),(99601,3,143762),(99611,3,143776),(99626,3,143802),(99631,3,143808),(99640,3,143822),(99645,3,143828),(99654,3,143842),(99667,3,143864),(99674,3,143874),(99681,3,143884),(99694,3,143906),(99699,3,143912),(99706,3,143922),(99715,3,143936),(99720,3,143942),(99725,3,143948),(99734,3,143962),(99739,3,143968),(99744,3,143974),(99751,3,143984),(99756,3,143990),(99769,3,144012),(99778,3,144026),(99789,3,144044),(99794,3,144050),(99803,3,144064),(99810,3,144074),(99823,3,144096),(99832,3,144110),(99837,3,144116),(99858,3,144154),(99869,3,144172),(99874,3,144178),(99879,3,144184),(99886,3,144194),(99895,3,144208),(99902,3,144218),(99909,3,144228),(99916,3,144238),(99921,3,144244),(99926,3,144250),(99933,3,144260),(99938,3,144266),(99943,3,144272),(99948,3,144278),(99955,3,144288),(99960,3,144294),(99965,3,144300),(99970,3,144306),(99981,3,144324),(99986,3,144330),(99993,3,144340),(99998,3,144346),(152609,3,217739),(152616,3,217749),(152623,3,217759),(152628,3,217765),(152637,3,217779),(152644,3,217789),(152649,3,217795),(152654,3,217801),(152659,3,217807),(152664,3,217813),(152671,3,217823),(152676,3,217829),(152683,3,217839),(152688,3,217845),(152693,3,217851),(152698,3,217857),(152705,3,217867),(152714,3,217881),(152721,3,217891),(152726,3,217897),(152731,3,217903),(152736,3,217909),(152741,3,217915),(152746,3,217921),(152755,3,217935),(152766,3,217955),(152771,3,217961),(152778,3,217971),(152783,3,217977),(152788,3,217983),(152793,3,217989),(152800,3,217999),(152805,3,218005),(152810,3,218011),(152817,3,218021),(152822,3,218027),(152827,3,218033),(152832,3,218039),(152837,3,218045),(152842,3,218051),(152847,3,218057),(152852,3,218063),(152857,3,218069),(152862,3,218075),(152867,3,218081),(152872,3,218087),(152877,3,218093),(152882,3,218099),(152887,3,218105),(152892,3,218111),(152897,3,218117),(152902,3,218123),(152907,3,218129),(152912,3,218135),(152917,3,218141),(152922,3,218147),(152927,3,218153),(152932,3,218159),(152937,3,218165),(152942,3,218171),(152949,3,218181),(152954,3,218187),(152959,3,218193),(152964,3,218199),(152969,3,218205),(152974,3,218211),(152979,3,218217),(152984,3,218223),(152989,3,218229),(152994,3,218235),(152999,3,218241),(153005,3,218247),(153006,3,218249),(153014,3,218259),(153019,3,218265),(153024,3,218271),(153029,3,218277),(153034,3,218283),(153039,3,218289),(153044,3,218295),(153049,3,218301),(153054,3,218307),(153059,3,218313),(153064,3,218319),(153075,3,218337),(153086,3,218355),(153091,3,218361),(153096,3,218367),(153101,3,218373),(153106,3,218379),(153111,3,218385),(153116,3,218391),(153121,3,218397),(153128,3,218407),(153135,3,218417),(153140,3,218423),(153147,3,218433),(153152,3,218439),(153157,3,218445),(153162,3,218451),(153169,3,218461),(153174,3,218467),(153179,3,218473),(153186,3,218483),(153191,3,218489),(153196,3,218495),(153201,3,218501),(153206,3,218507),(153211,3,218513),(153216,3,218519),(153221,3,218525),(153226,3,218531),(153235,3,218545),(153240,3,218551),(153247,3,218561),(153252,3,218567),(153257,3,218573),(153262,3,218579),(153267,3,218585),(153272,3,218591),(153277,3,218597),(153282,3,218603),(153287,3,218609),(153292,3,218615),(153300,3,218629),(153305,3,218634),(153311,3,218641),(153318,3,218652),(153325,3,218662),(153330,3,218668),(153335,3,218674),(153340,3,218680),(153345,3,218686),(153350,3,218692),(153355,3,218698),(153362,3,218708),(153373,3,218726),(153378,3,218732),(153383,3,218738),(153388,3,218744),(153393,3,218750),(153398,3,218756),(153403,3,218762),(153410,3,218772),(153415,3,218778),(153420,3,218784),(153425,3,218790),(153430,3,218796),(153435,3,218802),(153440,3,218808),(153449,3,218822),(153454,3,218828),(153456,3,218830),(153464,3,218840),(153469,3,218846),(153474,3,218852),(153479,3,218858),(153484,3,218864),(153489,3,218870),(153494,3,218876),(153499,3,218882),(153504,3,218888),(153509,3,218894),(153514,3,218900),(153519,3,218906),(153524,3,218912),(153533,3,218926),(153538,3,218932),(153543,3,218938),(153548,3,218944),(153553,3,218950),(153557,3,218956),(153563,3,218962),(153568,3,218968),(153573,3,218974),(153578,3,218980),(153583,3,218986),(153588,3,218992),(153593,3,218998),(153598,3,219004),(153607,3,219018),(153614,3,219028),(153619,3,219034),(153624,3,219040),(153629,3,219046),(153634,3,219052),(153638,3,219058),(153644,3,219064),(153651,3,219074),(153656,3,219080),(153661,3,219086),(153666,3,219092),(153671,3,219098),(153676,3,219104),(153681,3,219110),(153686,3,219116),(153691,3,219122),(153696,3,219128),(153701,3,219134),(153706,3,219140),(153711,3,219146),(153716,3,219152),(153721,3,219158),(153726,3,219164),(153728,3,219166),(153738,3,219180),(153743,3,219186),(153748,3,219192),(153753,3,219198),(153758,3,219204),(153763,3,219210),(153768,3,219216),(153775,3,219226),(153782,3,219236),(153787,3,219242),(153792,3,219248),(153797,3,219254),(153802,3,219260),(153809,3,219270),(153816,3,219280),(153821,3,219286),(153828,3,219297),(153833,3,219303),(153838,3,219309),(153843,3,219315),(153848,3,219321),(153853,3,219327),(153858,3,219333),(153863,3,219339),(153868,3,219345),(153873,3,219351),(153878,3,219357),(153885,3,219367),(153892,3,219377),(153897,3,219383),(153902,3,219389),(153907,3,219395),(153912,3,219401),(153917,3,219407),(153922,3,219413),(153927,3,219419),(153932,3,219425),(153937,3,219431),(153942,3,219437),(153947,3,219443),(153952,3,219449),(153957,3,219455),(153962,3,219461),(153967,3,219467),(153972,3,219473),(153977,3,219479),(153982,3,219485),(153987,3,219491),(153992,3,219497),(153997,3,219503),(154002,3,219509),(154007,3,219515),(154010,3,219517),(154017,3,219527),(154022,3,219533),(154027,3,219539),(154032,3,219545),(154037,3,219551),(154046,3,219565),(154051,3,219571),(154053,3,219573),(154061,3,219583),(154066,3,219589),(154073,3,219599),(154078,3,219605),(154083,3,219611),(154088,3,219617),(154093,3,219623),(154098,3,219629),(154105,3,219639),(154110,3,219645),(154115,3,219651),(154122,3,219661),(154127,3,219667),(154132,3,219673),(154137,3,219679),(154142,3,219685),(154147,3,219691),(154154,3,219701),(154159,3,219707),(154164,3,219713),(154169,3,219719),(154174,3,219725),(154179,3,219731),(154184,3,219737),(154189,3,219743),(154194,3,219749),(154199,3,219755),(154204,3,219761),(154209,3,219767),(154216,3,219777),(154221,3,219783),(154226,3,219789),(154231,3,219795),(154236,3,219801),(154241,3,219807),(154246,3,219813),(154251,3,219819),(154256,3,219825),(154263,3,219835),(154268,3,219841),(154277,3,219855),(154282,3,219861),(154287,3,219867),(154294,3,219877),(154299,3,219883),(154304,3,219889),(154309,3,219895),(154314,3,219901),(154319,3,219907),(154324,3,219913),(154329,3,219919),(154334,3,219925),(154339,3,219931),(154344,3,219937),(154351,3,219947),(154356,3,219953),(154361,3,219959),(154366,3,219965),(154373,3,219971),(154372,3,219972),(154381,3,219983),(154386,3,219989),(154391,3,219995),(154396,3,220001),(154401,3,220007),(154410,3,220021),(154415,3,220027),(154422,3,220037),(154427,3,220043),(154434,3,220053),(154439,3,220059),(154444,3,220065),(154449,3,220071),(154454,3,220077),(154463,3,220091),(154468,3,220097),(154473,3,220103),(154482,3,220117),(154487,3,220123),(154492,3,220129),(154499,3,220139),(154504,3,220145),(154509,3,220151),(154514,3,220157),(154523,3,220171),(154528,3,220177),(154535,3,220187),(154540,3,220193),(154553,3,220215),(154558,3,220221),(154563,3,220227),(154572,3,220241),(154577,3,220247),(154582,3,220253),(154589,3,220263),(154598,3,220277),(154607,3,220291),(154614,3,220301),(154619,3,220307),(154624,3,220313),(154629,3,220319),(154634,3,220325),(154639,3,220331),(154644,3,220337),(154649,3,220343),(154654,3,220349),(154659,3,220355),(154668,3,220369),(154677,3,220383),(154682,3,220389),(154687,3,220395),(154692,3,220401),(154697,3,220407),(154702,3,220413),(154713,3,220431),(154718,3,220437),(154725,3,220447),(154730,3,220453),(154735,3,220459),(154738,3,220461),(154745,3,220471),(154750,3,220477),(154755,3,220483),(154760,3,220489),(154767,3,220499),(154769,3,220501),(154777,3,220511),(154782,3,220517),(154787,3,220523),(154794,3,220533),(154799,3,220539),(154806,3,220549),(154811,3,220555),(154816,3,220561),(154821,3,220567),(154826,3,220573),(154831,3,220579),(154836,3,220585),(154841,3,220591),(154846,3,220597),(154853,3,220607),(154860,3,220617),(154866,3,220623),(154867,3,220625),(154875,3,220635),(154880,3,220641),(154885,3,220647),(154890,3,220653),(154895,3,220659),(154902,3,220669),(154907,3,220675),(154912,3,220681),(154917,3,220687),(154922,3,220693),(154927,3,220699),(154934,3,220709),(154939,3,220715),(154944,3,220721),(154949,3,220727),(154954,3,220733),(154961,3,220743),(154966,3,220749),(154971,3,220755),(154976,3,220761),(154983,3,220771),(154988,3,220777),(154993,3,220783),(154998,3,220789),(155003,3,220795),(155008,3,220801),(155013,3,220807),(155018,3,220813),(155023,3,220819),(155030,3,220829),(155037,3,220839),(155042,3,220845),(155061,3,220879),(155066,3,220885),(155071,3,220891),(155076,3,220897),(155081,3,220903),(155110,3,220957),(155115,3,220963),(155120,3,220969),(155127,3,220979),(155131,3,220985),(155136,3,220991),(155148,3,221009),(155155,3,221019),(155162,3,221029),(155167,3,221035),(155172,3,221041),(155177,3,221047),(155182,3,221053),(155189,3,221063),(155200,3,221081),(155209,3,221095),(155214,3,221101),(155219,3,221107),(155228,3,221121),(155233,3,221127),(155238,3,221133),(155247,3,221147),(155252,3,221153),(155256,3,221159),(155264,3,221169),(155269,3,221175),(155276,3,221185),(155283,3,221195),(155288,3,221201),(155293,3,221207),(155298,3,221213),(155305,3,221223),(155310,3,221229),(155319,3,221243),(155324,3,221249),(155329,3,221255),(155342,3,221277),(155351,3,221291),(155356,3,221297),(155361,3,221303),(155370,3,221318),(155379,3,221332),(155386,3,221342),(155393,3,221352),(155402,3,221366),(155407,3,221372),(155412,3,221378),(155417,3,221384),(155422,3,221390),(155427,3,221396),(155432,3,221402),(155437,3,221408),(155442,3,221414),(155447,3,221420),(155452,3,221426),(155457,3,221432),(155462,3,221438),(155469,3,221449),(155478,3,221464),(155483,3,221470),(155492,3,221484),(155497,3,221490),(155504,3,221500),(155509,3,221506),(155516,3,221516),(155521,3,221522),(155526,3,221528),(155539,3,221550),(155544,3,221556),(155549,3,221562),(155556,3,221573),(155561,3,221579),(155566,3,221585),(155571,3,221591),(155576,3,221597),(155581,3,221603),(155586,3,221609),(155591,3,221615),(155596,3,221621),(155601,3,221627),(155606,3,221633),(155611,3,221639),(155620,3,221653),(155622,3,221655),(155626,3,221657),(155635,3,221671),(155642,3,221682),(155647,3,221688),(155652,3,221694),(155657,3,221700),(155662,3,221706),(155669,3,221716),(155673,3,221722),(155681,3,221732),(155686,3,221738),(155691,3,221744),(155694,3,221746),(155699,3,221752),(155704,3,221758),(155709,3,221764),(155714,3,221770),(155719,3,221776),(155724,3,221782),(155731,3,221792),(155736,3,221798),(155741,3,221804),(155746,3,221810),(155751,3,221816),(155756,3,221822),(155761,3,221828),(155766,3,221834),(155771,3,221840),(155778,3,221850),(155783,3,221856),(155788,3,221862),(155793,3,221868),(155800,3,221879),(155807,3,221889),(155812,3,221895),(155817,3,221901),(155822,3,221907),(155829,3,221917),(155834,3,221923),(155839,3,221929),(155844,3,221935),(155849,3,221941),(155860,3,221959),(155867,3,221965),(155866,3,221967),(155873,3,221978),(155882,3,221988),(155889,3,221998),(155894,3,222004),(155899,3,222010),(155906,3,222020),(155911,3,222026),(155916,3,222032),(155921,3,222038),(155928,3,222048),(155935,3,222058),(155940,3,222064),(155945,3,222070),(155950,3,222076),(155955,3,222082),(155960,3,222088),(155967,3,222098),(155976,3,222114),(155981,3,222120),(155988,3,222130),(155993,3,222136),(155995,3,222138),(156003,3,222148),(156012,3,222163),(156019,3,222173),(156021,3,222175),(156029,3,222185),(156038,3,222201),(156045,3,222211),(156052,3,222221),(156057,3,222227),(156062,3,222233),(156067,3,222239),(156072,3,222245),(156077,3,222251),(156082,3,222257),(156087,3,222263),(156092,3,222269),(156099,3,222279),(156104,3,222285),(156127,3,222327),(156132,3,222333),(156137,3,222339),(156142,3,222345),(156147,3,222351),(156154,3,222362),(156161,3,222372),(156166,3,222378),(156173,3,222388),(156182,3,222402),(156187,3,222408),(156192,3,222414),(156197,3,222420),(156202,3,222426),(156209,3,222436),(156214,3,222442),(156219,3,222448),(156224,3,222454),(156229,3,222460),(156236,3,222470),(156241,3,222476),(156246,3,222482),(156251,3,222488),(156256,3,222494),(156263,3,222504),(156268,3,222510),(156273,3,222516),(156278,3,222522),(156283,3,222528),(156288,3,222534),(156293,3,222540),(156298,3,222546),(156303,3,222552),(156310,3,222562),(156315,3,222568),(156320,3,222574),(156325,3,222580),(156330,3,222586),(156335,3,222592),(156342,3,222602),(156347,3,222608),(156352,3,222614),(156357,3,222620),(156362,3,222626),(156367,3,222632),(156372,3,222638),(156377,3,222644),(156382,3,222650),(156387,3,222656),(156392,3,222662),(156397,3,222668),(156402,3,222674),(156407,3,222680),(156412,3,222686),(156419,3,222696),(156424,3,222702),(156429,3,222708),(156434,3,222714),(156439,3,222720),(156444,3,222726),(156446,3,222728),(156454,3,222738),(156459,3,222744),(156464,3,222750),(156469,3,222756),(156471,3,222758),(156481,3,222772),(156486,3,222778),(156491,3,222784),(156496,3,222790),(156501,3,222796),(156506,3,222802),(156511,3,222808),(156516,3,222814),(156521,3,222820),(156528,3,222830),(156533,3,222836),(156538,3,222842),(156545,3,222852),(156550,3,222858),(156555,3,222864),(156560,3,222870),(156565,3,222876),(156570,3,222882),(156575,3,222888),(156580,3,222894),(156587,3,222904),(156592,3,222910),(156597,3,222916),(156604,3,222926),(156609,3,222932),(156614,3,222938),(156619,3,222944),(156628,3,222960),(156633,3,222966),(156636,3,222968),(156643,3,222978),(156648,3,222984),(156653,3,222990),(156662,3,223004),(156667,3,223010),(156674,3,223020),(156683,3,223036),(156688,3,223042),(156693,3,223048),(156698,3,223054),(156707,3,223070),(156712,3,223076),(156719,3,223086),(156726,3,223097),(156739,3,223121),(156744,3,223127),(156749,3,223133),(156754,3,223139),(156759,3,223145),(156766,3,223155),(156771,3,223161),(156776,3,223167),(156781,3,223173),(156788,3,223183),(156795,3,223193),(156800,3,223199),(156805,3,223205),(156810,3,223211),(156817,3,223221),(156822,3,223227),(156827,3,223233),(156832,3,223239),(156837,3,223245),(156842,3,223251),(156847,3,223257),(156852,3,223263),(156857,3,223269),(156862,3,223275),(156875,3,223297),(156880,3,223303),(156885,3,223309),(156890,3,223315),(156895,3,223321),(156900,3,223327),(156905,3,223333),(156914,3,223347),(156923,3,223361),(156930,3,223371),(156935,3,223377),(156942,3,223387),(156947,3,223393),(156952,3,223399),(156957,3,223405),(156962,3,223411),(156971,3,223426),(156976,3,223432),(156983,3,223442),(156990,3,223452),(156995,3,223458),(157000,3,223464),(157005,3,223470),(157010,3,223476),(157017,3,223486),(157020,3,223488),(157029,3,223502),(157036,3,223512),(157041,3,223518),(157046,3,223524),(157051,3,223530),(157058,3,223540),(157063,3,223546),(157070,3,223556),(157072,3,223558),(157082,3,223572),(157087,3,223578),(157092,3,223584),(157097,3,223590),(157102,3,223596),(157111,3,223610),(157116,3,223616),(157121,3,223622),(157126,3,223628),(157131,3,223634),(157142,3,223652),(157149,3,223662),(157154,3,223668),(157161,3,223678),(157166,3,223684),(157171,3,223690),(157176,3,223696),(157181,3,223702),(157188,3,223712),(157193,3,223718),(157198,3,223724),(157207,3,223738),(157214,3,223748),(157219,3,223754),(157224,3,223760),(157229,3,223766),(157234,3,223772),(157239,3,223778),(157246,3,223788),(157255,3,223802),(157260,3,223808),(157265,3,223814),(157270,3,223820),(157275,3,223826),(157280,3,223832),(157287,3,223842),(157292,3,223848),(157299,3,223858),(157304,3,223864),(157309,3,223870),(157314,3,223876),(157319,3,223882),(157324,3,223888),(157331,3,223898),(157336,3,223904),(157341,3,223910),(157346,3,223916),(157351,3,223922),(157356,3,223928),(157361,3,223934),(157366,3,223940),(157371,3,223946),(157376,3,223952),(157381,3,223958),(157390,3,223968),(157389,3,223969),(157398,3,223980),(157400,3,223982),(157408,3,223992),(157413,3,223998),(157420,3,224008),(157425,3,224014),(157430,3,224020),(157432,3,224022),(157440,3,224032),(157445,3,224038),(157450,3,224044),(157455,3,224050),(157460,3,224056),(157465,3,224062),(157470,3,224068),(157477,3,224078),(157482,3,224084),(157487,3,224090),(157492,3,224096),(157497,3,224102),(157502,3,224108),(157507,3,224114),(157512,3,224120),(157517,3,224126),(157520,3,224129),(157529,3,224143),(157534,3,224149),(157539,3,224155),(157544,3,224161),(157551,3,224171),(157556,3,224177),(157561,3,224183),(157568,3,224193),(157573,3,224199),(157578,3,224205),(157583,3,224211),(157588,3,224217),(157593,3,224223),(157598,3,224229),(157603,3,224235),(157608,3,224241),(157613,3,224247),(157618,3,224253),(157623,3,224259),(157628,3,224265),(157633,3,224271),(157638,3,224277),(157643,3,224283),(157648,3,224289),(157655,3,224300),(157660,3,224306),(157662,3,224308),(157670,3,224318),(157675,3,224324),(157680,3,224330),(157685,3,224336),(157690,3,224342),(157697,3,224352),(157704,3,224362),(157706,3,224364),(157716,3,224378),(157721,3,224384),(157728,3,224394),(157737,3,224408),(157746,3,224422),(157751,3,224428),(157756,3,224434),(157761,3,224440),(157766,3,224446),(157771,3,224452),(157776,3,224458),(157783,3,224469),(157788,3,224475),(157793,3,224481),(157798,3,224487),(157803,3,224493),(157808,3,224499),(157813,3,224505),(157818,3,224511),(157820,3,224513),(157830,3,224528),(157835,3,224534),(157840,3,224540),(157845,3,224546),(157850,3,224552),(157857,3,224562),(157862,3,224568),(157873,3,224586),(157880,3,224596),(157885,3,224602),(157894,3,224616),(157901,3,224626),(157906,3,224632),(157913,3,224642),(157920,3,224652),(157925,3,224658),(157930,3,224664),(157935,3,224670),(157940,3,224676),(157947,3,224686),(157954,3,224696),(157959,3,224702),(157966,3,224712),(157973,3,224722),(157978,3,224728),(157983,3,224734),(157988,3,224740),(157993,3,224746),(157998,3,224752),(158003,3,224758),(158008,3,224764),(158013,3,224770),(158018,3,224776),(158023,3,224782),(158030,3,224792),(158035,3,224798),(158038,3,224800),(158043,3,224806),(158048,3,224812),(158055,3,224822),(158062,3,224832),(158067,3,224838),(158072,3,224844),(158077,3,224850),(158082,3,224856),(158087,3,224862),(158094,3,224872),(158099,3,224878),(158104,3,224884),(158109,3,224890),(158114,3,224896),(158119,3,224902),(158124,3,224908),(158129,3,224914),(158134,3,224920),(158139,3,224926),(158144,3,224932),(158149,3,224938),(158154,3,224944),(158159,3,224950),(158164,3,224956),(158167,3,224958),(158174,3,224968),(158179,3,224974),(158186,3,224985),(158191,3,224991),(158198,3,225001),(158203,3,225007),(158210,3,225017),(158215,3,225023),(158220,3,225029),(158225,3,225035),(158232,3,225045),(158239,3,225055),(158244,3,225061),(158249,3,225067),(158254,3,225073),(158259,3,225079),(158269,3,225091),(158274,3,225097),(158279,3,225103),(158284,3,225109),(158289,3,225115),(158294,3,225121),(158299,3,225127),(158304,3,225133),(158309,3,225139),(158314,3,225145),(158316,3,225147),(158324,3,225157),(158329,3,225163),(158334,3,225169),(158341,3,225180),(158346,3,225186),(158351,3,225192),(158356,3,225198),(158361,3,225204),(158366,3,225210),(158371,3,225216),(158376,3,225222),(158381,3,225228),(158386,3,225234),(158391,3,225240),(158393,3,225242),(158401,3,225252),(158408,3,225262),(158413,3,225268),(158418,3,225274),(158425,3,225284),(158430,3,225290),(158435,3,225296),(158440,3,225302),(158445,3,225308),(158450,3,225314),(158455,3,225320),(158460,3,225326),(158465,3,225332),(158470,3,225338),(158475,3,225344),(158480,3,225350),(158485,3,225356),(158490,3,225362),(158495,3,225368),(158500,3,225374),(158511,3,225392),(158516,3,225398),(158523,3,225408),(158530,3,225418),(158535,3,225424),(158540,3,225430),(158545,3,225436),(158550,3,225442),(158555,3,225448),(158560,3,225454),(158565,3,225460),(158570,3,225466),(158575,3,225472),(158580,3,225478),(158587,3,225488),(158592,3,225494),(158597,3,225500),(158602,3,225506),(158607,3,225512),(158612,3,225518),(158619,3,225528),(158624,3,225534),(158629,3,225540),(158634,3,225546),(158643,3,225560),(158648,3,225566),(158653,3,225572),(158658,3,225578),(158663,3,225584),(158668,3,225590),(158673,3,225596),(158682,3,225610),(158687,3,225616),(158694,3,225626),(158697,3,225628),(158699,3,225630),(158707,3,225640),(158712,3,225646),(158717,3,225652),(158722,3,225658),(158727,3,225664),(158732,3,225670),(158737,3,225676),(158744,3,225686),(158749,3,225692),(158754,3,225698),(158759,3,225704),(158764,3,225710),(158769,3,225716),(158774,3,225722),(158779,3,225728),(158784,3,225734),(158789,3,225740),(158794,3,225746),(158801,3,225756),(158806,3,225762),(158811,3,225768),(158818,3,225778),(158823,3,225784),(158828,3,225790),(158833,3,225796),(158838,3,225802),(158843,3,225808),(158848,3,225814),(158853,3,225820),(158860,3,225830),(158865,3,225836),(158870,3,225842),(158875,3,225848),(158880,3,225854),(158887,3,225864),(158892,3,225870),(158897,3,225876),(158904,3,225886),(158909,3,225892),(158914,3,225898),(158919,3,225904),(158928,3,225918),(158933,3,225924),(158938,3,225930),(158943,3,225936),(158948,3,225942),(158953,3,225948),(158958,3,225954),(158963,3,225960),(158968,3,225966),(158973,3,225972),(158978,3,225978),(158983,3,225984),(158988,3,225990),(158993,3,225996),(158998,3,226002),(159003,3,226008),(159010,3,226019),(159015,3,226025),(159020,3,226031),(159027,3,226041),(159032,3,226047),(159037,3,226053),(159042,3,226059),(159047,3,226065),(159052,3,226071),(159057,3,226077),(159062,3,226083),(159067,3,226089),(159072,3,226095),(159077,3,226101),(159082,3,226107),(159087,3,226113),(159094,3,226123),(159098,3,226129),(159101,3,226131),(159109,3,226141),(159116,3,226152),(159121,3,226158),(159126,3,226164),(159131,3,226170),(159138,3,226180),(159143,3,226186),(159148,3,226192),(159150,3,226194),(159158,3,226204),(159167,3,226218),(159172,3,226224),(159177,3,226230),(159182,3,226236),(159189,3,226246),(159194,3,226252),(159199,3,226258),(159204,3,226264),(159209,3,226270),(159214,3,226276),(159219,3,226282),(159224,3,226288),(159229,3,226294),(159234,3,226300),(159239,3,226306),(159244,3,226312),(159249,3,226318),(159254,3,226324),(159259,3,226330),(159264,3,226336),(159269,3,226342),(159274,3,226348),(159279,3,226354),(159284,3,226360),(159291,3,226371),(159296,3,226377),(159301,3,226383),(159306,3,226389),(159313,3,226399),(159318,3,226405),(159325,3,226415),(159330,3,226421),(159335,3,226427),(159340,3,226433),(159345,3,226439),(159350,3,226445),(159355,3,226451),(159360,3,226457),(159367,3,226468),(159372,3,226474),(159377,3,226480),(159382,3,226486),(159387,3,226492),(159392,3,226498),(159401,3,226512),(159406,3,226518),(159413,3,226528),(159418,3,226534),(159423,3,226540),(159428,3,226546),(159433,3,226552),(159438,3,226558),(159447,3,226573),(159452,3,226579),(159457,3,226585),(159462,3,226591),(159467,3,226597),(159472,3,226603),(159483,3,226621),(159488,3,226627),(159493,3,226633),(159498,3,226639),(159503,3,226645),(159508,3,226651),(159513,3,226657),(159518,3,226663),(159523,3,226669),(159528,3,226675),(159533,3,226681),(159538,3,226687),(159543,3,226693),(159550,3,226703),(159557,3,226713),(159562,3,226719),(159567,3,226725),(159572,3,226731),(159577,3,226737),(159582,3,226743),(159587,3,226749),(159592,3,226755),(159597,3,226761),(159604,3,226771),(159609,3,226777),(159616,3,226787),(159621,3,226793),(159626,3,226799),(159631,3,226805),(159636,3,226811),(159641,3,226817),(159646,3,226823),(159651,3,226829),(159656,3,226835),(159661,3,226841),(159668,3,226852),(159673,3,226858),(159680,3,226868),(159685,3,226874),(159692,3,226884),(159697,3,226890),(159702,3,226896),(159707,3,226902),(159712,3,226908),(159717,3,226914),(159722,3,226920),(159727,3,226926),(159732,3,226932),(159737,3,226938),(159746,3,226952),(159751,3,226958),(159758,3,226968),(159763,3,226974),(159768,3,226980),(159775,3,226990),(159788,3,227012),(159793,3,227018),(159798,3,227024),(159803,3,227030),(159808,3,227036),(159813,3,227042),(159818,3,227048),(159823,3,227054),(159828,3,227060),(159835,3,227070),(159840,3,227076),(159847,3,227086),(159852,3,227092),(159857,3,227098),(159862,3,227104),(159869,3,227114),(159874,3,227120),(159879,3,227126),(159884,3,227132),(159889,3,227138),(159894,3,227144),(159899,3,227150),(159904,3,227156),(159909,3,227162),(159914,3,227168),(159923,3,227182),(159928,3,227188),(159933,3,227194),(159938,3,227200),(159947,3,227215),(159952,3,227221),(159957,3,227227),(159964,3,227237),(159969,3,227243),(159974,3,227249),(159981,3,227259),(159986,3,227265),(159991,3,227271),(159996,3,227277),(159999,3,227279),(160008,3,227293),(160013,3,227299),(160018,3,227305),(160023,3,227311),(160028,3,227317),(160033,3,227323),(160040,3,227333),(160045,3,227339),(160050,3,227345),(160055,3,227351),(160060,3,227357),(160065,3,227363),(160070,3,227369),(160075,3,227375),(160080,3,227381),(160082,3,227383),(160090,3,227393),(160095,3,227399),(160103,3,227410),(160104,3,227412),(160112,3,227422),(160114,3,227424),(160126,3,227442),(160131,3,227448),(160138,3,227458),(160143,3,227464),(160148,3,227470),(160155,3,227480),(160168,3,227502),(160173,3,227508),(160178,3,227514),(160183,3,227520),(160188,3,227526),(160190,3,227528),(160198,3,227538),(160207,3,227552),(160212,3,227558),(160217,3,227564),(160222,3,227570),(160227,3,227576),(160232,3,227582),(160237,3,227588),(160242,3,227594),(160253,3,227612),(160258,3,227618),(160263,3,227624),(160270,3,227634),(160275,3,227640),(160282,3,227650),(160287,3,227656),(160292,3,227662),(160297,3,227668),(160302,3,227674),(160309,3,227684),(160316,3,227694),(160321,3,227700),(160325,3,227706),(160331,3,227712),(160336,3,227718),(160343,3,227728),(160348,3,227734),(160353,3,227740),(160358,3,227746),(160365,3,227757),(160370,3,227763),(160377,3,227773),(160384,3,227783),(160393,3,227797),(160398,3,227803),(160405,3,227813),(160410,3,227819),(160415,3,227825),(160422,3,227835),(160427,3,227841),(160436,3,227855),(160441,3,227861),(160446,3,227867),(160451,3,227873),(160456,3,227879),(160461,3,227885),(160466,3,227891),(160471,3,227897),(160476,3,227903),(160483,3,227914),(160488,3,227920),(160495,3,227930),(160500,3,227936),(160505,3,227942),(160510,3,227948),(160515,3,227954),(160520,3,227960),(160525,3,227966),(160530,3,227972),(160535,3,227978),(160540,3,227984),(160545,3,227990),(160550,3,227996),(160555,3,228002),(160560,3,228008),(160569,3,228022),(160578,3,228036),(160583,3,228042),(160588,3,228048),(160593,3,228054),(160598,3,228060),(160603,3,228066),(160610,3,228076),(160615,3,228082),(160622,3,228092),(160627,3,228098),(160632,3,228104),(160637,3,228110),(160660,3,228152),(160665,3,228158),(160670,3,228164),(160675,3,228170),(160680,3,228176),(160685,3,228182),(160690,3,228188),(160695,3,228194),(160700,3,228200),(160705,3,228206),(160710,3,228212),(160715,3,228218),(160723,3,228226),(160728,3,228232),(160737,3,228246),(160744,3,228256),(160755,3,228274),(160762,3,228285),(160767,3,228291),(160772,3,228297),(160777,3,228303),(160782,3,228309),(160787,3,228315),(160794,3,228325),(160799,3,228331),(160806,3,228341),(160811,3,228347),(160816,3,228353),(160821,3,228359),(160825,3,228365),(160831,3,228371),(160836,3,228377),(160845,3,228391),(160852,3,228402),(160857,3,228408),(160862,3,228414),(160867,3,228420),(160872,3,228426),(160877,3,228432),(160884,3,228442),(160891,3,228452),(160902,3,228471),(160907,3,228477),(160914,3,228487),(160919,3,228493),(160924,3,228499),(160929,3,228505),(160934,3,228511),(160939,3,228517),(160946,3,228527),(160951,3,228533),(160956,3,228539),(160961,3,228545),(160966,3,228551),(160971,3,228557),(160976,3,228563),(160981,3,228569),(160986,3,228575),(160991,3,228581),(160996,3,228587),(161000,3,228593),(161006,3,228599),(161011,3,228605),(161016,3,228611),(161021,3,228617),(161028,3,228627),(161033,3,228633),(161040,3,228643),(161045,3,228649),(161050,3,228655),(161055,3,228661),(161060,3,228667),(161065,3,228673),(161070,3,228679),(161077,3,228689),(161082,3,228695),(161089,3,228705),(161094,3,228711),(161099,3,228717),(161104,3,228723),(161109,3,228729),(161114,3,228735),(161123,3,228749),(161128,3,228755),(161133,3,228761),(161138,3,228767),(161143,3,228773),(161150,3,228783),(161157,3,228793),(161162,3,228799),(161171,3,228813),(161180,3,228827),(161185,3,228833),(161190,3,228839),(161195,3,228845),(161200,3,228851),(161205,3,228857),(161212,3,228867),(161214,3,228869),(161222,3,228879),(161229,3,228889),(161244,3,228915),(161246,3,228917),(161254,3,228927),(161259,3,228933),(161264,3,228939),(161269,3,228945),(161271,3,228947),(161283,3,228965),(161288,3,228971),(161293,3,228977),(161298,3,228983),(161305,3,228993),(161310,3,228999),(161315,3,229005),(161322,3,229015),(161327,3,229021),(161346,3,229055),(161353,3,229065),(161358,3,229071),(161363,3,229077),(161372,3,229091),(161377,3,229097),(161382,3,229103),(161387,3,229109),(161392,3,229115),(161397,3,229121),(161412,3,229147),(161419,3,229157),(161428,3,229171),(161433,3,229177),(161438,3,229183),(161443,3,229189),(161448,3,229195),(161453,3,229201),(161458,3,229207),(161463,3,229213),(161468,3,229219),(161470,3,229221),(161482,3,229239),(161489,3,229249),(161494,3,229255),(161501,3,229265),(161506,3,229271),(161513,3,229281),(161518,3,229287),(161523,3,229293),(161528,3,229299),(161535,3,229309),(161542,3,229319),(161549,3,229329),(161556,3,229339),(161561,3,229345),(161566,3,229351),(161573,3,229361),(161578,3,229367),(161583,3,229373),(161588,3,229379),(161593,3,229385),(161598,3,229391),(161603,3,229397),(161610,3,229407),(161615,3,229413),(161620,3,229419),(161625,3,229425),(161630,3,229431),(161637,3,229441),(161642,3,229447),(161649,3,229457),(161654,3,229463),(161661,3,229473),(161674,3,229495),(161679,3,229501),(161684,3,229507),(161689,3,229513),(161694,3,229519),(161707,3,229541),(161712,3,229547),(161717,3,229553),(161722,3,229559),(161727,3,229565),(161734,3,229575),(161739,3,229581),(161744,3,229587),(161749,3,229593),(161754,3,229599),(161759,3,229605),(161764,3,229611),(161773,3,229625),(161782,3,229639),(161784,3,229641),(161794,3,229655),(161801,3,229665),(161806,3,229671),(161811,3,229677),(161816,3,229683),(161821,3,229689),(161823,3,229691),(161831,3,229701),(161836,3,229707),(161841,3,229713),(161846,3,229719),(161851,3,229725),(161862,3,229743),(161867,3,229749),(161872,3,229755),(161877,3,229761),(161882,3,229767),(161887,3,229773),(161892,3,229779),(161897,3,229785),(161902,3,229791),(161907,3,229797),(161912,3,229803),(161917,3,229809),(161922,3,229815),(161927,3,229821),(161932,3,229827),(161939,3,229837),(161944,3,229843),(161949,3,229849),(161954,3,229855),(161959,3,229861),(161964,3,229867),(161969,3,229873),(161976,3,229879),(161975,3,229880),(161984,3,229891),(161989,3,229897),(161994,3,229903),(161999,3,229909),(162004,3,229915),(162009,3,229921),(162016,3,229931),(162021,3,229937),(162026,3,229943),(162031,3,229949),(162036,3,229955),(162041,3,229961),(162046,3,229967),(162051,3,229973),(162056,3,229979),(162060,3,229985),(162066,3,229991),(162068,3,229993),(162076,3,230003),(162081,3,230009),(162086,3,230015),(162090,3,230021),(162096,3,230027),(162103,3,230037),(162108,3,230043),(162113,3,230049),(162118,3,230055),(162123,3,230061),(162128,3,230067),(162133,3,230073),(162138,3,230079),(162143,3,230085),(162150,3,230095),(162155,3,230101),(162160,3,230107),(162167,3,230117),(162172,3,230123),(162177,3,230129),(162184,3,230139),(162189,3,230145),(162194,3,230151),(162199,3,230157),(162206,3,230167),(162211,3,230173),(162216,3,230179),(162225,3,230193),(162230,3,230199),(162235,3,230205),(162241,3,230216),(162247,3,230222),(162252,3,230228),(162257,3,230234),(162262,3,230240),(162267,3,230246),(162272,3,230252),(162277,3,230258),(162282,3,230264),(162287,3,230270),(162292,3,230276),(162297,3,230282),(162302,3,230288),(162307,3,230294),(162316,3,230308),(162321,3,230314),(162328,3,230324),(162333,3,230330),(162338,3,230336),(162343,3,230342),(162350,3,230352),(162357,3,230362),(162364,3,230372),(162371,3,230382),(162376,3,230388),(162381,3,230394),(162383,3,230396),(162391,3,230406),(162394,3,230408),(162401,3,230418),(162408,3,230429),(162413,3,230435),(162419,3,230441),(162420,3,230442),(162428,3,230453),(162433,3,230459),(162440,3,230470),(162445,3,230476),(162450,3,230482),(162455,3,230488),(162460,3,230494),(162465,3,230500),(162472,3,230510),(162477,3,230516),(162482,3,230522),(162489,3,230532),(162494,3,230538),(162499,3,230544),(162510,3,230563),(162515,3,230569),(162520,3,230575),(162525,3,230581),(162532,3,230592),(162543,3,230610),(162550,3,230621),(162555,3,230627),(162562,3,230637),(162569,3,230647),(162574,3,230653),(162579,3,230659),(162584,3,230665),(162589,3,230671),(162598,3,230685),(162603,3,230691),(162610,3,230701),(162617,3,230711),(162628,3,230729),(162633,3,230735),(162644,3,230753),(162679,3,230819),(162684,3,230825),(162691,3,230835),(162696,3,230841),(162701,3,230847),(162706,3,230853),(162713,3,230863),(162718,3,230869),(162723,3,230875),(162730,3,230885),(162737,3,230895),(162748,3,230913),(162753,3,230919),(162758,3,230925),(162763,3,230931),(162768,3,230937),(162773,3,230943),(162778,3,230949),(162783,3,230955),(162790,3,230965),(162797,3,230975),(162802,3,230981),(162809,3,230991),(162814,3,230997),(162819,3,231003),(162824,3,231009),(162829,3,231015),(162834,3,231021),(162839,3,231027),(162844,3,231033),(162849,3,231039),(162851,3,231041),(162861,3,231055),(162866,3,231061),(162871,3,231067),(162878,3,231077),(162885,3,231087),(162892,3,231097),(162897,3,231103),(162902,3,231109),(162907,3,231115),(162914,3,231125),(162919,3,231131),(162924,3,231137),(162929,3,231143),(162934,3,231149),(162941,3,231159),(162946,3,231165),(162951,3,231171),(162956,3,231177),(162963,3,231187),(162968,3,231193),(162973,3,231199),(162978,3,231205),(162983,3,231211),(162992,3,231226),(162997,3,231232),(163002,3,231238),(163007,3,231244),(163012,3,231250),(163017,3,231256),(163022,3,231262),(163029,3,231272),(163034,3,231278),(163038,3,231284),(163046,3,231294),(163053,3,231305),(163056,3,231307),(163065,3,231321),(163070,3,231327),(163077,3,231337),(163082,3,231343),(163087,3,231349),(163094,3,231359),(163099,3,231365),(163106,3,231375),(163111,3,231381),(163116,3,231387),(163121,3,231393),(163126,3,231399),(163131,3,231405),(163136,3,231411),(163141,3,231417),(163146,3,231423),(163151,3,231429),(163156,3,231435),(163161,3,231441),(163166,3,231447),(163171,3,231453),(163176,3,231459),(163181,3,231465),(163186,3,231472),(163193,3,231482),(163198,3,231488),(163203,3,231494),(163208,3,231500),(163213,3,231506),(163218,3,231512),(163223,3,231518),(163230,3,231528),(163235,3,231534),(163240,3,231540),(163242,3,231542),(163250,3,231552),(163255,3,231558),(163260,3,231564),(163265,3,231570),(163270,3,231576),(163275,3,231582),(163280,3,231588),(163285,3,231594),(163290,3,231600),(163295,3,231606),(163300,3,231612),(163305,3,231618),(163310,3,231624),(163317,3,231634),(163322,3,231640),(163327,3,231646),(163332,3,231652),(163337,3,231658),(163342,3,231664),(163349,3,231674),(163354,3,231680),(163359,3,231686),(163364,3,231692),(163373,3,231706),(163380,3,231716),(163385,3,231722),(163394,3,231736),(163399,3,231742),(163404,3,231748),(163409,3,231754),(163416,3,231764),(163423,3,231774),(163428,3,231780),(163433,3,231786),(163440,3,231796),(163447,3,231806),(163454,3,231816),(163461,3,231826),(163468,3,231836),(163473,3,231842),(163484,3,231860),(163491,3,231870),(163502,3,231888),(163509,3,231898),(163514,3,231904),(163519,3,231910),(163524,3,231916),(163529,3,231922),(163534,3,231928),(163543,3,231942),(163548,3,231948),(163555,3,231958),(163560,3,231964),(163565,3,231970),(163570,3,231976),(163575,3,231982),(163580,3,231988),(163587,3,231999),(163596,3,232013),(163605,3,232027),(163616,3,232045),(163636,3,232087),(163643,3,232093),(163653,3,232108),(163659,3,232126),(163664,3,232132),(163680,3,232168),(163685,3,232180),(163690,3,232181),(163693,3,232191),(163696,3,232196),(163700,3,232200),(163705,3,232206),(163722,3,232241),(163725,3,232245),(163732,3,232261),(163734,3,232263),(163738,3,232272),(163739,3,232273),(163749,3,232284),(163753,3,232290),(163761,3,232299),(163764,3,232306),(163962,3,232631),(163964,3,232633),(163971,3,232647),(163977,3,232656),(163980,3,232659),(163988,3,232669),(163993,3,232671),(164005,3,232689),(164007,3,232691),(164026,3,232730),(164032,3,232732),(164038,3,232742),(164045,3,232752),(164049,3,232754),(164059,3,232772),(164066,3,232779),(164069,3,232789),(164083,3,232807),(164097,3,232830),(164119,3,232876),(164124,3,232889),(164139,3,232903),(164148,3,232917),(164153,3,232923),(164160,3,232933),(164165,3,232939),(164170,3,232945),(164175,3,232951),(164184,3,232965),(164189,3,232971),(164194,3,232977),(164201,3,232987),(164206,3,232993),(164211,3,232999),(164218,3,233009),(164223,3,233015),(164230,3,233025),(164237,3,233035),(164242,3,233041),(164249,3,233051),(164254,3,233057),(164259,3,233063),(164264,3,233069),(164271,3,233079),(164276,3,233085),(164281,3,233091),(164286,3,233097),(164291,3,233103),(164296,3,233109),(164301,3,233115),(164306,3,233121),(164311,3,233127),(164316,3,233133),(164321,3,233144),(164328,3,233150),(164333,3,233156),(164340,3,233166),(164345,3,233172),(164352,3,233182),(164357,3,233188),(164362,3,233194),(164367,3,233200),(164374,3,233210),(164379,3,233216),(164384,3,233222),(164389,3,233228),(164396,3,233238),(164401,3,233244),(164406,3,233250),(164411,3,233256),(164416,3,233262),(164421,3,233268),(164426,3,233274),(164431,3,233280),(164436,3,233286),(164441,3,233292),(164446,3,233298),(164451,3,233304),(164456,3,233310),(164461,3,233316),(164466,3,233322),(164471,3,233328),(164478,3,233338),(164483,3,233344),(164488,3,233350),(164493,3,233356),(164498,3,233362),(164505,3,233372),(164510,3,233378),(164515,3,233384),(164520,3,233390),(164525,3,233396),(164530,3,233402),(164535,3,233408),(164544,3,233422),(164549,3,233428),(164554,3,233434),(164559,3,233440),(164564,3,233446),(164569,3,233452),(164574,3,233458),(164579,3,233464),(164584,3,233470),(164593,3,233484),(164598,3,233490),(164603,3,233496),(164608,3,233502),(164613,3,233508),(164618,3,233514),(164623,3,233520),(164628,3,233526),(164633,3,233532),(164638,3,233538),(164643,3,233544),(164648,3,233550),(164653,3,233556),(164658,3,233562),(164663,3,233568),(164668,3,233574),(164673,3,233580),(164680,3,233590),(164686,3,233600),(164692,3,233606),(164697,3,233612),(164704,3,233623),(164709,3,233629),(164714,3,233635),(164723,3,233649),(164730,3,233659),(164737,3,233669),(164742,3,233675),(164751,3,233689),(164756,3,233695),(164761,3,233701),(164766,3,233707),(164771,3,233713),(164776,3,233719),(164781,3,233725),(164786,3,233731),(164795,3,233745),(164800,3,233751),(164805,3,233757),(164810,3,233763),(164817,3,233774),(164826,3,233788),(164833,3,233798),(164842,3,233812),(164851,3,233826),(164856,3,233832),(164861,3,233838),(164866,3,233844),(164881,3,233870),(164888,3,233880),(164893,3,233886),(164898,3,233892),(164903,3,233898),(164908,3,233904),(164915,3,233915),(164920,3,233921),(164927,3,233931),(164932,3,233937),(164937,3,233943),(164942,3,233949),(164947,3,233955),(164952,3,233961),(164957,3,233967),(164962,3,233973),(164967,3,233979),(164972,3,233985),(164979,3,233995),(164981,3,233997),(164991,3,234011),(164996,3,234017),(165005,3,234031),(165007,3,234033),(165015,3,234043),(165022,3,234053),(165027,3,234059),(165032,3,234065),(165037,3,234071),(165044,3,234081),(165049,3,234087),(165054,3,234093),(165059,3,234099),(165064,3,234105),(165073,3,234119),(165078,3,234125),(165087,3,234139),(165092,3,234145),(165097,3,234151),(165102,3,234157),(165109,3,234167),(165114,3,234173),(165119,3,234179),(165124,3,234185),(165129,3,234191),(165134,3,234197),(165139,3,234203),(165146,3,234213),(165151,3,234219),(165158,3,234229),(165163,3,234235),(165168,3,234241),(165175,3,234251),(165180,3,234257),(165185,3,234263),(165190,3,234269),(165195,3,234275),(165202,3,234285),(165207,3,234291),(165212,3,234297),(165217,3,234303),(165226,3,234317),(165231,3,234323),(165236,3,234329),(165241,3,234335),(165246,3,234341),(165253,3,234351),(165258,3,234357),(165263,3,234363),(165268,3,234369),(165273,3,234375),(165278,3,234381),(165283,3,234387),(165290,3,234397),(165297,3,234407),(165302,3,234413),(165307,3,234419),(165312,3,234425),(165317,3,234431),(165322,3,234437),(165327,3,234443),(165332,3,234449),(165337,3,234455),(165344,3,234466),(165349,3,234472),(165354,3,234478),(165359,3,234484),(165366,3,234494),(165371,3,234500),(165376,3,234506),(165381,3,234512),(165390,3,234527),(165397,3,234537),(165406,3,234551),(165411,3,234557),(165418,3,234568),(165423,3,234574),(165428,3,234580),(165437,3,234594),(165442,3,234600),(165447,3,234606),(165452,3,234612),(165457,3,234618),(165462,3,234624),(165467,3,234630),(165472,3,234636),(165477,3,234642),(165484,3,234652),(165489,3,234658),(165494,3,234664),(165503,3,234678),(165508,3,234684),(165513,3,234690),(165518,3,234696),(165523,3,234702),(165528,3,234708),(165533,3,234714),(165538,3,234720),(165543,3,234726),(165548,3,234732),(165558,3,234744),(165565,3,234754),(165570,3,234760),(165575,3,234766),(165580,3,234772),(165585,3,234778),(165590,3,234784),(165595,3,234790),(165600,3,234796),(165607,3,234806),(165612,3,234812),(165619,3,234822),(165626,3,234832),(165631,3,234838),(165638,3,234848),(165641,3,234850),(165648,3,234860),(165653,3,234866),(165658,3,234872),(165663,3,234878),(165668,3,234884),(165677,3,234898),(165686,3,234912),(165691,3,234918),(165696,3,234924),(165701,3,234930),(165712,3,234948),(165717,3,234954),(165722,3,234960),(165727,3,234966),(165734,3,234976),(165743,3,234991),(165748,3,234997),(165753,3,235003),(165758,3,235009),(165763,3,235015),(165768,3,235021),(165773,3,235027),(165778,3,235033),(165783,3,235039),(165792,3,235053),(165797,3,235059),(165802,3,235065),(165807,3,235071),(165814,3,235081),(165818,3,235087),(165825,3,235098),(165831,3,235104),(165836,3,235110),(165843,3,235120),(165848,3,235126),(165857,3,235140),(165864,3,235150),(165869,3,235156),(165874,3,235162),(165879,3,235168),(165884,3,235174),(165891,3,235184),(165898,3,235194),(165907,3,235208),(165912,3,235214),(165917,3,235220),(165924,3,235230),(165929,3,235236),(165934,3,235242),(165943,3,235256),(165948,3,235262),(165953,3,235268),(165958,3,235274),(165963,3,235280),(165968,3,235286),(165973,3,235292),(165978,3,235298),(165983,3,235304),(165988,3,235310),(165993,3,235316),(166000,3,235327),(166005,3,235333),(166010,3,235339),(166015,3,235345),(166020,3,235351),(166025,3,235357),(166030,3,235363),(166035,3,235369),(166040,3,235375),(166045,3,235381),(166052,3,235391),(166057,3,235397),(166062,3,235403),(166065,3,235405),(166072,3,235415),(166077,3,235421),(166079,3,235423),(166087,3,235433),(166092,3,235439),(166097,3,235445),(166102,3,235451),(166107,3,235457),(166114,3,235468),(166119,3,235474),(166124,3,235480),(166129,3,235486),(166134,3,235492),(166141,3,235502),(166146,3,235508),(166151,3,235514),(166156,3,235520),(166158,3,235522),(166166,3,235532),(166173,3,235542),(166178,3,235548),(166183,3,235554),(166188,3,235560),(166193,3,235566),(166200,3,235576),(166207,3,235586),(166212,3,235592),(166217,3,235598),(166222,3,235604),(166227,3,235610),(166232,3,235616),(166237,3,235622),(166239,3,235624),(166245,3,235634),(166252,3,235640),(166257,3,235646),(166262,3,235652),(166267,3,235658),(166272,3,235664),(166277,3,235670),(166282,3,235676),(166289,3,235687),(166294,3,235693),(166299,3,235699),(166304,3,235705),(166309,3,235711),(166314,3,235717),(166319,3,235723),(166324,3,235729),(166329,3,235735),(166334,3,235741),(166339,3,235747),(166344,3,235753),(166349,3,235759),(166353,3,235765),(166361,3,235776),(166366,3,235782),(166371,3,235788),(166376,3,235794),(166381,3,235800),(166386,3,235806),(166391,3,235812),(166396,3,235818),(166401,3,235824),(166406,3,235830),(166411,3,235836),(166416,3,235842),(166421,3,235848),(166426,3,235854),(166433,3,235864),(166438,3,235870),(166443,3,235876),(166448,3,235882),(166453,3,235888),(166458,3,235894),(166463,3,235900),(166470,3,235911),(166475,3,235917),(166480,3,235923),(166485,3,235929),(166490,3,235935),(166495,3,235941),(166500,3,235947),(166527,3,235997),(166532,3,236003),(166543,3,236021),(166548,3,236027),(166553,3,236033),(166558,3,236039),(166563,3,236045),(166568,3,236051),(166573,3,236057),(166580,3,236067),(166587,3,236077),(166592,3,236083),(166597,3,236089),(166602,3,236095),(166607,3,236101),(166612,3,236107),(166617,3,236113),(166622,3,236119),(166627,3,236125),(166634,3,236135),(166639,3,236141),(166644,3,236147),(166649,3,236153),(166654,3,236159),(166659,3,236165),(166664,3,236171),(166669,3,236177),(166674,3,236183),(166679,3,236189),(166684,3,236195),(166689,3,236201),(166698,3,236215),(166703,3,236221),(166710,3,236231),(166715,3,236237),(166720,3,236243),(166729,3,236257),(166734,3,236263),(166739,3,236269),(166744,3,236275),(166749,3,236281),(166756,3,236291),(166761,3,236297),(166766,3,236303),(166771,3,236309),(166780,3,236323),(166785,3,236329),(166790,3,236335),(166795,3,236341),(166800,3,236347),(166805,3,236353),(166812,3,236363),(166816,3,236369),(166822,3,236375),(166827,3,236381),(166832,3,236387),(166837,3,236393),(166844,3,236403),(166849,3,236409),(166854,3,236415),(166861,3,236425),(166866,3,236431),(166871,3,236437),(166876,3,236443),(166881,3,236449),(166886,3,236455),(166891,3,236461),(166896,3,236467),(166901,3,236473),(166906,3,236479),(166911,3,236485),(166916,3,236491),(166921,3,236497),(166926,3,236503),(166931,3,236509),(166936,3,236515),(166941,3,236521),(166944,3,236523),(166951,3,236533),(166953,3,236535),(166961,3,236545),(166966,3,236551),(166971,3,236557),(166976,3,236563),(166983,3,236573),(166988,3,236579),(166995,3,236589),(167002,3,236599),(167004,3,236601),(167012,3,236611),(167017,3,236617),(167022,3,236623),(167026,3,236629),(167032,3,236635),(167037,3,236641),(167042,3,236647),(167047,3,236653),(167052,3,236659),(167057,3,236665),(167062,3,236671),(167067,3,236677),(167074,3,236687),(167085,3,236705),(167094,3,236719),(167099,3,236725),(167104,3,236731),(167106,3,236733),(167114,3,236743),(167119,3,236749),(167126,3,236760),(167135,3,236774),(167140,3,236780),(167147,3,236791),(167152,3,236797),(167157,3,236803),(167162,3,236809),(167167,3,236815),(167174,3,236825),(167179,3,236831),(167184,3,236837),(167191,3,236847),(167198,3,236857),(167203,3,236863),(167208,3,236869),(167213,3,236875),(167218,3,236881),(167225,3,236891),(167230,3,236897),(167235,3,236903),(167240,3,236909),(167245,3,236915),(167252,3,236926),(167257,3,236932),(167266,3,236946),(167268,3,236948),(167276,3,236958),(167285,3,236972),(167290,3,236978),(167295,3,236984),(167300,3,236990),(167305,3,236996),(167310,3,237002),(167315,3,237008),(167320,3,237014),(167325,3,237020),(167330,3,237026),(167335,3,237032),(167340,3,237038),(167345,3,237049),(167352,3,237055),(167357,3,237061),(167362,3,237067),(167371,3,237081),(167376,3,237087),(167385,3,237101),(167390,3,237107),(167397,3,237117),(167402,3,237123),(167407,3,237129),(167412,3,237135),(167417,3,237141),(167422,3,237147),(167427,3,237153),(167433,3,237159),(167438,3,237165),(167443,3,237171),(167452,3,237185),(167457,3,237191),(167462,3,237197),(167469,3,237207),(167476,3,237217),(167485,3,237231),(167494,3,237245),(167499,3,237251),(167506,3,237261),(167511,3,237267),(167516,3,237273),(167521,3,237279),(167526,3,237285),(167533,3,237296),(167538,3,237302),(167543,3,237308),(167548,3,237314),(167553,3,237320),(167560,3,237330),(167565,3,237336),(167570,3,237342),(167577,3,237352),(167582,3,237358),(167587,3,237364),(167596,3,237378),(167601,3,237384),(167606,3,237390),(167611,3,237396),(167616,3,237402),(167621,3,237408),(167626,3,237414),(167631,3,237420),(167636,3,237426),(167641,3,237432),(167646,3,237438),(167651,3,237444),(167660,3,237458),(167667,3,237468),(167672,3,237474),(167677,3,237480),(167682,3,237486),(167689,3,237496),(167694,3,237502),(167701,3,237512),(167706,3,237518),(167711,3,237524),(167716,3,237530),(167723,3,237540),(167728,3,237546),(167733,3,237552),(167738,3,237558),(167743,3,237564),(167748,3,237570),(167755,3,237581),(167760,3,237587),(167773,3,237609),(167782,3,237623),(167787,3,237629),(167792,3,237635),(167801,3,237649),(167806,3,237655),(167811,3,237661),(167816,3,237667),(167821,3,237673),(167826,3,237679),(167831,3,237685),(167836,3,237691),(167841,3,237697),(167848,3,237707),(167853,3,237713),(167858,3,237719),(167863,3,237725),(167870,3,237736),(167875,3,237742),(167882,3,237752),(167887,3,237758),(167889,3,237760),(167897,3,237770),(167902,3,237776),(167907,3,237782),(167912,3,237788),(167917,3,237794),(167922,3,237800),(167929,3,237810),(167934,3,237816),(167939,3,237822),(167944,3,237828),(167949,3,237834),(167954,3,237840),(167959,3,237846),(167964,3,237852),(167970,3,237858),(167971,3,237860),(167979,3,237870),(167986,3,237880),(167991,3,237886),(167996,3,237892),(168003,3,237902),(168008,3,237908),(168013,3,237914),(168018,3,237920),(168023,3,237926),(168030,3,237936),(168035,3,237942),(168040,3,237948),(168045,3,237954),(168050,3,237960),(168055,3,237966),(168060,3,237972),(168065,3,237978),(168070,3,237984),(168077,3,237994),(168082,3,238000),(168087,3,238006),(168094,3,238016),(168099,3,238022),(168104,3,238028),(168109,3,238034),(168114,3,238040),(168119,3,238046),(168124,3,238052),(168131,3,238062),(168138,3,238072),(168143,3,238078),(168148,3,238084),(168153,3,238090),(168158,3,238096),(168165,3,238106),(168170,3,238112),(168175,3,238118),(168182,3,238128),(168191,3,238142),(168196,3,238148),(168203,3,238158),(168212,3,238172),(168217,3,238178),(168224,3,238188),(168229,3,238194),(168240,3,238212),(168245,3,238218),(168250,3,238224),(168255,3,238230),(168260,3,238236),(168267,3,238246),(168272,3,238252),(168279,3,238262),(168284,3,238268),(168289,3,238274),(168296,3,238284),(168303,3,238294),(168305,3,238296),(168307,3,238298),(168309,3,238301),(168327,3,238326),(168334,3,238336),(168341,3,238346),(168352,3,238364),(168357,3,238370),(168362,3,238376),(168367,3,238382),(168372,3,238388),(168377,3,238394),(168386,3,238408),(168391,3,238414),(168396,3,238420),(168401,3,238426),(168406,3,238432),(168411,3,238438),(168416,3,238444),(168421,3,238450),(168426,3,238456),(168431,3,238462),(168436,3,238468),(168441,3,238474),(168448,3,238484),(168453,3,238490),(168458,3,238496),(168463,3,238502),(168468,3,238508),(168475,3,238518),(168484,3,238532),(168489,3,238538),(168494,3,238544),(168496,3,238546),(168504,3,238556),(168509,3,238562),(168514,3,238568),(168521,3,238578),(168534,3,238600),(168541,3,238610),(168546,3,238616),(168553,3,238626),(168558,3,238632),(168563,3,238638),(168572,3,238652),(168577,3,238658),(168582,3,238664),(168587,3,238670),(168591,3,238676),(168597,3,238682),(168602,3,238688),(168607,3,238694),(168612,3,238700),(168617,3,238706),(168622,3,238712),(168629,3,238722),(168634,3,238728),(168639,3,238734),(168644,3,238740),(168649,3,238746),(168654,3,238752),(168659,3,238758),(168663,3,238764),(168669,3,238770),(168674,3,238776),(168679,3,238782),(168684,3,238788),(168689,3,238794),(168694,3,238800),(168699,3,238806),(168706,3,238816),(168711,3,238822),(168718,3,238832),(168723,3,238838),(168728,3,238844),(168730,3,238846),(168738,3,238856),(168743,3,238862),(168750,3,238872),(168755,3,238878),(168760,3,238884),(168765,3,238890),(168770,3,238896),(168775,3,238902),(168780,3,238908),(168787,3,238919),(168792,3,238925),(168797,3,238931),(168802,3,238937),(168807,3,238943),(168812,3,238949),(168817,3,238955),(168822,3,238961),(168827,3,238967),(168832,3,238973),(168837,3,238979),(168846,3,238993),(168851,3,238999),(168858,3,239010),(168865,3,239020),(168870,3,239026),(168875,3,239032),(168882,3,239042),(168887,3,239048),(168892,3,239054),(168897,3,239060),(168902,3,239066),(168907,3,239072),(168912,3,239078),(168917,3,239084),(168922,3,239090),(168927,3,239096),(168932,3,239102),(168937,3,239108),(168942,3,239114),(168947,3,239120),(168952,3,239126),(168959,3,239136),(168964,3,239142),(168969,3,239148),(168974,3,239154),(168979,3,239160),(168984,3,239166),(168989,3,239172),(168994,3,239178),(168999,3,239184),(169004,3,239190),(169007,3,239192),(169014,3,239202),(169019,3,239208),(169024,3,239214),(169029,3,239220),(169034,3,239226),(169039,3,239232),(169044,3,239238),(169049,3,239244),(169056,3,239255),(169061,3,239261),(169066,3,239267),(169071,3,239273),(169076,3,239279),(169079,3,239281),(169088,3,239295),(169093,3,239301),(169098,3,239307),(169105,3,239317),(169110,3,239323),(169115,3,239329),(169120,3,239335),(169125,3,239341),(169130,3,239347),(169135,3,239353),(169140,3,239359),(169145,3,239365),(169150,3,239371),(169155,3,239377),(169160,3,239383),(169167,3,239394),(169172,3,239400),(169177,3,239406),(169184,3,239416),(169189,3,239422),(169194,3,239428),(169199,3,239434),(169206,3,239444),(169211,3,239450),(169218,3,239460),(169223,3,239466),(169230,3,239476),(169235,3,239482),(169242,3,239493),(169247,3,239499),(169252,3,239505),(169257,3,239511),(169264,3,239521),(169313,3,239615),(169320,3,239625),(169331,3,239643),(169338,3,239653),(169345,3,239663),(169350,3,239669),(169357,3,239679),(169364,3,239689),(169371,3,239699),(169376,3,239705),(169381,3,239711),(169390,3,239725),(169395,3,239731),(169400,3,239737),(169405,3,239743),(169410,3,239749),(169415,3,239755),(169420,3,239761),(169425,3,239767),(169430,3,239773),(169437,3,239783),(169448,3,239801),(169453,3,239807),(169458,3,239813),(169463,3,239819),(169468,3,239825),(169473,3,239831),(169478,3,239837),(169483,3,239843),(169488,3,239849),(169493,3,239855),(169498,3,239861),(169503,3,239867),(169508,3,239873),(169513,3,239879),(169518,3,239885),(169523,3,239891),(169528,3,239897),(169533,3,239903),(169538,3,239909),(169543,3,239915),(169548,3,239921),(169555,3,239931),(169560,3,239937),(169565,3,239943),(169572,3,239953),(169579,3,239963),(169588,3,239977),(169593,3,239983),(169602,3,239997),(169607,3,240003),(169612,3,240009),(169619,3,240019),(169624,3,240025),(169629,3,240031),(169634,3,240037),(169639,3,240043),(169646,3,240053),(169661,3,240079),(169666,3,240085),(169671,3,240091),(169676,3,240097),(169745,3,240231),(169750,3,240237),(169757,3,240247),(169762,3,240253),(169767,3,240259),(169772,3,240265),(169777,3,240271),(169782,3,240277),(169787,3,240283),(169796,3,240297),(169801,3,240303),(169806,3,240309),(169812,3,240319),(169818,3,240325),(169823,3,240331),(169828,3,240337),(169833,3,240343),(169838,3,240349),(169843,3,240355),(169850,3,240365),(169857,3,240376),(169862,3,240382),(169867,3,240388),(169872,3,240394),(169877,3,240400),(169884,3,240410),(169891,3,240420),(169900,3,240434),(169902,3,240436),(169914,3,240454),(169919,3,240460),(169924,3,240466),(169929,3,240472),(169934,3,240478),(169941,3,240488),(169946,3,240494),(169951,3,240500),(169956,3,240506),(169966,3,240520),(169971,3,240526),(169982,3,240544),(169991,3,240558),(169996,3,240564),(170001,3,240570),(170006,3,240576),(170011,3,240582),(170016,3,240588),(170021,3,240594),(170034,3,240616),(170039,3,240622),(170048,3,240636),(170053,3,240642),(170062,3,240656),(170067,3,240662),(170069,3,240664),(170077,3,240674),(170082,3,240680),(170087,3,240686),(170092,3,240692),(170099,3,240702),(170106,3,240712),(170115,3,240726),(170120,3,240732),(170129,3,240746),(170138,3,240760),(170143,3,240766),(170148,3,240772),(170155,3,240782),(170164,3,240796),(170169,3,240802),(170174,3,240808),(170179,3,240814),(170186,3,240824),(170191,3,240830),(170193,3,240832),(170203,3,240846),(170208,3,240852),(170213,3,240858),(170218,3,240864),(170223,3,240870),(170232,3,240884),(170237,3,240890),(170242,3,240896),(170247,3,240902),(170252,3,240908),(170261,3,240922),(170266,3,240928),(170277,3,240946),(170286,3,240960),(170291,3,240966),(170298,3,240976),(170303,3,240982),(170310,3,240992),(170315,3,240998),(170322,3,241008),(170327,3,241014),(170332,3,241020),(170337,3,241026),(170342,3,241032),(170347,3,241038),(170352,3,241044),(170357,3,241050),(170362,3,241056),(170367,3,241062),(170372,3,241068),(170377,3,241074),(170382,3,241080),(170407,3,241126),(170422,3,241152),(170435,3,241174),(170440,3,241180),(170457,3,241210),(170462,3,241216),(170467,3,241222),(170476,3,241236),(170483,3,241246),(170488,3,241252),(170495,3,241262),(170498,3,241264),(170507,3,241279),(170512,3,241285),(170519,3,241295),(170524,3,241301),(170531,3,241311),(170536,3,241317),(170543,3,241327),(170550,3,241337),(170555,3,241343),(170560,3,241349),(170565,3,241355),(170570,3,241361),(170575,3,241367),(170580,3,241373),(170585,3,241379),(170590,3,241385),(170595,3,241391),(170602,3,241401),(170609,3,241411),(170614,3,241417),(170619,3,241423),(170624,3,241429),(170629,3,241435),(170634,3,241441),(170639,3,241447),(170646,3,241458),(170651,3,241464),(170656,3,241470),(170661,3,241476),(170668,3,241487),(170673,3,241493),(170678,3,241499),(170683,3,241505),(170688,3,241511),(170693,3,241517),(170696,3,241519),(170703,3,241529),(170708,3,241535),(170713,3,241541),(170720,3,241551),(170725,3,241557),(170732,3,241567),(170739,3,241577),(170744,3,241583),(170749,3,241589),(170754,3,241595),(170761,3,241605),(170764,3,241608),(170773,3,241622),(170778,3,241628),(170783,3,241634),(170788,3,241640),(170793,3,241646),(170797,3,241652),(170805,3,241663),(170812,3,241673),(170817,3,241679),(170822,3,241685),(170827,3,241691),(170832,3,241697),(170837,3,241703),(170842,3,241709),(170849,3,241719),(170856,3,241729),(170861,3,241735),(170866,3,241741),(170871,3,241747),(170876,3,241753),(170881,3,241759),(170886,3,241765),(170891,3,241771),(170898,3,241782),(170903,3,241788),(170908,3,241794),(170913,3,241800),(170918,3,241806),(170923,3,241812),(170930,3,241822),(170935,3,241828),(170940,3,241834),(170945,3,241840),(170950,3,241846),(170955,3,241852),(170962,3,241862),(170967,3,241868),(170972,3,241874),(170981,3,241888),(170983,3,241890),(170985,3,241892),(170988,3,241894),(171001,3,241912),(171006,3,241918),(171011,3,241924),(171018,3,241935),(171023,3,241941),(171028,3,241947),(171030,3,241949),(171038,3,241959),(171040,3,241961),(171070,3,242015),(171077,3,242025),(171082,3,242031),(171089,3,242041),(171094,3,242047),(171099,3,242053),(171108,3,242067),(171115,3,242077),(171120,3,242083),(171125,3,242089),(171130,3,242095),(171139,3,242109),(171146,3,242119),(171151,3,242125),(171156,3,242131),(171161,3,242137),(171166,3,242143),(171173,3,242153),(171178,3,242159),(171183,3,242165),(171188,3,242171),(171193,3,242177),(171198,3,242183),(171203,3,242189),(171208,3,242195),(171213,3,242201),(171220,3,242211),(171222,3,242213),(171232,3,242227),(171237,3,242233),(171246,3,242247),(171251,3,242253),(171256,3,242259),(171261,3,242265),(171266,3,242271),(171271,3,242277),(171276,3,242283),(171283,3,242293),(171290,3,242303),(171295,3,242309),(171300,3,242315),(171307,3,242325),(171312,3,242331),(171319,3,242341),(171324,3,242347),(171329,3,242353),(171334,3,242359),(171339,3,242365),(171344,3,242371),(171349,3,242377),(171354,3,242383),(171359,3,242389),(171364,3,242395),(171369,3,242401),(171374,3,242407),(171381,3,242417),(171386,3,242423),(171393,3,242433),(171398,3,242439),(171405,3,242449),(171410,3,242455),(171415,3,242461),(171420,3,242467),(171427,3,242477),(171429,3,242479),(171437,3,242489),(171442,3,242495),(171447,3,242501),(171452,3,242507),(171457,3,242513),(171462,3,242519),(171465,3,242521),(171472,3,242531),(171477,3,242537),(171484,3,242547),(171489,3,242553),(171494,3,242559),(171499,3,242565),(171504,3,242571),(171509,3,242577),(171514,3,242583),(171520,3,242589),(171521,3,242590),(171529,3,242601),(171534,3,242607),(171539,3,242613),(171544,3,242619),(171551,3,242629),(171556,3,242635),(171563,3,242645),(171568,3,242651),(171573,3,242657),(171580,3,242667),(171585,3,242673),(171590,3,242679),(171595,3,242685),(171602,3,242695),(171607,3,242701),(171612,3,242707),(171617,3,242713),(171622,3,242719),(171627,3,242725),(171632,3,242731),(171637,3,242737),(171642,3,242743),(171647,3,242749),(171652,3,242755),(171657,3,242761),(171662,3,242767),(171667,3,242773),(171674,3,242783),(171679,3,242789),(171684,3,242795),(171691,3,242805),(171696,3,242811),(171701,3,242817),(171706,3,242823),(171711,3,242829),(171716,3,242835),(171725,3,242849),(171730,3,242855),(171735,3,242861),(171742,3,242871),(171749,3,242881),(171754,3,242887),(171759,3,242893),(171764,3,242899),(171769,3,242905),(171774,3,242911),(171779,3,242917),(171784,3,242923),(171789,3,242929),(171791,3,242931),(171799,3,242941),(171806,3,242951),(171811,3,242957),(171816,3,242963),(171821,3,242969),(171826,3,242975),(171831,3,242981),(171836,3,242987),(171838,3,242989),(171846,3,242999),(171851,3,243005),(171860,3,243019),(171865,3,243025),(171870,3,243031),(171875,3,243037),(171880,3,243043),(171885,3,243049),(171890,3,243055),(171895,3,243061),(171902,3,243071),(171907,3,243077),(171912,3,243083),(171917,3,243089),(171922,3,243095),(171929,3,243105),(171934,3,243111),(171939,3,243117),(171944,3,243123),(171949,3,243129),(171954,3,243135),(171959,3,243141),(171964,3,243147),(171969,3,243153),(171976,3,243163),(171983,3,243174),(171988,3,243180),(171993,3,243186),(171998,3,243192),(172005,3,243203),(172010,3,243209),(172015,3,243215),(172020,3,243221),(172025,3,243227),(172032,3,243238),(172037,3,243244),(172042,3,243250),(172047,3,243256),(172049,3,243258),(172057,3,243268),(172060,3,243270),(172067,3,243280),(172074,3,243291),(172079,3,243297),(172084,3,243303),(172089,3,243309),(172094,3,243315),(172101,3,243325),(172104,3,243327),(172111,3,243337),(172116,3,243343),(172123,3,243354),(172128,3,243360),(172135,3,243370),(172140,3,243376),(172147,3,243387),(172152,3,243393),(172157,3,243399),(172159,3,243401),(172169,3,243415),(172171,3,243417),(172179,3,243427),(172184,3,243433),(172186,3,243435),(172196,3,243450),(172201,3,243456),(172203,3,243458),(172207,3,243461),(172218,3,243479),(172223,3,243485),(172230,3,243495),(172235,3,243501),(172240,3,243507),(172245,3,243513),(172252,3,243524),(172257,3,243530),(172262,3,243536),(172267,3,243542),(172272,3,243548),(172277,3,243554),(172282,3,243560),(172289,3,243570),(172294,3,243576),(172299,3,243582),(172306,3,243592),(172311,3,243598),(172316,3,243604),(172321,3,243610),(172326,3,243616),(172331,3,243622),(172336,3,243628),(172341,3,243634),(172346,3,243640),(172351,3,243646),(172356,3,243652),(172361,3,243658),(172366,3,243664),(172371,3,243670),(172376,3,243676),(172381,3,243682),(172386,3,243688),(172391,3,243694),(172398,3,243704),(172403,3,243710),(172408,3,243716),(172413,3,243722),(172418,3,243728),(172423,3,243734),(172432,3,243748),(172437,3,243754),(172442,3,243760),(172449,3,243770),(172454,3,243776),(172459,3,243782),(172464,3,243788),(172469,3,243794),(172474,3,243800),(172481,3,243810),(172486,3,243816),(172491,3,243822),(172496,3,243828),(172501,3,243834),(172506,3,243840),(172515,3,243854),(172520,3,243860),(172525,3,243866),(172530,3,243872),(172535,3,243878),(172540,3,243884),(172545,3,243890),(172550,3,243896),(172555,3,243902),(172560,3,243908),(172565,3,243914),(172572,3,243924),(172577,3,243930),(172582,3,243936),(172587,3,243942),(172592,3,243948),(172597,3,243954),(172602,3,243960),(172607,3,243966),(172618,3,243984),(172623,3,243990),(172628,3,243996),(172633,3,244002),(172638,3,244008),(172643,3,244014),(172648,3,244020),(172653,3,244026),(172658,3,244032),(172663,3,244038),(172668,3,244044),(172673,3,244050),(172678,3,244056),(172683,3,244062),(172688,3,244068),(172693,3,244074),(172698,3,244080),(172703,3,244086),(172708,3,244092),(172713,3,244098),(172718,3,244104),(172723,3,244110),(172730,3,244120),(172735,3,244126),(172740,3,244132),(172742,3,244134),(172750,3,244144),(172755,3,244150),(172760,3,244156),(172767,3,244162),(172766,3,244163),(172779,3,244182),(172784,3,244188),(172789,3,244194),(172794,3,244200),(172799,3,244206),(172806,3,244216),(172811,3,244222),(172816,3,244228),(172821,3,244234),(172826,3,244240),(172831,3,244246),(172836,3,244252),(172841,3,244258),(172848,3,244268),(172857,3,244282),(172862,3,244288),(172867,3,244294),(172872,3,244300),(172877,3,244306),(172882,3,244312),(172889,3,244322),(172891,3,244324),(172899,3,244334),(172904,3,244340),(172909,3,244346),(172914,3,244352),(172919,3,244358),(172924,3,244364),(172929,3,244370),(172936,3,244381),(172941,3,244387),(172946,3,244393),(172951,3,244399),(172956,3,244405),(172961,3,244411),(172970,3,244425),(172973,3,244428),(172982,3,244441),(172989,3,244451),(172994,3,244457),(172999,3,244463),(173004,3,244469),(173011,3,244479),(173018,3,244489),(173025,3,244499),(173030,3,244505),(173035,3,244511),(173040,3,244517),(173049,3,244531),(173056,3,244541),(173061,3,244547),(173074,3,244570),(173079,3,244576),(173084,3,244582),(173089,3,244588),(173098,3,244602),(173107,3,244616),(173112,3,244622),(173117,3,244628),(173122,3,244634),(173127,3,244640),(173132,3,244646),(173137,3,244652),(173148,3,244670),(173153,3,244676),(173158,3,244682),(173163,3,244688),(173168,3,244694),(173173,3,244700),(173178,3,244706),(173185,3,244716),(173190,3,244722),(173195,3,244728),(173204,3,244742),(173215,3,244760),(173220,3,244766),(173225,3,244772),(173230,3,244778),(173239,3,244792),(173246,3,244802),(173251,3,244808),(173256,3,244814),(173261,3,244820),(173266,3,244826),(173271,3,244832),(173276,3,244838),(173281,3,244844),(173286,3,244850),(173291,3,244856),(173296,3,244862),(173301,3,244868),(173306,3,244874),(173311,3,244880),(173316,3,244886),(173323,3,244896),(173328,3,244902),(173333,3,244908),(173338,3,244914),(173343,3,244920),(173348,3,244926),(173353,3,244932),(173358,3,244938),(173363,3,244944),(173368,3,244950),(173373,3,244956),(173378,3,244962),(173383,3,244968),(173390,3,244978),(173395,3,244984),(173406,3,245002),(173411,3,245008),(173416,3,245014),(173421,3,245020),(173426,3,245026),(173431,3,245032),(173436,3,245038),(173441,3,245044),(173448,3,245054),(173453,3,245060),(173458,3,245066),(173463,3,245072),(173468,3,245078),(173472,3,245084),(173478,3,245090),(173483,3,245096),(173490,3,245106),(173495,3,245112),(173500,3,245118),(173505,3,245124),(173510,3,245130),(173515,3,245136),(173520,3,245142),(173527,3,245153),(173532,3,245159),(173539,3,245169),(173544,3,245175),(173549,3,245181),(173554,3,245187),(173559,3,245193),(173564,3,245199),(173571,3,245210),(173576,3,245216),(173581,3,245222),(173586,3,245228),(173591,3,245234),(173596,3,245240),(173601,3,245246),(173606,3,245252),(173611,3,245258),(173616,3,245264),(173621,3,245270),(173626,3,245276),(173631,3,245282),(173638,3,245292),(173645,3,245302),(173648,3,245304),(173655,3,245314),(173660,3,245320),(173665,3,245326),(173670,3,245332),(173675,3,245338),(173680,3,245344),(173687,3,245354),(173692,3,245360),(173695,3,245362),(173704,3,245376),(173709,3,245382),(173714,3,245388),(173725,3,245406),(173730,3,245412),(173737,3,245422),(173744,3,245432),(173753,3,245446),(173758,3,245452),(173762,3,245458),(173768,3,245469),(173775,3,245475),(173780,3,245481),(173785,3,245487),(173790,3,245493),(173792,3,245495),(173800,3,245505),(173805,3,245511),(173814,3,245526),(173819,3,245532),(173824,3,245538),(173829,3,245544),(173834,3,245550),(173843,3,245564),(173848,3,245570),(173853,3,245576),(173860,3,245586),(173865,3,245592),(173874,3,245606),(173883,3,245620),(173888,3,245626),(173893,3,245632),(173900,3,245643),(173905,3,245649),(173910,3,245655),(173915,3,245661),(173922,3,245671),(173927,3,245677),(173932,3,245683),(173937,3,245689),(173942,3,245695),(173947,3,245701),(173952,3,245707),(173957,3,245713),(173962,3,245719),(173975,3,245741),(173982,3,245751),(173987,3,245757),(173994,3,245767),(174005,3,245785),(174010,3,245791),(174015,3,245797),(174026,3,245815),(174031,3,245821),(174038,3,245831),(174053,3,245857),(174060,3,245867),(174065,3,245873),(174072,3,245883),(174079,3,245893),(174090,3,245911),(174095,3,245917),(174102,3,245927),(174107,3,245933),(174116,3,245947),(174125,3,245961),(174130,3,245967),(174135,3,245973),(174140,3,245979),(174147,3,245989),(174152,3,245995),(174161,3,246009),(174166,3,246015),(174171,3,246021),(174178,3,246031),(174183,3,246037),(174192,3,246051),(174197,3,246057),(174204,3,246067),(174209,3,246073),(174214,3,246079),(174219,3,246085),(174224,3,246091),(174229,3,246097),(174234,3,246103),(174239,3,246109),(174244,3,246115),(174249,3,246121),(174260,3,246139),(174265,3,246145),(174270,3,246151),(174275,3,246157),(174280,3,246163),(174285,3,246169),(174290,3,246175),(174295,3,246181),(174300,3,246187),(174309,3,246201),(174314,3,246207),(174319,3,246213),(174324,3,246219),(174333,3,246233),(174338,3,246239),(174343,3,246245),(174348,3,246251),(174353,3,246257),(174358,3,246263),(174363,3,246269),(174368,3,246275),(174373,3,246281),(174378,3,246287),(174383,3,246293),(174392,3,246307),(174399,3,246317),(174404,3,246323),(174413,3,246337),(174418,3,246343),(174423,3,246349),(174428,3,246355),(174437,3,246370),(174442,3,246376),(174447,3,246382),(174452,3,246388),(174457,3,246394),(174462,3,246400),(174467,3,246406),(174472,3,246412),(174481,3,246426),(174486,3,246432),(174491,3,246438),(174496,3,246444),(174501,3,246450),(174516,3,246476),(174521,3,246482),(174528,3,246492),(174533,3,246498),(174540,3,246508),(174545,3,246514),(174552,3,246524),(174557,3,246530),(174566,3,246544),(174571,3,246550),(174576,3,246556),(174581,3,246562),(174586,3,246568),(174601,3,246594),(174606,3,246600),(174611,3,246606),(174620,3,246620),(174625,3,246626),(174630,3,246632),(174635,3,246638),(174644,3,246652),(174649,3,246658),(174654,3,246664),(174665,3,246682),(174670,3,246688),(174675,3,246694),(174680,3,246700),(174683,3,246702),(174690,3,246712),(174695,3,246718),(174700,3,246724),(174705,3,246730),(174710,3,246736),(174715,3,246742),(174720,3,246748),(174725,3,246754),(174734,3,246768),(174739,3,246774),(174758,3,246808),(174763,3,246814),(174768,3,246820),(174775,3,246830),(174780,3,246836),(174787,3,246846),(174796,3,246860),(174801,3,246866),(174808,3,246876),(174813,3,246882),(174820,3,246892),(174825,3,246898),(174830,3,246909),(174837,3,246915),(174842,3,246921),(174849,3,246931),(174854,3,246937),(174856,3,246939),(174866,3,246953),(174871,3,246959),(174876,3,246965),(174881,3,246971),(174886,3,246977),(174891,3,246983),(174896,3,246989),(174901,3,246995),(174906,3,247001),(174911,3,247007),(174916,3,247013),(174929,3,247035),(174938,3,247049),(174943,3,247055),(174948,3,247061),(174953,3,247067),(174958,3,247073),(174963,3,247079),(174965,3,247081),(174973,3,247091),(174978,3,247097),(174985,3,247108),(174990,3,247114),(174997,3,247124),(175000,3,247126),(175007,3,247136),(175012,3,247142),(175017,3,247148),(175022,3,247154),(175029,3,247164),(175034,3,247170),(175039,3,247176),(175044,3,247182),(175051,3,247192),(175060,3,247206),(175065,3,247212),(175070,3,247218),(175077,3,247228),(175082,3,247234),(175087,3,247240),(175092,3,247246),(175097,3,247252),(175106,3,247266),(175113,3,247276),(175118,3,247282),(175131,3,247304),(175138,3,247314),(175143,3,247320),(175148,3,247326),(175153,3,247332),(175158,3,247338),(175167,3,247352),(175172,3,247358),(175177,3,247364),(175186,3,247378),(175191,3,247384),(175198,3,247394),(175203,3,247400),(175214,3,247418),(175221,3,247428),(175226,3,247434),(175231,3,247440),(175242,3,247458),(175247,3,247464),(175252,3,247470),(175257,3,247476),(175262,3,247482),(175266,3,247488),(175272,3,247494),(175279,3,247504),(175284,3,247510),(175289,3,247516),(175294,3,247522),(175299,3,247528),(175304,3,247534),(175311,3,247544),(175318,3,247554),(175323,3,247560),(175332,3,247574),(175337,3,247580),(175342,3,247586),(175349,3,247596),(175356,3,247606),(175365,3,247620),(175370,3,247626),(175375,3,247632),(175380,3,247638),(175385,3,247644),(175390,3,247650),(175397,3,247661),(175408,3,247679),(175413,3,247685),(175418,3,247691),(175423,3,247697),(175428,3,247703),(175433,3,247709),(175438,3,247715),(175445,3,247726),(175450,3,247732),(175455,3,247738),(175460,3,247744),(175465,3,247750),(175474,3,247764),(175479,3,247770),(175484,3,247776),(175490,3,247786),(175500,3,247800),(175505,3,247806),(175510,3,247812),(175517,3,247823),(175522,3,247829),(175527,3,247835),(175532,3,247841),(175537,3,247847),(175542,3,247853),(175547,3,247859),(175552,3,247865),(175557,3,247871),(175560,3,247873),(175569,3,247887),(175574,3,247893),(175579,3,247899),(175584,3,247905),(175589,3,247911),(175594,3,247917),(175599,3,247923),(175604,3,247929),(175611,3,247939),(175618,3,247949),(175623,3,247955),(175628,3,247961),(175633,3,247967),(175638,3,247973),(175647,3,247987),(175652,3,247993),(175657,3,247999),(175662,3,248005),(175667,3,248011),(175672,3,248017),(175677,3,248023),(175684,3,248033),(175689,3,248039),(175696,3,248049),(175701,3,248055),(175706,3,248061),(175713,3,248071),(175718,3,248077),(175725,3,248087),(175730,3,248093),(175735,3,248099),(175744,3,248113),(175749,3,248119),(175756,3,248129),(175761,3,248135),(175770,3,248149),(175785,3,248175),(175794,3,248189),(175799,3,248195),(175804,3,248201),(175811,3,248211),(175816,3,248217),(175825,3,248231),(175830,3,248237),(175837,3,248247),(175842,3,248253),(175847,3,248259),(175852,3,248265),(175857,3,248271),(175862,3,248277),(175867,3,248283),(175882,3,248309),(175889,3,248319),(175898,3,248333),(175905,3,248343),(175910,3,248349),(175915,3,248355),(175920,3,248361),(175929,3,248376),(175936,3,248386),(175941,3,248392),(175946,3,248398),(175951,3,248404),(175956,3,248410),(175961,3,248416),(175966,3,248422),(175975,3,248436),(175980,3,248442),(175985,3,248448),(175990,3,248454),(175995,3,248460),(176000,3,248466),(176005,3,248472),(176010,3,248478),(176015,3,248484),(176020,3,248490),(176027,3,248501),(176032,3,248507),(176037,3,248513),(176044,3,248523),(176049,3,248529),(176058,3,248543),(176065,3,248553),(176084,3,248587),(176097,3,248609),(176102,3,248615),(176104,3,248617),(176112,3,248627),(176117,3,248633),(176122,3,248639),(176127,3,248645),(176132,3,248651),(176137,3,248657),(176142,3,248663),(176147,3,248669),(176156,3,248683),(176161,3,248689),(176166,3,248695),(176171,3,248701),(176176,3,248707),(176181,3,248713),(176186,3,248719),(176193,3,248730),(176198,3,248736),(176205,3,248746),(176210,3,248752),(176215,3,248758),(176220,3,248764),(176225,3,248770),(176232,3,248781),(176237,3,248787),(176242,3,248793),(176247,3,248799),(176256,3,248813),(176261,3,248819),(176266,3,248825),(176271,3,248831),(176276,3,248837),(176283,3,248847),(176292,3,248861),(176297,3,248867),(176302,3,248873),(176304,3,248875),(176314,3,248889),(176319,3,248895),(176324,3,248901),(176329,3,248907),(176334,3,248913),(176339,3,248919),(176344,3,248925),(176349,3,248931),(176354,3,248937),(176359,3,248943),(176366,3,248953),(176371,3,248959),(176376,3,248965),(176381,3,248971),(176388,3,248981),(176393,3,248987),(176398,3,248993),(176403,3,248999),(176410,3,249009),(176417,3,249019),(176422,3,249025),(176427,3,249031),(176432,3,249037),(176437,3,249043),(176446,3,249058),(176451,3,249064),(176456,3,249070),(176461,3,249076),(176466,3,249082),(176471,3,249088),(176476,3,249094),(176481,3,249100),(176486,3,249106),(176493,3,249117),(176498,3,249123),(176505,3,249133),(176510,3,249139),(176515,3,249145),(176520,3,249151),(176527,3,249162),(176532,3,249168),(176537,3,249174),(176542,3,249180),(176544,3,249182),(176552,3,249192),(176557,3,249198),(176562,3,249204),(176567,3,249210),(176574,3,249220),(176581,3,249230),(176592,3,249248),(176597,3,249254),(176602,3,249260),(176609,3,249270),(176614,3,249276),(176619,3,249282),(176624,3,249288),(176629,3,249294),(176634,3,249300),(176639,3,249306),(176644,3,249312),(176649,3,249318),(176654,3,249324),(176659,3,249330),(176664,3,249336),(176669,3,249342),(176671,3,249344),(176679,3,249354),(176686,3,249364),(176693,3,249374),(176698,3,249380),(176703,3,249386),(176708,3,249392),(176715,3,249402),(176720,3,249408),(176725,3,249414),(176730,3,249420),(176737,3,249430),(176742,3,249436),(176747,3,249442),(176752,3,249448),(176757,3,249454),(176762,3,249460),(176769,3,249470),(176776,3,249480),(176781,3,249486),(176786,3,249492),(176793,3,249502),(176798,3,249508),(176811,3,249530),(176816,3,249536),(176821,3,249542),(176826,3,249548),(176831,3,249554),(176838,3,249564),(176843,3,249570),(176852,3,249585),(176859,3,249595),(176866,3,249605),(176871,3,249611),(176876,3,249617),(176881,3,249623),(176886,3,249629),(176891,3,249635),(176896,3,249641),(176901,3,249647),(176906,3,249653),(176911,3,249659),(176916,3,249665),(176921,3,249671),(176928,3,249681),(176933,3,249687),(176938,3,249693),(176943,3,249699),(176948,3,249705),(176953,3,249711),(176958,3,249717),(176962,3,249723),(176970,3,249734),(176975,3,249740),(176980,3,249746),(176985,3,249752),(176992,3,249763),(176997,3,249769),(177002,3,249775),(177007,3,249781),(177012,3,249787),(177017,3,249793),(177022,3,249799),(177027,3,249805),(177033,3,249811),(177034,3,249813),(177042,3,249823),(177046,3,249829),(177054,3,249840),(177063,3,249854),(177070,3,249864),(177075,3,249870),(177082,3,249880),(177087,3,249886),(177092,3,249892),(177097,3,249898),(177102,3,249904),(177109,3,249914),(177116,3,249924),(177121,3,249930),(177128,3,249940),(177133,3,249946),(177138,3,249952),(177143,3,249958),(177148,3,249964),(177153,3,249970),(177155,3,249972),(177165,3,249987),(177172,3,249997),(177177,3,250003),(177182,3,250009),(177189,3,250019),(177194,3,250025),(177199,3,250031),(177204,3,250037),(177209,3,250043),(177216,3,250054),(177221,3,250060),(177228,3,250070),(177233,3,250076),(177240,3,250086),(177247,3,250096),(177260,3,250118),(177265,3,250124),(177272,3,250134),(177277,3,250140),(177286,3,250154),(177293,3,250164),(177300,3,250174),(177307,3,250184),(177314,3,250194),(177319,3,250200),(177326,3,250210),(177331,3,250216),(177340,3,250230),(177345,3,250236),(177350,3,250242),(177357,3,250252),(177362,3,250258),(177367,3,250264),(177372,3,250270),(177381,3,250284),(177386,3,250290),(177393,3,250300),(177395,3,250302),(177403,3,250312),(177412,3,250326),(177419,3,250337),(177421,3,250339),(177429,3,250349),(177436,3,250359),(177445,3,250373),(177456,3,250391),(177461,3,250397),(177478,3,250427),(177485,3,250437),(177490,3,250443),(177497,3,250453),(177502,3,250459),(177515,3,250481),(177522,3,250491),(177529,3,250501),(177534,3,250507),(177538,3,250510),(177546,3,250523),(177553,3,250533),(177558,3,250539),(177565,3,250550),(177574,3,250564),(177579,3,250570),(177586,3,250580),(177591,3,250586),(177596,3,250592),(177601,3,250598),(177606,3,250604),(177611,3,250610),(177618,3,250620),(177623,3,250626),(177632,3,250640),(177637,3,250646),(177642,3,250652),(177647,3,250658),(177652,3,250664),(177659,3,250674),(177664,3,250680),(177673,3,250694),(177678,3,250700),(177683,3,250706),(177700,3,250736),(177705,3,250742),(177710,3,250748),(177715,3,250754),(177720,3,250760),(177725,3,250766),(177730,3,250772),(177735,3,250778),(177740,3,250784),(177745,3,250790),(177752,3,250800),(177757,3,250806),(177762,3,250812),(177767,3,250818),(177772,3,250824),(177777,3,250830),(177782,3,250836),(177787,3,250842),(177792,3,250848),(177797,3,250854),(177802,3,250860),(177809,3,250870),(177818,3,250884),(177823,3,250890),(177828,3,250896),(177833,3,250902),(177838,3,250908),(177845,3,250918),(177850,3,250924),(177855,3,250930),(177860,3,250936),(177865,3,250942),(177870,3,250948),(177875,3,250954),(177880,3,250960),(177887,3,250971),(177892,3,250977),(177897,3,250983),(177902,3,250989),(177907,3,250995),(177912,3,251001),(177917,3,251007),(177922,3,251013),(177927,3,251019),(177932,3,251025),(177937,3,251031),(177942,3,251037),(177947,3,251043),(177954,3,251053),(177959,3,251059),(177964,3,251065),(177969,3,251071),(177974,3,251077),(177979,3,251083),(177984,3,251089),(177989,3,251095),(177996,3,251105),(178001,3,251111),(178003,3,251113),(178011,3,251123),(178013,3,251125),(178023,3,251139),(178032,3,251153),(178037,3,251159),(178042,3,251165),(178047,3,251171),(178052,3,251177),(178057,3,251183),(178064,3,251193),(178069,3,251199),(178074,3,251205),(178081,3,251215),(178086,3,251221),(178093,3,251231),(178098,3,251237),(178103,3,251243),(178108,3,251249),(178113,3,251255),(178118,3,251261),(178123,3,251267),(178128,3,251273),(178135,3,251284),(178140,3,251290),(178145,3,251296),(178152,3,251306),(178157,3,251312),(178162,3,251318),(178167,3,251324),(178174,3,251334),(178179,3,251340),(178186,3,251350),(178191,3,251356),(178196,3,251362),(178203,3,251372),(178206,3,251375),(178213,3,251385),(178220,3,251395),(178227,3,251405),(178232,3,251411),(178237,3,251417),(178244,3,251427),(178249,3,251433),(178254,3,251439),(178259,3,251445),(178264,3,251451),(178269,3,251457),(178274,3,251463),(178281,3,251473),(178286,3,251479),(178291,3,251485),(178298,3,251495),(178307,3,251509),(178312,3,251515),(178317,3,251521),(178322,3,251527),(178327,3,251533),(178332,3,251539),(178337,3,251545),(178344,3,251555),(178349,3,251561),(178354,3,251567),(178359,3,251573),(178361,3,251575),(178371,3,251590),(178376,3,251596),(178381,3,251602),(178386,3,251608),(178393,3,251618),(178401,3,251628),(178406,3,251634),(178411,3,251640),(178416,3,251646),(178423,3,251656),(178428,3,251662),(178437,3,251676),(178444,3,251686),(178449,3,251692),(178454,3,251698),(178459,3,251704),(178464,3,251710),(178469,3,251716),(178474,3,251722),(178479,3,251728),(178484,3,251734),(178489,3,251740),(178494,3,251746),(178499,3,251752),(178504,3,251758),(178513,3,251773),(178518,3,251779),(178523,3,251785),(178528,3,251791),(178537,3,251805),(178544,3,251815),(178550,3,251821),(178557,3,251831),(178568,3,251849),(178575,3,251859),(178580,3,251865),(178589,3,251879),(178594,3,251885),(178599,3,251891),(178606,3,251901),(178611,3,251907),(178616,3,251913),(178621,3,251919),(178626,3,251925),(178631,3,251931),(178636,3,251937),(178641,3,251943),(178646,3,251949),(178651,3,251955),(178658,3,251965),(178667,3,251979),(178672,3,251985),(178677,3,251991),(178682,3,251997),(178687,3,252003),(178692,3,252009),(178697,3,252015),(178704,3,252025),(178711,3,252035),(178716,3,252041),(178723,3,252051),(178728,3,252057),(178733,3,252063),(178742,3,252077),(178747,3,252083),(178752,3,252089),(178757,3,252095),(178762,3,252101),(178767,3,252107),(178772,3,252113),(178779,3,252124),(178784,3,252130),(178789,3,252136),(178794,3,252142),(178796,3,252144),(178804,3,252154),(178809,3,252160),(178816,3,252170),(178821,3,252176),(178826,3,252182),(178831,3,252188),(178836,3,252194),(178841,3,252200),(178844,3,252203),(178853,3,252217),(178858,3,252223),(178863,3,252229),(178868,3,252235),(178873,3,252241),(178878,3,252247),(178883,3,252253),(178890,3,252263),(178895,3,252269),(178900,3,252275),(178905,3,252281),(178916,3,252299),(178921,3,252305),(178926,3,252311),(178931,3,252317),(178938,3,252327),(178943,3,252333),(178948,3,252339),(178953,3,252345),(178958,3,252351),(178967,3,252365),(178971,3,252371),(178977,3,252377),(178979,3,252379),(178987,3,252389),(178990,3,252391),(178999,3,252406),(179004,3,252412),(179009,3,252418),(179014,3,252424),(179019,3,252430),(179028,3,252444),(179033,3,252450),(179038,3,252456),(179043,3,252462),(179048,3,252468),(179053,3,252474),(179058,3,252480),(179065,3,252490),(179070,3,252496),(179075,3,252502),(179080,3,252508),(179085,3,252514),(179096,3,252532),(179098,3,252534),(179108,3,252549),(179113,3,252555),(179118,3,252561),(179123,3,252567),(179128,3,252573),(179139,3,252591),(179144,3,252597),(179149,3,252603),(179154,3,252609),(179159,3,252615),(179166,3,252625),(179171,3,252631),(179176,3,252637),(179183,3,252647),(179194,3,252665),(179201,3,252675),(179206,3,252681),(179211,3,252687),(179218,3,252697),(179223,3,252703),(179225,3,252705),(179233,3,252715),(179242,3,252729),(179247,3,252735),(179250,3,252738),(179259,3,252752),(179264,3,252758),(179269,3,252764),(179276,3,252774),(179281,3,252780),(179286,3,252786),(179291,3,252792),(179302,3,252810),(179307,3,252816),(179312,3,252822),(179317,3,252828),(179322,3,252834),(179327,3,252840),(179332,3,252846),(179337,3,252852),(179342,3,252858),(179347,3,252864),(179352,3,252870),(179361,3,252884),(179366,3,252890),(179371,3,252896),(179376,3,252902),(179381,3,252908),(179386,3,252914),(179391,3,252920),(179400,3,252935),(179405,3,252941),(179414,3,252955),(179423,3,252969),(179428,3,252975),(179433,3,252981),(179440,3,252991),(179445,3,252997),(179450,3,253003),(179455,3,253009),(179460,3,253015),(179467,3,253025),(179472,3,253031),(179477,3,253037),(179482,3,253043),(179489,3,253053),(179496,3,253063),(179501,3,253069),(179507,3,253079),(179513,3,253085),(179520,3,253095),(179525,3,253101),(179530,3,253107),(179535,3,253113),(179540,3,253119),(179547,3,253129),(179552,3,253135),(179557,3,253141),(179562,3,253147),(179567,3,253153),(179572,3,253159),(179577,3,253165),(179582,3,253171),(179587,3,253177),(179592,3,253183),(179597,3,253189),(179604,3,253199),(179609,3,253205),(179616,3,253215),(179621,3,253221),(179626,3,253227),(179631,3,253233),(179636,3,253239),(179643,3,253249),(179648,3,253255),(179655,3,253265),(179660,3,253271),(179665,3,253277),(179672,3,253287),(179677,3,253293),(179682,3,253299),(179687,3,253305),(179696,3,253320),(179701,3,253326),(179706,3,253332),(179711,3,253338),(179716,3,253344),(179721,3,253350),(179728,3,253360),(179733,3,253366),(179738,3,253372),(179743,3,253378),(179750,3,253388),(179755,3,253394),(179761,3,253405),(179767,3,253411),(179772,3,253417),(179777,3,253423),(179786,3,253437),(179791,3,253443),(179796,3,253449),(179801,3,253455),(179806,3,253461),(179811,3,253467),(179816,3,253473),(179821,3,253479),(179826,3,253485),(179835,3,253499),(179840,3,253505),(179845,3,253511),(179850,3,253517),(179855,3,253523),(179860,3,253529),(179867,3,253539),(179872,3,253545),(179879,3,253555),(179890,3,253573),(179895,3,253579),(179900,3,253585),(179905,3,253591),(179910,3,253597),(179915,3,253603),(179920,3,253609),(179925,3,253615),(179932,3,253625),(179939,3,253636),(179944,3,253642),(179949,3,253648),(179956,3,253658),(179961,3,253664),(179966,3,253670),(179971,3,253676),(179976,3,253682),(179987,3,253700),(179992,3,253706),(179997,3,253712),(180002,3,253718),(180007,3,253724),(180012,3,253730),(180019,3,253741),(180024,3,253747),(180033,3,253761),(180038,3,253767),(180043,3,253773),(180048,3,253779),(180055,3,253790),(180062,3,253800),(180067,3,253806),(180078,3,253824),(180087,3,253838),(180092,3,253844),(180099,3,253855),(180104,3,253861),(180109,3,253867),(180116,3,253877),(180121,3,253883),(180126,3,253889),(180133,3,253899),(180138,3,253905),(180145,3,253915),(180150,3,253921),(180157,3,253931),(180162,3,253937),(180167,3,253943),(180172,3,253949),(180177,3,253955),(180182,3,253961),(180187,3,253967),(180194,3,253977),(180201,3,253987),(180208,3,253997),(180213,3,254003),(180218,3,254009),(180223,3,254015),(180234,3,254034),(180239,3,254040),(180246,3,254050),(180251,3,254056),(180256,3,254062),(180261,3,254068),(180266,3,254074),(180271,3,254080),(180276,3,254086),(180281,3,254092),(180286,3,254098),(180291,3,254104),(180296,3,254110),(180301,3,254116),(180308,3,254126),(180313,3,254132),(180318,3,254138),(180327,3,254152),(180332,3,254158),(180337,3,254164),(180342,3,254170),(180351,3,254184),(180356,3,254190),(180359,3,254192),(180366,3,254202),(180371,3,254208),(180378,3,254218),(180383,3,254224),(180385,3,254226),(180393,3,254236),(180400,3,254246),(180407,3,254257),(180414,3,254268),(180423,3,254283),(180428,3,254289),(180433,3,254295),(180442,3,254309),(180447,3,254315),(180454,3,254325),(180459,3,254331),(180466,3,254341),(180473,3,254351),(180478,3,254357),(180483,3,254363),(180488,3,254369),(180497,3,254383),(180504,3,254393),(180509,3,254399),(180516,3,254409),(180521,3,254415),(180526,3,254421),(180533,3,254431),(180540,3,254441),(180545,3,254447),(180550,3,254453),(180555,3,254459),(180560,3,254465),(180564,3,254471),(180570,3,254477),(180575,3,254483),(180582,3,254493),(180586,3,254499),(180592,3,254505),(180597,3,254511),(180602,3,254517),(180611,3,254532),(180616,3,254538),(180621,3,254544),(180626,3,254550),(180631,3,254556),(180636,3,254562),(180641,3,254568),(180646,3,254574),(180651,3,254580),(180656,3,254586),(180661,3,254592),(180666,3,254598),(180671,3,254604),(180676,3,254610),(180681,3,254616),(180686,3,254622),(180691,3,254628),(180696,3,254634),(180701,3,254640),(180706,3,254646),(180711,3,254652),(180720,3,254667),(180725,3,254673),(180732,3,254683),(180737,3,254689),(180742,3,254695),(180747,3,254701),(180752,3,254707),(180757,3,254713),(180762,3,254719),(180767,3,254725),(180772,3,254731),(180777,3,254737),(180784,3,254743),(180783,3,254744),(180788,3,254748),(180801,3,254770),(180806,3,254776),(180813,3,254786),(180818,3,254792),(180823,3,254798),(180828,3,254804),(180833,3,254810),(180838,3,254816),(180843,3,254822),(180852,3,254836),(180857,3,254842),(180866,3,254856),(180871,3,254862),(180876,3,254868),(180881,3,254874),(180886,3,254880),(180891,3,254886),(180896,3,254892),(180901,3,254898),(180906,3,254904),(180910,3,254910),(180918,3,254920),(180923,3,254926),(180928,3,254932),(180933,3,254938),(180938,3,254944),(180943,3,254950),(180948,3,254956),(180955,3,254966),(180960,3,254972),(180965,3,254978),(180970,3,254984),(180975,3,254990),(180980,3,254996),(180985,3,255002),(180990,3,255008),(180997,3,255018),(181002,3,255024),(181011,3,255038),(181020,3,255052),(181027,3,255062),(181034,3,255072),(181039,3,255078),(181046,3,255088),(181055,3,255102),(181060,3,255108),(181067,3,255119),(181072,3,255125),(181083,3,255143),(181088,3,255149),(181093,3,255155),(181106,3,255177),(181111,3,255183),(181118,3,255193),(181123,3,255199),(181134,3,255217),(181139,3,255223),(181144,3,255229),(181149,3,255235),(181154,3,255241),(181161,3,255251),(181166,3,255258),(181169,3,255260),(181178,3,255274),(181185,3,255284),(181192,3,255294),(181197,3,255300),(181202,3,255306),(181209,3,255316),(181215,3,255322),(181220,3,255328),(181225,3,255334),(181234,3,255348),(181245,3,255366),(181250,3,255372),(181255,3,255378),(181260,3,255384),(181267,3,255394),(181272,3,255400),(181277,3,255406),(181282,3,255412),(181285,3,255416),(181292,3,255424),(181299,3,255434),(181304,3,255440),(181309,3,255446),(181316,3,255456),(181321,3,255462),(181326,3,255468),(181333,3,255478),(181338,3,255484),(181343,3,255490),(181354,3,255508),(181359,3,255514),(181364,3,255520),(181369,3,255526),(181374,3,255532),(181379,3,255538),(181384,3,255544),(181389,3,255550),(181394,3,255556),(181401,3,255567),(181408,3,255577),(181415,3,255587),(181420,3,255593),(181425,3,255599),(181432,3,255610),(181437,3,255616),(181442,3,255622),(181447,3,255628),(181454,3,255638),(181459,3,255644),(181466,3,255654),(181477,3,255672),(181482,3,255678),(181487,3,255684),(181492,3,255690),(181497,3,255696),(181502,3,255702),(181507,3,255708),(181516,3,255722),(181521,3,255728),(181526,3,255734),(181533,3,255744),(181538,3,255750),(181543,3,255756),(181548,3,255762),(181551,3,255764),(181553,3,255766),(181565,3,255785),(181570,3,255791),(181575,3,255797),(181580,3,255803),(181587,3,255813),(181592,3,255819),(181597,3,255825),(181602,3,255831),(181607,3,255837),(181612,3,255843),(181617,3,255849),(181624,3,255859),(181629,3,255865),(181634,3,255871),(181641,3,255881),(181650,3,255896),(181655,3,255902),(181664,3,255916),(181669,3,255922),(181676,3,255932),(181681,3,255938),(181686,3,255944),(181693,3,255954),(181698,3,255960),(181703,3,255966),(181712,3,255980),(181717,3,255986),(181722,3,255992),(181727,3,255998),(181732,3,256004),(181737,3,256010),(181742,3,256016),(181747,3,256022),(181754,3,256032),(181759,3,256038),(181764,3,256044),(181769,3,256050),(181774,3,256056),(181779,3,256062),(181784,3,256068),(181789,3,256074),(181796,3,256084),(181803,3,256095),(181808,3,256101),(181815,3,256111),(181820,3,256117),(181829,3,256131),(181834,3,256137),(181839,3,256143),(181844,3,256149),(181849,3,256155),(181854,3,256161),(181859,3,256167),(181864,3,256173),(181869,3,256179),(181874,3,256185),(181879,3,256191),(181884,3,256197),(181889,3,256203),(181894,3,256209),(181899,3,256215),(181904,3,256221),(181909,3,256227),(181911,3,256229),(181916,3,256237),(181924,3,256245),(181929,3,256251),(181936,3,256262),(181943,3,256272),(181948,3,256278),(181953,3,256284),(181964,3,256302),(181971,3,256313),(181976,3,256319),(181981,3,256325),(181988,3,256335),(181993,3,256341),(181998,3,256347),(182003,3,256353),(182008,3,256359),(182013,3,256365),(182018,3,256371),(182023,3,256377),(182028,3,256383),(182039,3,256402),(182044,3,256408),(182049,3,256414),(182054,3,256420),(182059,3,256426),(182064,3,256432),(182069,3,256438),(182074,3,256444),(182079,3,256450),(182084,3,256456),(182093,3,256470),(182098,3,256476),(182103,3,256482),(182108,3,256488),(182113,3,256494),(182118,3,256500),(182123,3,256506),(182128,3,256512),(182133,3,256518),(182138,3,256524),(182143,3,256530),(182148,3,256536),(182153,3,256542),(182158,3,256548),(182163,3,256554),(182168,3,256560),(182173,3,256566),(182178,3,256572),(182185,3,256583),(182190,3,256589),(182195,3,256595),(182200,3,256601),(182205,3,256607),(182210,3,256613),(182215,3,256619),(182220,3,256625),(182225,3,256631),(182234,3,256646),(182243,3,256660),(182250,3,256670),(182255,3,256676),(182260,3,256682),(182267,3,256692),(182276,3,256706),(182281,3,256712),(182288,3,256722),(182293,3,256728),(182298,3,256734),(182307,3,256748),(182312,3,256754),(182317,3,256760),(182322,3,256766),(182327,3,256772),(182334,3,256783),(182339,3,256789),(182344,3,256795),(182349,3,256801),(182354,3,256807),(182361,3,256817),(182368,3,256827),(182373,3,256833),(182378,3,256839),(182383,3,256845),(182392,3,256860),(182397,3,256866),(182402,3,256872),(182411,3,256886),(182416,3,256892),(182421,3,256898),(182425,3,256904),(182431,3,256910),(182444,3,256932),(182451,3,256942),(182453,3,256944),(182461,3,256954),(182466,3,256960),(182473,3,256970),(182478,3,256976),(182483,3,256982),(182490,3,256992),(182495,3,256998),(182500,3,257004),(182505,3,257010),(182510,3,257016),(182517,3,257026),(182522,3,257032),(182527,3,257038),(182532,3,257044),(182537,3,257050),(182542,3,257056),(182547,3,257062),(182552,3,257068),(182557,3,257074),(182559,3,257076),(182561,3,257078),(182572,3,257092),(182579,3,257103),(182584,3,257109),(182589,3,257115),(182594,3,257121),(182601,3,257131),(182606,3,257137),(182611,3,257143),(182616,3,257149),(182623,3,257160),(182632,3,257174),(182637,3,257180),(182642,3,257186),(182651,3,257200),(182656,3,257206),(182663,3,257216),(182668,3,257222),(182675,3,257232),(182680,3,257238),(182685,3,257244),(182690,3,257250),(182695,3,257256),(182700,3,257262),(182705,3,257268),(182712,3,257279),(182723,3,257297),(182728,3,257303),(182733,3,257309),(182738,3,257315),(182745,3,257326),(182752,3,257336),(182757,3,257342),(182762,3,257348),(182767,3,257354),(182772,3,257360),(182777,3,257366),(182786,3,257380),(182791,3,257386),(182798,3,257396),(182803,3,257402),(182808,3,257408),(182813,3,257414),(182818,3,257420),(182825,3,257430),(182832,3,257440),(182837,3,257446),(182844,3,257456),(182849,3,257462),(182854,3,257468),(182859,3,257474),(182866,3,257484),(182871,3,257490),(182876,3,257496),(182881,3,257502),(182888,3,257512),(182893,3,257518),(182898,3,257524),(182903,3,257530),(182908,3,257536),(182913,3,257542),(182918,3,257548),(182923,3,257554),(182928,3,257560),(182933,3,257566),(182938,3,257572),(182943,3,257578),(182948,3,257584),(182953,3,257590),(182958,3,257596),(182963,3,257602),(182970,3,257612),(182975,3,257618),(182980,3,257624),(182985,3,257630),(182990,3,257636),(182995,3,257642),(183002,3,257652),(183009,3,257662),(183014,3,257668),(183019,3,257674),(183024,3,257680),(183029,3,257686),(183034,3,257692),(183039,3,257698),(183046,3,257708),(183051,3,257714),(183056,3,257720),(183061,3,257726),(183066,3,257732),(183071,3,257738),(183076,3,257744),(183083,3,257754),(183088,3,257760),(183093,3,257766),(183100,3,257776),(183105,3,257782),(183110,3,257788),(183115,3,257794),(183120,3,257800),(183125,3,257806),(183132,3,257816),(183139,3,257826),(183144,3,257832),(183149,3,257838),(183154,3,257844),(183159,3,257850),(183164,3,257856),(183169,3,257862),(183174,3,257868),(183179,3,257874),(183184,3,257880),(183189,3,257886),(183196,3,257896),(183201,3,257902),(183206,3,257908),(183211,3,257914),(183216,3,257920),(183222,3,257926),(183223,3,257927),(183231,3,257938),(183236,3,257944),(183243,3,257955),(183248,3,257961),(183253,3,257967),(183258,3,257973),(183263,3,257979),(183268,3,257985),(183273,3,257991),(183277,3,257997),(183283,3,258003),(183288,3,258009),(183293,3,258015),(183298,3,258021),(183303,3,258027),(183308,3,258033),(183313,3,258039),(183318,3,258045),(183323,3,258051),(183328,3,258057),(183333,3,258063),(183340,3,258073),(183345,3,258079),(183350,3,258085),(183355,3,258091),(183360,3,258097),(183365,3,258103),(183372,3,258113),(183379,3,258123),(183384,3,258129),(183389,3,258135),(183394,3,258141),(183399,3,258147),(183404,3,258153),(183409,3,258159),(183416,3,258169),(183421,3,258175),(183428,3,258185),(183433,3,258191),(183440,3,258201),(183445,3,258207),(183452,3,258217),(183461,3,258231),(183474,3,258253),(183479,3,258259),(183488,3,258273),(183497,3,258287),(183502,3,258293),(183507,3,258299),(183512,3,258305),(183517,3,258311),(183522,3,258317),(183527,3,258323),(183532,3,258329),(183537,3,258335),(183542,3,258341),(183547,3,258347),(183554,3,258357),(183559,3,258363),(183570,3,258381),(183575,3,258387),(183580,3,258393),(183585,3,258399),(183594,3,258414),(183599,3,258420),(183604,3,258426),(183617,3,258448),(183622,3,258454),(183624,3,258456),(183634,3,258471),(183639,3,258477),(183648,3,258491),(183653,3,258497),(183658,3,258503),(183665,3,258513),(183670,3,258519),(183675,3,258525),(183680,3,258531),(183685,3,258537),(183690,3,258543),(183695,3,258549),(183700,3,258555),(183707,3,258565),(183712,3,258571),(183719,3,258581),(183724,3,258587),(183729,3,258593),(183734,3,258599),(183739,3,258605),(183744,3,258611),(183749,3,258617),(183754,3,258623),(183759,3,258629),(183764,3,258635),(183769,3,258641),(183774,3,258647),(183779,3,258653),(183784,3,258659),(183789,3,258665),(183794,3,258671),(183799,3,258677),(183806,3,258687),(183811,3,258693),(183816,3,258699),(183821,3,258705),(183826,3,258711),(183831,3,258717),(183836,3,258723),(183841,3,258729),(183846,3,258735),(183851,3,258741),(183860,3,258755),(183865,3,258761),(183870,3,258767),(183875,3,258773),(183880,3,258779),(183885,3,258785),(183894,3,258799),(183901,3,258809),(183906,3,258815),(183911,3,258821),(183918,3,258831),(183921,3,258833),(183928,3,258843),(183933,3,258849),(183940,3,258860),(183945,3,258866),(183950,3,258872),(183955,3,258878),(183960,3,258884),(183965,3,258890),(183972,3,258901),(183977,3,258907),(183982,3,258913),(183987,3,258919),(183992,3,258925),(183999,3,258935),(184004,3,258941),(184009,3,258947),(184014,3,258953),(184019,3,258959),(184024,3,258965),(184029,3,258971),(184034,3,258977),(184039,3,258983),(184048,3,258997),(184057,3,259011),(184062,3,259017),(184067,3,259023),(184074,3,259033),(184079,3,259039),(184086,3,259049),(184091,3,259055),(184098,3,259065),(184103,3,259071),(184108,3,259077),(184113,3,259083),(184120,3,259093),(184125,3,259099),(184130,3,259105),(184135,3,259111),(184140,3,259117),(184145,3,259123),(184150,3,259129),(184155,3,259135),(184160,3,259141),(184165,3,259147),(184172,3,259157),(184177,3,259163),(184182,3,259169),(184187,3,259175),(184192,3,259181),(184197,3,259187),(184202,3,259193),(184207,3,259199),(184214,3,259209),(184221,3,259219),(184223,3,259221),(184233,3,259236),(184238,3,259242),(184251,3,259264),(184260,3,259278),(184265,3,259284),(184274,3,259298),(184283,3,259312),(184288,3,259318),(184295,3,259328),(184297,3,259330),(184303,3,259336),(184312,3,259351),(184319,3,259361),(184324,3,259367),(184329,3,259373),(184334,3,259379),(184339,3,259385),(184358,3,259419),(184369,3,259437),(184376,3,259448),(184381,3,259454),(184386,3,259460),(184391,3,259466),(184396,3,259472),(184405,3,259486),(184410,3,259492),(184415,3,259498),(184420,3,259504),(184425,3,259510),(184430,3,259516),(184435,3,259522),(184444,3,259536),(184449,3,259542),(184466,3,259572),(184471,3,259578),(184478,3,259589),(184489,3,259607),(184494,3,259613),(184499,3,259619),(184510,3,259637),(184519,3,259651),(184524,3,259657),(184529,3,259663),(184534,3,259669),(184539,3,259675),(184544,3,259681),(184551,3,259691),(184556,3,259697),(184561,3,259703),(184566,3,259709),(184571,3,259715),(184580,3,259729),(184585,3,259735),(184590,3,259741),(184595,3,259747),(184602,3,259757),(184607,3,259763),(184612,3,259769),(184617,3,259775),(184622,3,259781),(184627,3,259787),(184632,3,259793),(184637,3,259799),(184642,3,259805),(184647,3,259811),(184652,3,259817),(184657,3,259823),(184662,3,259829),(184667,3,259835),(184672,3,259841),(184677,3,259847),(184686,3,259861),(184691,3,259867),(184696,3,259873),(184701,3,259879),(184716,3,259905),(184723,3,259915),(184728,3,259921),(184733,3,259927),(184738,3,259933),(184743,3,259939),(184750,3,259949),(184755,3,259955),(184760,3,259961),(184763,3,259963),(184769,3,259973),(184775,3,259979),(184782,3,259990),(184791,3,260004),(184796,3,260010),(184801,3,260016),(184808,3,260026),(184815,3,260036),(184820,3,260042),(184827,3,260052),(184832,3,260058),(184839,3,260069),(184844,3,260075),(184851,3,260085),(184856,3,260091),(184861,3,260097),(184866,3,260103),(184877,3,260121),(184890,3,260143),(184903,3,260165),(184908,3,260171),(184915,3,260181),(184924,3,260195),(184929,3,260201),(184940,3,260219),(184947,3,260230),(184954,3,260241),(184959,3,260247),(184964,3,260253),(184969,3,260259),(184974,3,260265),(185091,3,260495),(185122,3,260553),(185133,3,260571),(185138,3,260577),(185143,3,260583),(185146,3,260586),(185157,3,260605),(185162,3,260611),(185167,3,260617),(185172,3,260623),(185179,3,260633),(185186,3,260644),(185191,3,260650),(185196,3,260656),(185199,3,260658),(185208,3,260672),(185215,3,260682),(185222,3,260692),(185227,3,260698),(185232,3,260704),(185239,3,260714),(185244,3,260720),(185249,3,260726),(185256,3,260736),(185261,3,260742),(185266,3,260748),(185271,3,260754),(185278,3,260764),(185283,3,260770),(185288,3,260776),(185293,3,260782),(185298,3,260788),(185305,3,260798),(185310,3,260804),(185315,3,260810),(185322,3,260820),(185327,3,260826),(185332,3,260832),(185341,3,260846),(185346,3,260852),(185351,3,260858),(185356,3,260864),(185361,3,260870),(185366,3,260876),(185371,3,260882),(185378,3,260892),(185387,3,260906),(185392,3,260912),(185397,3,260918),(185402,3,260924),(185409,3,260934),(185418,3,260948),(185423,3,260954),(185428,3,260960),(185433,3,260966),(185438,3,260972),(185443,3,260978),(185448,3,260984),(185453,3,260990),(185458,3,260996),(185463,3,261002),(185468,3,261008),(185473,3,261014),(185478,3,261020),(185483,3,261026),(185490,3,261036),(185495,3,261042),(185500,3,261048),(185505,3,261054),(185510,3,261060),(185517,3,261071),(185522,3,261077),(185529,3,261088),(185534,3,261094),(185539,3,261100),(185544,3,261106),(185549,3,261112),(185554,3,261118),(185561,3,261128),(185566,3,261134),(185573,3,261144),(185578,3,261150),(185583,3,261156),(185590,3,261166),(185595,3,261172),(185598,3,261174),(185605,3,261184),(185610,3,261190),(185615,3,261196),(185620,3,261202),(185625,3,261208),(185629,3,261211),(185639,3,261228),(185644,3,261234),(185647,3,261236),(185653,3,261246),(185663,3,261260),(185670,3,261270),(185675,3,261276),(185680,3,261282),(185687,3,261292),(185696,3,261306),(185701,3,261312),(185708,3,261322),(185713,3,261328),(185718,3,261334),(185723,3,261340),(185728,3,261346),(185735,3,261356),(185740,3,261362),(185749,3,261376),(185754,3,261382),(185757,3,261384),(185764,3,261394),(185771,3,261404),(185778,3,261414),(185785,3,261425),(185792,3,261435),(185797,3,261441),(185804,3,261452),(185809,3,261455),(185808,3,261456),(185821,3,261475),(185826,3,261481),(185837,3,261499),(185844,3,261509),(185849,3,261515),(185858,3,261529),(185863,3,261535),(185868,3,261541),(185873,3,261547),(185878,3,261553),(185883,3,261559),(185888,3,261565),(185895,3,261575),(185902,3,261585),(185907,3,261591),(185914,3,261601),(185921,3,261611),(185926,3,261617),(185933,3,261627),(185940,3,261637),(185949,3,261651),(185954,3,261657),(185965,3,261675),(185970,3,261681),(185975,3,261687),(185986,3,261705),(185991,3,261711),(186006,3,261737),(186011,3,261743),(186016,3,261749),(186021,3,261755),(186032,3,261774),(186037,3,261780),(186042,3,261786),(186047,3,261792),(186052,3,261798),(186057,3,261804),(186062,3,261810),(186067,3,261816),(186072,3,261822),(186077,3,261828),(186084,3,261839),(186087,3,261841),(186096,3,261856),(186101,3,261862),(186110,3,261876),(186115,3,261882),(186120,3,261888),(186125,3,261894),(186132,3,261904),(186137,3,261910),(186146,3,261924),(186153,3,261934),(186158,3,261940),(186167,3,261954),(186172,3,261960),(186177,3,261966),(186182,3,261972),(186187,3,261978),(186192,3,261984),(186197,3,261990),(186204,3,262000),(186211,3,262010),(186218,3,262020),(186223,3,262026),(186228,3,262032),(186237,3,262046),(186242,3,262052),(186247,3,262058),(186254,3,262068),(186259,3,262074),(186266,3,262084),(186271,3,262090),(186276,3,262096),(186281,3,262102),(186285,3,262106),(186291,3,262115),(186300,3,262129),(186305,3,262135),(186312,3,262146),(186316,3,262148),(186324,3,262162),(186329,3,262168),(186336,3,262178),(186341,3,262184),(186346,3,262190),(186351,3,262196),(186356,3,262202),(186361,3,262208),(186366,3,262214),(186371,3,262220),(186376,3,262226),(186383,3,262236),(186388,3,262242),(186393,3,262248),(186398,3,262254),(186403,3,262260),(186412,3,262274),(186417,3,262280),(186422,3,262286),(186427,3,262292),(186432,3,262298),(186437,3,262304),(186442,3,262310),(186453,3,262328),(186458,3,262334),(186463,3,262340),(186468,3,262346),(186473,3,262352),(186482,3,262366),(186487,3,262372),(186492,3,262378),(186497,3,262384),(186502,3,262390),(186507,3,262396),(186512,3,262402),(186519,3,262412),(186524,3,262418),(186529,3,262424),(186536,3,262434),(186541,3,262440),(186548,3,262450),(186553,3,262456),(186558,3,262462),(186565,3,262472),(186572,3,262482),(186577,3,262488),(186582,3,262494),(186587,3,262500),(186596,3,262514),(186603,3,262525),(186606,3,262528),(186615,3,262542),(186620,3,262548),(186625,3,262554),(186630,3,262560),(186635,3,262566),(186640,3,262572),(186645,3,262578),(186658,3,262601),(186665,3,262611),(186670,3,262617),(186675,3,262623),(186682,3,262633),(186693,3,262651),(186698,3,262657),(186703,3,262663),(186708,3,262669),(186713,3,262675),(186718,3,262681),(186727,3,262695),(186734,3,262705),(186739,3,262711),(186744,3,262717),(186749,3,262723),(186770,3,262761),(186775,3,262767),(186780,3,262773),(186787,3,262783),(186792,3,262789),(186795,3,262791),(186808,3,262813),(186813,3,262819),(186818,3,262825),(186823,3,262831),(186828,3,262837),(186837,3,262852),(186842,3,262858),(186847,3,262864),(186852,3,262870),(186857,3,262876),(186862,3,262882),(186867,3,262888),(186872,3,262894),(186877,3,262900),(186882,3,262906),(186887,3,262912),(186891,3,262922),(186901,3,262934),(186906,3,262940),(186911,3,262946),(186916,3,262952),(186923,3,262962),(186930,3,262972),(186935,3,262978),(186940,3,262984),(186945,3,262990),(186950,3,262996),(186955,3,263002),(186960,3,263008),(186965,3,263014),(186970,3,263020),(186975,3,263026),(186980,3,263032),(186985,3,263038),(186992,3,263048),(186997,3,263054),(187004,3,263064),(187011,3,263074),(187018,3,263084),(187023,3,263090),(187028,3,263096),(187033,3,263102),(187040,3,263113),(187045,3,263119),(187052,3,263130),(187057,3,263136),(187062,3,263142),(187067,3,263148),(187074,3,263158),(187079,3,263164),(187084,3,263170),(187089,3,263176),(187094,3,263182),(187099,3,263188),(187104,3,263194),(187109,3,263200),(187114,3,263206),(187121,3,263217),(187125,3,263220),(187133,3,263234),(187140,3,263244),(187145,3,263250),(187152,3,263261),(187157,3,263267),(187164,3,263277),(187169,3,263283),(187174,3,263289),(187181,3,263299),(187186,3,263305),(187191,3,263311),(187198,3,263321),(187203,3,263327),(187208,3,263333),(187213,3,263339),(187218,3,263345),(187223,3,263351),(187228,3,263357),(187233,3,263363),(187240,3,263373),(187247,3,263384),(187254,3,263395),(187259,3,263401),(187264,3,263407),(187269,3,263418),(187276,3,263424),(187283,3,263435),(187288,3,263441),(187295,3,263451),(187300,3,263457),(187305,3,263463),(187310,3,263469),(187327,3,263499),(187329,3,263501),(187343,3,263523),(187358,3,263549),(187368,3,263563),(187369,3,263564),(187379,3,263579),(187384,3,263585),(187391,3,263595),(187398,3,263605),(187403,3,263611),(187408,3,263617),(187413,3,263623),(187424,3,263641),(187433,3,263655),(187438,3,263661),(187445,3,263671),(187452,3,263681),(187457,3,263687),(187462,3,263693),(187467,3,263699),(187472,3,263705),(187479,3,263715),(187488,3,263729),(187495,3,263739),(187500,3,263745),(187509,3,263759),(187514,3,263765),(187521,3,263775),(187526,3,263781),(187531,3,263787),(187536,3,263793),(187543,3,263803),(187548,3,263809),(187553,3,263815),(187558,3,263821),(187563,3,263827),(187570,3,263837),(187575,3,263843),(187580,3,263849),(187585,3,263855),(187590,3,263861),(187599,3,263876),(187606,3,263886),(187611,3,263892),(187618,3,263902),(187623,3,263908),(187630,3,263918),(187635,3,263924),(187642,3,263935),(187647,3,263941),(187652,3,263947),(187661,3,263961),(187668,3,263971),(187673,3,263977),(187678,3,263983),(187685,3,263993),(187690,3,263999),(187695,3,264005),(187700,3,264011),(187707,3,264021),(187712,3,264027),(187719,3,264037),(187724,3,264043),(187729,3,264049),(187734,3,264055),(187739,3,264061),(187746,3,264071),(187751,3,264077),(187758,3,264088),(187762,3,264094),(187770,3,264105),(187775,3,264111),(187780,3,264117),(187785,3,264123),(187790,3,264129),(187795,3,264135),(187800,3,264141),(187805,3,264147),(187810,3,264153),(187815,3,264159),(187820,3,264165),(187825,3,264171),(187832,3,264181),(187837,3,264187),(187842,3,264193),(187849,3,264203),(187858,3,264217),(187863,3,264223),(187868,3,264229),(187873,3,264235),(187882,3,264249),(187887,3,264255),(187892,3,264261),(187897,3,264267),(187902,3,264273),(187907,3,264279),(187912,3,264285),(187917,3,264291),(187922,3,264297),(187931,3,264311),(187936,3,264317),(187941,3,264323),(187945,3,264329),(187953,3,264340),(187958,3,264346),(187965,3,264357),(187968,3,264359),(187975,3,264369),(187982,3,264379),(187987,3,264385),(187992,3,264391),(187997,3,264397),(188002,3,264403),(188009,3,264413),(188014,3,264419),(188019,3,264425),(188032,3,264447),(188039,3,264458),(188044,3,264464),(188049,3,264470),(188060,3,264489),(188067,3,264499),(188078,3,264517),(188089,3,264535),(188094,3,264541),(188102,3,264555),(188108,3,264561),(188113,3,264567),(188126,3,264589),(188131,3,264595),(188138,3,264605),(188157,3,264639),(188210,3,264741),(188217,3,264751),(188222,3,264757),(188229,3,264767),(188238,3,264781),(188245,3,264791),(188252,3,264801),(188299,3,264891),(188310,3,264909),(188392,3,265071),(188421,3,265125),(188439,3,265155),(188448,3,265169),(188459,3,265187),(188478,3,265221),(188483,3,265227),(188504,3,265265),(188517,3,265287),(188524,3,265297),(188529,3,265303),(188536,3,265313),(188541,3,265319),(188546,3,265325),(188563,3,265355),(188574,3,265373),(188576,3,265375),(188583,3,265385),(188600,3,265423),(188610,3,265433),(188615,3,265443),(188618,3,265445),(188635,3,265471),(188646,3,265489),(188655,3,265503),(188666,3,265521),(188671,3,265527),(188684,3,265549),(188691,3,265559),(188738,3,265649),(188744,3,265659),(188758,3,265681),(188778,3,265719),(188790,3,265737),(188799,3,265751),(188804,3,265757),(188820,3,265787),(188834,3,265809),(188867,3,265871),(188876,3,265885),(188883,3,265895),(188888,3,265901),(188893,3,265907),(188898,3,265913),(188917,3,265947),(188922,3,265953),(188927,3,265959),(188932,3,265965),(188939,3,265975),(188952,3,265997),(188957,3,266003),(188962,3,266009),(188967,3,266015),(188972,3,266021),(188979,3,266031),(188984,3,266037),(188991,3,266047),(188996,3,266053),(189001,3,266059),(189012,3,266077),(189019,3,266087),(189026,3,266098),(189033,3,266108),(189040,3,266118),(189045,3,266124),(189050,3,266130),(189055,3,266136),(189060,3,266142),(189067,3,266152),(189072,3,266158),(189077,3,266164),(189084,3,266174),(189091,3,266184),(189098,3,266194),(189103,3,266200),(189108,3,266206),(189113,3,266212),(189118,3,266218),(189123,3,266224),(189136,3,266246),(189147,3,266264),(189152,3,266270),(189157,3,266276),(189162,3,266282),(189167,3,266288),(189172,3,266294),(189181,3,266308),(189186,3,266313),(189190,3,266325),(189200,3,266335),(189207,3,266346),(189212,3,266352),(189217,3,266358),(189222,3,266364),(189227,3,266370),(189232,3,266376),(189237,3,266382),(189244,3,266392),(189249,3,266398),(189254,3,266404),(189261,3,266414),(189266,3,266420),(189271,3,266426),(189278,3,266436),(189283,3,266442),(189288,3,266448),(189290,3,266450),(189298,3,266460),(189305,3,266471),(189307,3,266473),(189317,3,266488),(189322,3,266494),(189327,3,266500),(189336,3,266514),(189343,3,266524),(189348,3,266530),(189355,3,266540),(189362,3,266550),(189367,3,266556),(189372,3,266562),(189377,3,266568),(189382,3,266574),(189387,3,266580),(189392,3,266586),(189397,3,266592),(189402,3,266598),(189407,3,266604),(189414,3,266614),(189421,3,266624),(189432,3,266642),(189439,3,266652),(189446,3,266662),(189451,3,266668),(189458,3,266678),(189463,3,266684),(189476,3,266707),(189481,3,266713),(189490,3,266727),(189495,3,266733),(189500,3,266739),(189505,3,266745),(189510,3,266751),(189515,3,266757),(189520,3,266763),(189525,3,266769),(189530,3,266775),(189535,3,266781),(189546,3,266799),(189551,3,266805),(189556,3,266811),(189561,3,266817),(189566,3,266823),(189571,3,266829),(189576,3,266835),(189585,3,266849),(189594,3,266863),(189603,3,266877),(189610,3,266887),(189615,3,266893),(189620,3,266899),(189631,3,266917),(189636,3,266923),(189641,3,266929),(189646,3,266935),(189657,3,266953),(189662,3,266959),(189669,3,266969),(189680,3,266987),(189689,3,267001),(189696,3,267011),(189703,3,267022),(189710,3,267032),(189715,3,267038),(189720,3,267044),(189725,3,267050),(189730,3,267056),(189735,3,267062),(189742,3,267072),(189747,3,267078),(189752,3,267084),(189757,3,267090),(189762,3,267096),(189767,3,267102),(189772,3,267108),(189777,3,267114),(189782,3,267120),(189789,3,267130),(189794,3,267136),(189799,3,267142),(189804,3,267148),(189813,3,267162),(189818,3,267168),(189823,3,267174),(189827,3,267180),(189835,3,267191),(189842,3,267201),(189847,3,267207),(189856,3,267221),(189863,3,267231),(189868,3,267237),(189873,3,267243),(189878,3,267249),(189883,3,267255),(189888,3,267261),(189890,3,267263),(189898,3,267273),(189903,3,267279),(189908,3,267285),(189913,3,267291),(189918,3,267297),(189925,3,267307),(189930,3,267313),(189932,3,267315),(189940,3,267325),(189945,3,267331),(189950,3,267337),(189957,3,267347),(189964,3,267357),(189971,3,267367),(189976,3,267373),(189983,3,267383),(189988,3,267389),(189991,3,267392),(190002,3,267411),(190009,3,267421),(190016,3,267431),(190021,3,267437),(190032,3,267455),(190041,3,267469),(190050,3,267483),(190057,3,267493),(190070,3,267515),(190075,3,267521),(190080,3,267527),(190087,3,267538),(190098,3,267557),(190105,3,267567),(190126,3,267606),(190147,3,267644),(190152,3,267650),(190157,3,267656),(190162,3,267662),(190167,3,267668),(190172,3,267674),(190191,3,267708),(190196,3,267714),(190205,3,267728),(190210,3,267734),(190221,3,267752),(190228,3,267762),(190233,3,267768),(190238,3,267774),(190243,3,267780),(190248,3,267786),(190255,3,267796),(190264,3,267810),(190268,3,267816),(190276,3,267827),(190281,3,267833),(190286,3,267839),(190291,3,267845),(190296,3,267851),(190301,3,267857),(190306,3,267863),(190311,3,267870),(190318,3,267880),(190323,3,267886),(190328,3,267892),(190337,3,267906),(190344,3,267917),(190349,3,267923),(190358,3,267937),(190365,3,267947),(190370,3,267953),(190374,3,267959),(190380,3,267965),(190386,3,267976),(190394,3,267987),(190399,3,267993),(190408,3,268007),(190417,3,268021),(190424,3,268031),(190429,3,268037),(190434,3,268043),(190443,3,268057),(190448,3,268063),(190457,3,268077),(190464,3,268087),(190471,3,268097),(190476,3,268108),(190485,3,268119),(190494,3,268133),(190501,3,268143),(190508,3,268153),(190513,3,268159),(190518,3,268165),(190527,3,268179),(190532,3,268185),(190537,3,268191),(190542,3,268197),(190549,3,268208),(190556,3,268218),(190565,3,268233),(190570,3,268239),(190575,3,268245),(190590,3,268271),(190595,3,268277),(190600,3,268283),(190607,3,268293),(190612,3,268299),(190625,3,268321),(190630,3,268327),(190639,3,268341),(190650,3,268359),(190657,3,268370),(190664,3,268380),(190669,3,268386),(190682,3,268408),(190687,3,268414),(190692,3,268420),(190697,3,268426),(190704,3,268436),(190709,3,268443),(190716,3,268453),(190721,3,268459),(190726,3,268465),(190731,3,268471),(190736,3,268477),(190743,3,268487),(190748,3,268493),(190753,3,268499),(190760,3,268509),(190767,3,268519),(190772,3,268525),(190779,3,268536),(190784,3,268542),(190789,3,268548),(190800,3,268567),(190809,3,268581),(190814,3,268587),(190821,3,268597),(190826,3,268603),(190831,3,268609),(190838,3,268619),(190843,3,268625),(190850,3,268635),(190855,3,268641),(190864,3,268655),(190871,3,268665),(190878,3,268675),(190883,3,268681),(190888,3,268687),(190893,3,268693),(190902,3,268707),(190909,3,268717),(190914,3,268723),(190921,3,268733),(190928,3,268744),(190933,3,268750),(190938,3,268756),(190943,3,268762),(190952,3,268776),(190959,3,268786),(190966,3,268796),(190973,3,268806),(190980,3,268816),(190985,3,268822),(190990,3,268828),(190995,3,268834),(191000,3,268840),(191005,3,268846),(191010,3,268852),(191015,3,268858),(191020,3,268864),(191027,3,268875),(191032,3,268881),(191037,3,268887),(191044,3,268897),(191051,3,268907),(191058,3,268917),(191063,3,268923),(191070,3,268934),(191075,3,268940),(191080,3,268946),(191085,3,268952),(191090,3,268958),(191095,3,268964),(191100,3,268970),(191107,3,268980),(191114,3,268990),(191119,3,268996),(191126,3,269006),(191131,3,269012),(191136,3,269018),(191141,3,269024),(191146,3,269030),(191153,3,269040),(191158,3,269046),(191163,3,269052),(191168,3,269058),(191173,3,269064),(191178,3,269070),(191183,3,269076),(191190,3,269086),(191195,3,269092),(191200,3,269098),(191205,3,269104),(191210,3,269110),(191215,3,269116),(191220,3,269122),(191227,3,269132),(191232,3,269138),(191236,3,269141),(191246,3,269160),(191251,3,269166),(191256,3,269172),(191267,3,269190),(191274,3,269200),(191279,3,269206),(191284,3,269212),(191289,3,269218),(191294,3,269224),(191299,3,269230),(191306,3,269241),(191313,3,269252),(191318,3,269258),(191325,3,269268),(191330,3,269274),(191337,3,269284),(191342,3,269290),(191349,3,269300),(191354,3,269306),(191359,3,269312),(191364,3,269318),(191369,3,269324),(191378,3,269338),(191383,3,269344),(191388,3,269350),(191393,3,269356),(191398,3,269362),(191403,3,269368),(191414,3,269386),(191427,3,269408),(191436,3,269422),(191533,3,269612),(191620,3,269782),(191629,3,269796),(191636,3,269806),(191645,3,269820),(191652,3,269831),(191663,3,269850),(191672,3,269864),(191683,3,269882),(191688,3,269888),(191699,3,269906),(191710,3,269924),(191717,3,269934),(191726,3,269948),(191737,3,269966),(191746,3,269980),(191765,3,270014),(191770,3,270020),(191779,3,270034),(191784,3,270040),(191789,3,270046),(191796,3,270056),(191803,3,270066),(191808,3,270072),(191815,3,270082),(191820,3,270088),(191827,3,270098),(191832,3,270104),(191839,3,270114),(191846,3,270124),(191851,3,270130),(191860,3,270144),(191869,3,270158),(191874,3,270164),(191881,3,270174),(191886,3,270180),(191891,3,270186),(191896,3,270192),(191903,3,270203),(191908,3,270209),(191913,3,270215),(191920,3,270226),(191927,3,270237),(191932,3,270243),(191937,3,270249),(191944,3,270259),(191949,3,270265),(191958,3,270279),(191963,3,270285),(191968,3,270291),(191973,3,270297),(191978,3,270303),(191985,3,270313),(191990,3,270319),(191995,3,270325),(192000,3,270331),(192007,3,270341),(192016,3,270355),(192023,3,270365),(192028,3,270371),(192033,3,270377),(192038,3,270383),(192043,3,270389),(192048,3,270395),(192055,3,270405),(192060,3,270411),(192065,3,270417),(192070,3,270423),(192077,3,270433),(192086,3,270447),(192091,3,270453),(192096,3,270459),(192101,3,270465),(192108,3,270475),(192115,3,270485),(192120,3,270491),(192127,3,270501),(192134,3,270512),(192139,3,270518),(192144,3,270524),(192149,3,270530),(192156,3,270540),(192161,3,270546),(192174,3,270568),(192187,3,270590),(192192,3,270596),(192197,3,270602),(192204,3,270613),(192209,3,270619),(192216,3,270629),(192221,3,270635),(192226,3,270641),(192231,3,270647),(192238,3,270657),(192243,3,270663),(192252,3,270677),(192257,3,270683),(192264,3,270693),(192271,3,270703),(192276,3,270709),(192281,3,270715),(192286,3,270721),(192291,3,270727),(192300,3,270741),(192307,3,270751),(192312,3,270757),(192317,3,270763),(192338,3,270801),(192347,3,270815),(192356,3,270829),(192361,3,270835),(192368,3,270845),(192373,3,270851),(192378,3,270857),(192385,3,270867),(192390,3,270873),(192401,3,270891),(192406,3,270897),(192415,3,270911),(192420,3,270917),(192425,3,270923),(192434,3,270937),(192441,3,270947),(192446,3,270953),(192451,3,270959),(192456,3,270965),(192461,3,270976),(192468,3,270982),(192473,3,270988),(192482,3,271002),(192487,3,271008),(192496,3,271022),(192505,3,271036),(192510,3,271042),(192515,3,271048),(192520,3,271054),(192525,3,271060),(192530,3,271066),(192535,3,271072),(192538,3,271075),(192549,3,271094),(192556,3,271104),(192561,3,271110),(192572,3,271128),(192581,3,271142),(192586,3,271148),(192591,3,271154),(192600,3,271168),(192609,3,271183),(192616,3,271193),(192629,3,271215),(192634,3,271221),(192643,3,271235),(192652,3,271249),(192659,3,271259),(192664,3,271265),(192683,3,271299),(192690,3,271309),(192695,3,271315),(192702,3,271325),(192711,3,271339),(192722,3,271357),(192727,3,271363),(192732,3,271369),(192745,3,271391),(192750,3,271397),(192755,3,271403),(192760,3,271409),(192765,3,271415),(192770,3,271421),(192775,3,271427),(192780,3,271433),(192785,3,271439),(192792,3,271449),(192797,3,271455),(192802,3,271461),(192809,3,271471),(192824,3,271497),(192829,3,271503),(192844,3,271529),(192863,3,271563),(192868,3,271569),(192873,3,271575),(192878,3,271581),(192887,3,271596),(192892,3,271602),(192897,3,271608),(192902,3,271614),(192907,3,271620),(192912,3,271626),(192917,3,271632),(192922,3,271638),(192927,3,271644),(192932,3,271650),(192937,3,271656),(192942,3,271662),(192947,3,271668),(192952,3,271674),(192959,3,271684),(192964,3,271690),(192971,3,271700),(192976,3,271706),(192981,3,271712),(192986,3,271718),(192991,3,271724),(192996,3,271730),(193001,3,271736),(193006,3,271742),(193011,3,271748),(193016,3,271754),(193021,3,271760),(193028,3,271770),(193037,3,271784),(193044,3,271794),(193049,3,271800),(193060,3,271818),(193065,3,271824),(193073,3,271834),(193074,3,271837),(193086,3,271856),(193091,3,271862),(193096,3,271868),(193101,3,271874),(193110,3,271888),(193119,3,271902),(193124,3,271908),(193129,3,271914),(193140,3,271932),(193161,3,271970),(193168,3,271981),(193181,3,272003),(193194,3,272025),(193203,3,272039),(193208,3,272045),(193217,3,272059),(193232,3,272085),(193243,3,272103),(193252,3,272117),(193259,3,272127),(193272,3,272149),(193277,3,272155),(193286,3,272169),(193291,3,272175),(193296,3,272181),(193301,3,272187),(193320,3,272221),(193325,3,272227),(193332,3,272237),(193337,3,272243),(193344,3,272253),(193349,3,272259),(193354,3,272265),(193361,3,272275),(193376,3,272301),(193383,3,272311),(193396,3,272333),(193403,3,272343),(193410,3,272353),(193427,3,272383),(193434,3,272393),(193441,3,272403),(193446,3,272409),(193451,3,272415),(193454,3,272417),(193463,3,272431),(193468,3,272437),(193473,3,272443),(193478,3,272449),(193485,3,272459),(193490,3,272465),(193497,3,272475),(193502,3,272481),(193507,3,272487),(193512,3,272493),(193519,3,272503),(193526,3,272513),(193531,3,272519),(193538,3,272529),(193543,3,272535),(193548,3,272541),(193553,3,272547),(193558,3,272553),(193563,3,272559),(193568,3,272565),(193573,3,272571),(193578,3,272577),(193583,3,272583),(193590,3,272593),(193595,3,272599),(193600,3,272605),(193605,3,272611),(193610,3,272617),(193615,3,272623),(193620,3,272629),(193626,3,272640),(193632,3,272646),(193637,3,272652),(193646,3,272666),(193655,3,272680),(193664,3,272694),(193669,3,272700),(193674,3,272706),(193681,3,272716),(193686,3,272722),(193691,3,272728),(193698,3,272738),(193703,3,272744),(193708,3,272750),(193717,3,272764),(193722,3,272770),(193729,3,272780),(193750,3,272818),(193757,3,272828),(193762,3,272834),(193767,3,272840),(193774,3,272850),(193779,3,272856),(193788,3,272870),(193793,3,272876),(193798,3,272882),(193805,3,272892),(193810,3,272898),(193819,3,272912),(193824,3,272918),(193839,3,272944),(193846,3,272955),(193855,3,272970),(193860,3,272976),(193869,3,272990),(193898,3,273044),(193907,3,273058),(193912,3,273064),(193917,3,273070),(193922,3,273076),(193929,3,273086),(193944,3,273112),(193953,3,273126),(193962,3,273140),(193971,3,273154),(193976,3,273160),(193983,3,273171),(193988,3,273177),(193993,3,273183),(193998,3,273189),(194011,3,273212),(194016,3,273218),(194021,3,273224),(194026,3,273230),(194031,3,273236),(194036,3,273242),(194041,3,273248),(194046,3,273254),(194051,3,273260),(194060,3,273274),(194065,3,273280),(194070,3,273286),(194072,3,273288),(194080,3,273298),(194085,3,273304),(194092,3,273314),(194097,3,273320),(194104,3,273330),(194109,3,273336),(194114,3,273342),(194119,3,273348),(194124,3,273354),(194129,3,273360),(194136,3,273370),(194141,3,273376),(194146,3,273382),(194153,3,273393),(194162,3,273408),(194167,3,273414),(194176,3,273428),(194183,3,273438),(194188,3,273444),(194193,3,273450),(194198,3,273456),(194203,3,273462),(194208,3,273468),(194215,3,273478),(194222,3,273488),(194227,3,273494),(194238,3,273513),(194243,3,273519),(194248,3,273525),(194253,3,273531),(194260,3,273541),(194273,3,273563),(194280,3,273574),(194293,3,273597),(194298,3,273603),(194303,3,273609),(194308,3,273615),(194313,3,273621),(194320,3,273632),(194325,3,273638),(194332,3,273648),(194337,3,273654),(194340,3,273657),(194351,3,273676),(194358,3,273686),(194363,3,273692),(194368,3,273698),(194381,3,273720),(194390,3,273734),(194401,3,273752),(194406,3,273758),(194411,3,273764),(194416,3,273770),(194427,3,273788),(194432,3,273794),(194437,3,273800),(194444,3,273810),(194451,3,273820),(194458,3,273831),(194463,3,273837),(194472,3,273851),(194477,3,273857),(194482,3,273863),(194487,3,273869),(194491,3,273875),(194499,3,273885),(194506,3,273895),(194511,3,273901),(194516,3,273907),(194521,3,273913),(194528,3,273923),(194533,3,273929),(194538,3,273935),(194543,3,273941),(194550,3,273951),(194555,3,273957),(194560,3,273963),(194567,3,273973),(194572,3,273979),(194577,3,273985),(194590,3,274007),(194599,3,274021),(194604,3,274027),(194611,3,274037),(194618,3,274047),(194623,3,274058),(194630,3,274064),(194635,3,274070),(194642,3,274080),(194647,3,274086),(194654,3,274096),(194665,3,274114),(194672,3,274124),(194677,3,274130),(194682,3,274136),(194685,3,274138),(194692,3,274148),(194699,3,274158),(194708,3,274172),(194713,3,274178),(194718,3,274184),(194723,3,274190),(194748,3,274236),(194753,3,274242),(194758,3,274248),(194763,3,274254),(194768,3,274260),(194779,3,274278),(194786,3,274288),(194791,3,274294),(194796,3,274300),(194801,3,274306),(194806,3,274312),(194811,3,274318),(194824,3,274340),(194829,3,274346),(194840,3,274364),(194845,3,274370),(194850,3,274376),(194857,3,274386),(194862,3,274392),(194867,3,274398),(194871,3,274404),(194877,3,274410),(194882,3,274416),(194887,3,274422),(194894,3,274432),(194905,3,274450),(194908,3,274452),(194917,3,274466),(194921,3,274472),(194927,3,274478),(194934,3,274488),(194939,3,274494),(194941,3,274496),(194953,3,274514),(194958,3,274520),(194975,3,274550),(194980,3,274556),(194985,3,274562),(194992,3,274572),(195001,3,274586),(195006,3,274592),(195013,3,274602),(195020,3,274612),(195037,3,274642),(195042,3,274648),(195047,3,274654),(195052,3,274660),(195057,3,274666),(195062,3,274672),(195073,3,274690),(195080,3,274700),(195085,3,274706),(195090,3,274712),(195095,3,274718),(195100,3,274724),(195105,3,274730),(195112,3,274740),(195119,3,274750),(195128,3,274764),(195133,3,274770),(195138,3,274776),(195147,3,274790),(195152,3,274796),(195157,3,274802),(195164,3,274813),(195169,3,274819),(195174,3,274825),(195179,3,274831),(195184,3,274837),(195191,3,274847),(195196,3,274853),(195201,3,274859),(195206,3,274865),(195211,3,274871),(195216,3,274877),(195221,3,274883),(195226,3,274889),(195231,3,274895),(195238,3,274905),(195243,3,274911),(195248,3,274917),(195257,3,274931),(195262,3,274937),(195267,3,274943),(195272,3,274949),(195277,3,274955),(195282,3,274961),(195287,3,274967),(195292,3,274973),(195297,3,274979),(195302,3,274985),(195309,3,274995),(195314,3,275001),(195319,3,275007),(195326,3,275017),(195331,3,275023),(195338,3,275033),(195345,3,275043),(195350,3,275049),(195355,3,275055),(195360,3,275061),(195365,3,275067),(195370,3,275073),(195375,3,275079),(195380,3,275085),(195385,3,275091),(195390,3,275097),(195395,3,275103),(195400,3,275109),(195405,3,275115),(195410,3,275121),(195415,3,275127),(195420,3,275133),(195425,3,275139),(195430,3,275145),(195435,3,275151),(195440,3,275157),(195442,3,275159),(195450,3,275169),(195455,3,275175),(195462,3,275185),(195467,3,275191),(195472,3,275197),(195477,3,275203),(195482,3,275209),(195487,3,275215),(195494,3,275225),(195499,3,275231),(195510,3,275249),(195519,3,275263),(195526,3,275273),(195533,3,275283),(195538,3,275289),(195547,3,275303),(195564,3,275333),(195571,3,275343),(195582,3,275361),(195591,3,275375),(195606,3,275401),(195611,3,275407),(195616,3,275413),(195625,3,275427),(195630,3,275433),(195635,3,275439),(195640,3,275445),(195645,3,275451),(195656,3,275469),(195667,3,275487),(195672,3,275493),(195679,3,275503),(195692,3,275525),(195699,3,275535),(195704,3,275541),(195715,3,275559),(195722,3,275569),(195727,3,275575),(195736,3,275589),(195747,3,275607),(195758,3,275626),(195763,3,275632),(195772,3,275646),(195779,3,275656),(195786,3,275666),(195791,3,275672),(195796,3,275678),(195803,3,275688),(195808,3,275694),(195817,3,275708),(195822,3,275714),(195829,3,275724),(195834,3,275730),(195839,3,275736),(195844,3,275742),(195849,3,275748),(195854,3,275754),(195861,3,275764),(195866,3,275770),(195877,3,275788),(195884,3,275798),(195895,3,275816),(195900,3,275822),(195905,3,275828),(195910,3,275834),(195915,3,275840),(195920,3,275846),(195925,3,275852),(195930,3,275858),(195935,3,275864),(195944,3,275878),(195949,3,275884),(195954,3,275890),(195961,3,275900),(195972,3,275918),(195977,3,275924),(195982,3,275930),(195987,3,275936),(195992,3,275942),(195997,3,275948),(196002,3,275954),(196005,3,275957),(196012,3,275966),(196017,3,275972),(196023,3,275978),(196024,3,275979),(196032,3,275990),(196037,3,275996),(196044,3,276006),(196049,3,276012),(196054,3,276018),(196063,3,276032),(196068,3,276038),(196073,3,276044),(196078,3,276050),(196089,3,276068),(196091,3,276070),(196099,3,276080),(196102,3,276082),(196109,3,276092),(196128,3,276126),(196135,3,276136),(196140,3,276142),(196147,3,276152),(196152,3,276158),(196157,3,276164),(196166,3,276178),(196171,3,276184),(196176,3,276190),(196183,3,276200),(196188,3,276206),(196193,3,276212),(196198,3,276218),(196213,3,276244),(196218,3,276250),(196222,3,276256),(196228,3,276262),(196233,3,276268),(196238,3,276274),(196243,3,276280),(196248,3,276286),(196261,3,276308),(196266,3,276314),(196275,3,276328),(196280,3,276334),(196285,3,276340),(196296,3,276358),(196301,3,276364),(196314,3,276386),(196319,3,276392),(196324,3,276398),(196329,3,276404),(196334,3,276410),(196339,3,276416),(196344,3,276422),(196351,3,276432),(196364,3,276454),(196367,3,276456),(196384,3,276486),(196389,3,276492),(196394,3,276498),(196401,3,276508),(196406,3,276514),(196411,3,276520),(196416,3,276526),(196421,3,276532),(196426,3,276538),(196431,3,276544),(196438,3,276554),(196445,3,276564),(196450,3,276570),(196457,3,276580),(196466,3,276594),(196471,3,276600),(196476,3,276606),(196481,3,276612),(196486,3,276618),(196491,3,276624),(196508,3,276654),(196515,3,276664),(196522,3,276674),(196529,3,276684),(196534,3,276690),(196539,3,276696),(196544,3,276702),(196549,3,276708),(196554,3,276714),(196559,3,276720),(196568,3,276734),(196573,3,276740),(196578,3,276746),(196583,3,276752),(196588,3,276758),(196595,3,276768),(196600,3,276774),(196605,3,276780),(196610,3,276786),(196615,3,276792),(196620,3,276798),(196625,3,276804),(196630,3,276810),(196635,3,276816),(196640,3,276822),(196645,3,276828),(196650,3,276834),(196661,3,276852),(196670,3,276866),(196675,3,276872),(196680,3,276878),(196685,3,276884),(196690,3,276890),(196695,3,276896),(196700,3,276902),(196705,3,276908),(196710,3,276914),(196715,3,276920),(196720,3,276926),(196725,3,276932),(196730,3,276938),(196735,3,276944),(196744,3,276958),(196749,3,276964),(196756,3,276974),(196761,3,276980),(196766,3,276986),(196771,3,276992),(196782,3,277010),(196787,3,277016),(196792,3,277022),(196803,3,277040),(196812,3,277054),(196817,3,277060),(196822,3,277066),(196827,3,277072),(196832,3,277078),(196837,3,277084),(196848,3,277102),(196855,3,277112),(196866,3,277130),(196873,3,277140),(196878,3,277146),(196885,3,277156),(196890,3,277162),(196901,3,277180),(196906,3,277186),(196911,3,277192),(196916,3,277198),(196927,3,277216),(196936,3,277230),(196943,3,277240),(196950,3,277250),(196955,3,277256),(196960,3,277262),(196965,3,277268),(196970,3,277274),(196975,3,277280),(196986,3,277298),(196993,3,277309),(196998,3,277315),(197001,3,277317),(197008,3,277327),(197013,3,277333),(197018,3,277339),(197023,3,277345),(197028,3,277351),(197033,3,277357),(197040,3,277367),(197045,3,277373),(197052,3,277383),(197067,3,277409),(197078,3,277427),(197083,3,277433),(197088,3,277439),(197093,3,277445),(197098,3,277451),(197103,3,277457),(197108,3,277463),(197121,3,277485),(197126,3,277491),(197131,3,277497),(197136,3,277503),(197141,3,277509),(197146,3,277515),(197151,3,277521),(197158,3,277531),(197163,3,277537),(197168,3,277543),(197175,3,277553),(197180,3,277559),(197185,3,277565),(197188,3,277567),(197195,3,277577),(197200,3,277583),(197205,3,277589),(197210,3,277595),(197215,3,277601),(197222,3,277611),(197227,3,277617),(197232,3,277623),(197237,3,277629),(197242,3,277635),(197249,3,277645),(197254,3,277651),(197265,3,277669),(197270,3,277675),(197277,3,277685),(197288,3,277703),(197293,3,277709),(197296,3,277711),(197303,3,277721),(197308,3,277727),(197315,3,277737),(197320,3,277743),(197327,3,277753),(197334,3,277763),(197339,3,277769),(197343,3,277775),(197349,3,277781),(197354,3,277787),(197363,3,277801),(197368,3,277807),(197373,3,277813),(197378,3,277819),(197383,3,277825),(197388,3,277831),(197395,3,277841),(197402,3,277851),(197409,3,277861),(197414,3,277867),(197419,3,277873),(197426,3,277883),(197439,3,277905),(197444,3,277911),(197449,3,277917),(197456,3,277927),(197461,3,277933),(197466,3,277939),(197471,3,277945),(197480,3,277959),(197491,3,277977),(197502,3,277995),(197507,3,278001),(197522,3,278027),(197529,3,278037),(197538,3,278051),(197551,3,278073),(197560,3,278087),(197567,3,278097),(197572,3,278103),(197577,3,278109),(197582,3,278115),(197589,3,278125),(197594,3,278131),(197599,3,278137),(197601,3,278139),(197609,3,278149),(197614,3,278155),(197619,3,278161),(197624,3,278167),(197629,3,278173),(197634,3,278179),(197639,3,278185),(197644,3,278191),(197649,3,278197),(197652,3,278199),(197659,3,278209),(197664,3,278215),(197669,3,278221),(197674,3,278227),(197679,3,278233),(197684,3,278239),(197689,3,278245),(197700,3,278263),(197705,3,278269),(197712,3,278279),(197720,3,278289),(197721,3,278290),(197723,3,278293),(197731,3,278303),(197741,3,278317),(197746,3,278323),(197751,3,278329),(197760,3,278344),(197765,3,278350),(197770,3,278356),(197775,3,278362),(197780,3,278368),(197785,3,278374),(197790,3,278380),(197795,3,278386),(197800,3,278392),(197805,3,278398),(197810,3,278404),(197815,3,278410),(197820,3,278416),(197825,3,278422),(197830,3,278428),(197835,3,278434),(197840,3,278440),(197845,3,278446),(197850,3,278452),(197855,3,278458),(197862,3,278468),(197865,3,278470),(197874,3,278484),(197879,3,278490),(197890,3,278508),(197895,3,278514),(197897,3,278516),(197905,3,278526),(197910,3,278532),(197915,3,278538),(197920,3,278544),(197929,3,278558),(197934,3,278564),(197939,3,278570),(197950,3,278588),(197955,3,278594),(197960,3,278600),(197965,3,278606),(197970,3,278612),(197975,3,278618),(197980,3,278624),(197985,3,278630),(197990,3,278636),(197997,3,278646),(198004,3,278656),(198009,3,278662),(198014,3,278668),(198023,3,278674),(198022,3,278675),(198035,3,278698),(198042,3,278709),(198051,3,278723),(198056,3,278729),(198058,3,278731),(198064,3,278741),(198070,3,278747),(198076,3,278753),(198081,3,278759),(198086,3,278765),(198092,3,278771),(198093,3,278772),(198101,3,278783),(198106,3,278789),(198113,3,278799),(198118,3,278805),(198123,3,278811),(198128,3,278817),(198135,3,278827),(198140,3,278833),(198145,3,278839),(198154,3,278853),(198159,3,278859),(198164,3,278865),(198169,3,278871),(198174,3,278877),(198181,3,278887),(198186,3,278893),(198195,3,278907),(198200,3,278913),(198207,3,278923),(198220,3,278945),(198225,3,278951),(198232,3,278961),(198237,3,278967),(198242,3,278973),(198246,3,278977),(198251,3,278985),(198263,3,279003),(198268,3,279009),(198273,3,279015),(198275,3,279017),(198283,3,279027),(198290,3,279037),(198297,3,279047),(198299,3,279049),(198307,3,279059),(198312,3,279065),(198317,3,279071),(198322,3,279077),(198327,3,279083),(198332,3,279089),(198339,3,279099),(198344,3,279105),(198349,3,279111),(198354,3,279117),(198359,3,279123),(198364,3,279129),(198369,3,279135),(198374,3,279141),(198379,3,279147),(198384,3,279153),(198389,3,279159),(198394,3,279165),(198396,3,279167),(198404,3,279177),(198409,3,279183),(198414,3,279189),(198419,3,279195),(198424,3,279201),(198429,3,279207),(198434,3,279213),(198439,3,279219),(198444,3,279225),(198451,3,279235),(198458,3,279245),(198463,3,279251),(198468,3,279257),(198473,3,279263),(198480,3,279273),(198485,3,279279),(198490,3,279285),(198495,3,279291),(198500,3,279297),(198505,3,279303),(198510,3,279309),(198514,3,279315),(198520,3,279321),(198525,3,279327),(198532,3,279337),(198537,3,279343),(198546,3,279357),(198551,3,279363),(198556,3,279369),(198561,3,279375),(198566,3,279381),(198571,3,279387),(198576,3,279393),(198581,3,279399),(198586,3,279405),(198617,3,279463),(198622,3,279469),(198626,3,279475),(198634,3,279485),(198655,3,279527),(198664,3,279537),(198727,3,279659),(198734,3,279669),(198739,3,279675),(198742,3,279677),(198749,3,279687),(198756,3,279697),(198771,3,279723),(198786,3,279749),(198791,3,279755),(198826,3,279821),(198831,3,279827),(199096,3,280362),(199105,3,280375),(199110,3,280389),(199145,3,280490),(199187,3,280614),(199230,3,280722),(199367,3,280891),(199395,3,280971),(199459,3,281075),(199461,3,281076),(199764,3,281848),(199772,3,281879),(199784,3,281962),(199785,3,281963),(199970,3,282260),(199977,3,282270),(199982,3,282276),(199987,3,282282),(199994,3,282292),(200001,3,282302),(200010,3,282316),(200019,3,282330),(200024,3,282336),(200029,3,282342),(200034,3,282348),(200037,3,282350),(200044,3,282360),(200049,3,282366),(200060,3,282384),(200075,3,282410),(200080,3,282416),(200085,3,282422),(200090,3,282428),(200095,3,282434),(200114,3,282468),(200137,3,282510),(200144,3,282520),(200155,3,282538),(200160,3,282544),(200167,3,282554),(200170,3,282556),(200175,3,282562),(200194,3,282596),(200203,3,282610),(200208,3,282616),(200219,3,282634),(200224,3,282640),(200249,3,282686),(200264,3,282712),(200273,3,282726),(200278,3,282732),(200289,3,282750),(200304,3,282776),(200313,3,282790),(200320,3,282800),(200325,3,282806),(200330,3,282812),(200337,3,282822),(200342,3,282828),(200347,3,282834),(200358,3,282852),(200361,3,282854),(200368,3,282864),(200373,3,282870),(200384,3,282888),(200389,3,282894),(200410,3,282932),(200415,3,282938),(200422,3,282948),(200443,3,282986),(200454,3,283004),(200459,3,283010),(200492,3,283072),(200521,3,283126),(200538,3,283156),(200551,3,283178),(200556,3,283184),(200561,3,283190),(200566,3,283196),(200575,3,283210),(200584,3,283224),(200591,3,283235),(200596,3,283241),(200603,3,283251),(200605,3,283253),(200607,3,283255),(200609,3,283257),(200627,3,283283),(200632,3,283289),(200637,3,283295),(200658,3,283333),(200663,3,283339),(200670,3,283349),(200675,3,283355),(200682,3,283365),(200707,3,283411),(200712,3,283417),(200747,3,283483),(200762,3,283509),(200767,3,283515),(200772,3,283521),(200789,3,283551),(200798,3,283565),(200803,3,283571),(200808,3,283577),(200813,3,283583),(200876,3,283705),(200910,3,283767),(200959,3,283861),(200970,3,283879),(200979,3,283893),(201018,3,283967),(201041,3,284009),(201068,3,284059),(201819,3,285557),(201930,3,285775),(202169,3,286249),(202180,3,286267),(202225,3,286353),(202276,3,286451),(202287,3,286477),(202360,3,286611),(202465,3,286817),(202518,3,286919),(202525,3,286929),(202534,3,286943),(202549,3,286969),(202664,3,287195),(202671,3,287205),(202676,3,287211),(202685,3,287225),(202704,3,287259),(202719,3,287285),(202726,3,287296),(202731,3,287302),(202738,3,287312),(202745,3,287322),(202752,3,287332),(202763,3,287350),(202776,3,287372),(202781,3,287378),(202786,3,287384),(202791,3,287390),(202796,3,287396),(202813,3,287426),(202818,3,287432),(202843,3,287478),(202852,3,287492),(202857,3,287498),(202866,3,287512),(202877,3,287530),(202882,3,287536),(202889,3,287546),(202909,3,287580),(202918,3,287594),(202933,3,287620),(202952,3,287650),(202959,3,287660),(202964,3,287666),(203035,3,287804),(203040,3,287810),(203060,3,287844),(203061,3,287845),(203077,3,287872),(203094,3,287902),(203101,3,287912),(203110,3,287926),(203119,3,287940),(203130,3,287958),(203137,3,287968),(203141,3,287970),(203149,3,287984),(203156,3,287995),(203161,3,288001),(203166,3,288007),(203171,3,288013),(203184,3,288035),(203193,3,288049),(203206,3,288071),(203211,3,288077),(203216,3,288083),(203221,3,288089),(203248,3,288139),(203255,3,288149),(203264,3,288163),(203271,3,288173),(203290,3,288207),(203301,3,288225),(203326,3,288271),(203345,3,288305),(203358,3,288327),(203371,3,288349),(203378,3,288359),(203389,3,288377),(203394,3,288383),(203407,3,288405),(203414,3,288415),(203427,3,288437),(203432,3,288443),(203445,3,288465),(203450,3,288471),(203455,3,288477),(203466,3,288495),(203477,3,288513),(203484,3,288523),(203489,3,288529),(203492,3,288531),(203503,3,288549),(203514,3,288567),(203523,3,288581),(203534,3,288599),(203559,3,288645),(203564,3,288651),(203569,3,288657),(203580,3,288675),(203597,3,288705),(203608,3,288723),(203631,3,288765),(203654,3,288807),(203663,3,288821),(203668,3,288827),(203679,3,288845),(203684,3,288851),(203691,3,288861),(203700,3,288875),(203707,3,288885),(203720,3,288907),(203725,3,288913),(203730,3,288919),(203735,3,288925),(203746,3,288943),(203751,3,288949),(203794,3,289031),(203799,3,289037),(203804,3,289043),(203817,3,289065),(203830,3,289087),(203837,3,289098),(203850,3,289120),(203855,3,289126),(203864,3,289140),(203873,3,289154),(203888,3,289181),(203899,3,289199),(203922,3,289241),(203933,3,289259),(203938,3,289265),(203945,3,289275),(203978,3,289337),(203983,3,289343),(203996,3,289365),(204007,3,289383),(204014,3,289393),(204019,3,289399),(204026,3,289409),(204041,3,289436),(204062,3,289474),(204071,3,289488),(204092,3,289526),(204245,3,289828),(204314,3,289962),(204329,3,289988),(204336,3,289998),(204341,3,290004),(204362,3,290043),(204367,3,290049),(204384,3,290079),(204417,3,290141),(204422,3,290147),(204427,3,290153),(204434,3,290163),(204447,3,290185),(204458,3,290204),(204471,3,290226),(204476,3,290232),(204483,3,290242),(204488,3,290248),(204523,3,290314),(204528,3,290320),(204535,3,290330),(204548,3,290352),(204569,3,290391),(204574,3,290397),(204585,3,290415),(204604,3,290449),(441000,3,676110),(441005,3,676116),(441010,3,676122),(441015,3,676128),(441020,3,676134),(441025,3,676140),(441030,3,676146),(441035,3,676152),(441040,3,676158),(441047,3,676168),(441052,3,676174),(441063,3,676192),(441068,3,676198),(441073,3,676204),(441078,3,676210),(441083,3,676216),(441088,3,676222),(441107,3,676248),(441114,3,676254),(441119,3,676260),(441130,3,676270),(441162,3,676312),(441169,3,676322),(441174,3,676328),(441179,3,676334),(441186,3,676344),(441226,3,676394),(441231,3,676400),(441244,3,676422),(441279,3,676488),(441313,3,676550),(441322,3,676564),(441333,3,676582),(441342,3,676596),(441347,3,676602),(441354,3,676612),(441359,3,676618),(441370,3,676636),(441383,3,676658),(441388,3,676664),(441399,3,676682),(441428,3,676728),(441473,3,676802),(441522,3,676896),(441533,3,676914),(441542,3,676928),(441627,3,677086),(441632,3,677092),(441637,3,677098),(441642,3,677104),(441647,3,677110),(441652,3,677116),(441659,3,677126),(441668,3,677140),(441673,3,677146),(441678,3,677152),(441687,3,677166),(441692,3,677172),(441697,3,677178),(441742,3,677264),(441751,3,677278),(441758,3,677288),(441763,3,677294),(441780,3,677324),(441789,3,677338),(441794,3,677344),(441799,3,677350),(441808,3,677364),(441823,3,677390),(441835,3,677404),(441867,3,677450),(441883,3,677476),(441907,3,677510),(441926,3,677536),(441935,3,677550),(441940,3,677556),(441945,3,677562),(441950,3,677568),(441959,3,677582),(441968,3,677596),(441973,3,677602),(441978,3,677608),(441985,3,677618),(441990,3,677624),(441997,3,677634),(442002,3,677640),(442007,3,677646),(442014,3,677656),(442021,3,677666),(442116,3,677832),(442123,3,677842),(442130,3,677852),(442145,3,677878),(442184,3,677952),(442206,3,677978),(442221,3,678004),(442234,3,678026),(442239,3,678032),(442248,3,678046),(442255,3,678056),(442311,3,678158),(442330,3,678188),(442335,3,678194),(442346,3,678212),(442363,3,678242),(442370,3,678252),(442377,3,678262),(442382,3,678268),(442391,3,678282),(442396,3,678288),(442403,3,678298),(442408,3,678304),(442417,3,678318),(442424,3,678328),(442429,3,678334),(442436,3,678344),(442441,3,678350),(442446,3,678356),(442453,3,678366),(442458,3,678372),(442463,3,678378),(442468,3,678384),(442475,3,678394),(442480,3,678400),(442487,3,678410),(442492,3,678416),(442497,3,678422),(442504,3,678432),(442509,3,678438),(442514,3,678444),(442519,3,678450),(442524,3,678456),(442529,3,678462),(442538,3,678476),(442543,3,678482),(442552,3,678496),(442561,3,678510),(442570,3,678524),(442575,3,678530),(442580,3,678536),(442585,3,678542),(442590,3,678548),(442595,3,678554),(442600,3,678560),(442607,3,678570),(442612,3,678576),(442619,3,678586),(442624,3,678592),(442631,3,678602),(442646,3,678628),(442656,3,678642),(442677,3,678672),(442711,3,678726),(442718,3,678736),(442733,3,678762),(442740,3,678772),(442796,3,678854),(442801,3,678860),(442812,3,678878),(442817,3,678884),(442822,3,678890),(442827,3,678896),(442832,3,678902),(442837,3,678908),(442844,3,678918),(442851,3,678928),(442856,3,678934),(442861,3,678940),(442870,3,678954),(442895,3,679000),(442904,3,679014),(442931,3,679056),(442951,3,679086),(442959,3,679096),(442975,3,679122),(442984,3,679136),(443021,3,679198),(443059,3,679256),(443066,3,679266),(443071,3,679272),(443080,3,679286),(443085,3,679292),(443116,3,679350),(443139,3,679392),(443160,3,679430),(443188,3,679480),(443195,3,679490),(443202,3,679500),(443211,3,679514),(443216,3,679520),(443221,3,679526),(443245,3,679564),(443275,3,679610),(443288,3,679632),(443297,3,679646),(443302,3,679652),(443307,3,679658),(443316,3,679672),(443321,3,679678),(443326,3,679684),(443331,3,679690),(443336,3,679696),(443349,3,679718),(443364,3,679744),(443371,3,679754),(443388,3,679784),(443401,3,679806),(443408,3,679816),(443413,3,679822),(443426,3,679844),(443443,3,679874),(443454,3,679892),(443461,3,679902),(443495,3,679956),(443513,3,679978),(443522,3,679992),(443529,3,680002),(443534,3,680008),(443541,3,680018),(443548,3,680028),(443553,3,680034),(443558,3,680040),(443565,3,680050),(443570,3,680056),(443575,3,680062),(443580,3,680068),(443587,3,680078),(443594,3,680088),(443599,3,680094),(443604,3,680100),(443609,3,680106),(443614,3,680112),(443625,3,680130),(443632,3,680140),(443637,3,680146),(443642,3,680152),(443647,3,680158),(443652,3,680164),(443659,3,680174),(443670,3,680192),(443681,3,680210),(443702,3,680248),(443707,3,680254),(443739,3,680304),(443758,3,680338),(443767,3,680352),(443772,3,680358),(443779,3,680368),(443801,3,680406),(443827,3,680444),(443848,3,680462),(443862,3,680480),(443869,3,680490),(443874,3,680496),(443881,3,680506),(443886,3,680512),(443891,3,680518),(443896,3,680524),(443911,3,680550),(443920,3,680564),(443931,3,680582),(443942,3,680600),(443996,3,680678),(444025,3,680732),(444036,3,680750),(444041,3,680756),(444048,3,680766),(444053,3,680772),(444060,3,680782),(444071,3,680800),(444100,3,680854),(444125,3,680900),(444140,3,680926),(444151,3,680944),(444156,3,680950),(444167,3,680968),(444176,3,680982),(444208,3,681020),(444240,3,681078),(444247,3,681088),(444254,3,681098),(444269,3,681124),(444274,3,681130),(444295,3,681160),(444335,3,681234),(444363,3,681284),(444394,3,681342),(444403,3,681356),(444408,3,681362),(444415,3,681372),(444420,3,681378),(444429,3,681392),(444442,3,681414),(444447,3,681420),(444452,3,681426),(444457,3,681432),(444494,3,681498),(444517,3,681536),(444535,3,681562),(444557,3,681596),(444564,3,681606),(444571,3,681616),(444576,3,681622),(444585,3,681636),(444590,3,681642),(444595,3,681648),(444602,3,681658),(444607,3,681664),(444622,3,681690),(444627,3,681696),(444632,3,681702),(444637,3,681708),(444642,3,681714),(444649,3,681724),(444654,3,681730),(444659,3,681736),(444664,3,681742),(444669,3,681748),(444678,3,681762),(444687,3,681776),(444696,3,681790),(444701,3,681796),(444706,3,681802),(444715,3,681816),(444720,3,681822),(444725,3,681828),(444737,3,681838),(444754,3,681852),(444797,3,681918),(444828,3,681972),(444833,3,681978),(444852,3,682012),(444870,3,682038),(444920,3,682124),(444929,3,682138),(444939,3,682148),(444950,3,682166),(444955,3,682172),(444960,3,682178),(444965,3,682184),(444972,3,682194),(444989,3,682224),(444994,3,682230),(445037,3,682312),(445052,3,682338),(445057,3,682344),(445086,3,682398),(445095,3,682412),(445110,3,682438),(445134,3,682480),(445170,3,682530),(445181,3,682548),(445186,3,682554),(445191,3,682560),(445196,3,682566),(445201,3,682572),(445208,3,682582),(445213,3,682588),(445218,3,682594),(445227,3,682608),(445262,3,682666),(445320,3,682776),(445349,3,682830),(445362,3,682852),(445420,3,682958),(445425,3,682964),(445449,3,683002),(445458,3,683016),(445465,3,683026),(445470,3,683032),(445477,3,683042),(445494,3,683072),(445517,3,683114),(445562,3,683200),(445577,3,683226),(445598,3,683264),(445603,3,683270),(445647,3,683344),(445693,3,683430),(445702,3,683444),(445711,3,683454),(445719,3,683464),(445742,3,683506),(445779,3,683576),(445788,3,683590),(445793,3,683596),(445798,3,683602),(445839,3,683668),(445844,3,683674),(445851,3,683684),(445856,3,683690),(445883,3,683728),(445892,3,683742),(445897,3,683748),(445902,3,683754),(445913,3,683772),(445918,3,683778),(445923,3,683784),(445928,3,683790),(445933,3,683796),(445946,3,683818),(445951,3,683824),(445962,3,683842),(445969,3,683852),(445980,3,683870),(445985,3,683876),(445990,3,683882),(445995,3,683888),(446008,3,683910),(446015,3,683920),(446028,3,683942),(446035,3,683952),(446055,3,683982),(446085,3,684016),(446106,3,684046),(446139,3,684108),(446153,3,684126),(446158,3,684132),(446179,3,684166),(446186,3,684176),(446228,3,684250),(446231,3,684252),(446243,3,684270),(446248,3,684276),(446253,3,684282),(446270,3,684312),(446275,3,684318),(446280,3,684324),(446289,3,684338),(446296,3,684348),(446301,3,684354),(446308,3,684364),(446313,3,684370),(446318,3,684376),(446327,3,684386),(446337,3,684400),(446364,3,684446),(446390,3,684492),(446403,3,684510),(446430,3,684560),(446441,3,684578),(446446,3,684584),(446453,3,684594),(446458,3,684600),(446463,3,684606),(446468,3,684612),(446473,3,684618),(446484,3,684636),(446491,3,684646),(446496,3,684652),(446501,3,684658),(446506,3,684664),(446528,3,684686),(446545,3,684708),(446614,3,684838),(446627,3,684860),(446636,3,684874),(446645,3,684888),(446656,3,684906),(446665,3,684920),(446670,3,684926),(446677,3,684936),(446682,3,684942),(446687,3,684948),(446730,3,685014),(446741,3,685032),(446775,3,685090),(446784,3,685104),(446810,3,685150),(446815,3,685156),(446830,3,685182),(446854,3,685216),(446859,3,685222),(446873,3,685244),(446884,3,685262),(446890,3,685268),(446899,3,685282),(446908,3,685296),(446925,3,685322),(446930,3,685328),(446943,3,685350),(446977,3,685412),(446982,3,685418),(446987,3,685424),(446992,3,685430),(446999,3,685440),(447004,3,685446),(447011,3,685456),(447018,3,685466),(447023,3,685472),(447030,3,685482),(447035,3,685488),(447040,3,685494),(447045,3,685500),(447052,3,685510),(447061,3,685524),(447068,3,685534),(447075,3,685544),(447086,3,685562),(447091,3,685568),(447096,3,685574),(447101,3,685580),(447108,3,685590),(447133,3,685608),(447140,3,685614),(447171,3,685672),(447184,3,685694),(447211,3,685740),(447229,3,685766),(447246,3,685796),(447273,3,685842),(447278,3,685848),(447283,3,685854),(447288,3,685860),(447293,3,685866),(447302,3,685880),(447307,3,685886),(447314,3,685896),(447321,3,685906),(447330,3,685920),(447337,3,685930),(447344,3,685940),(447373,3,685982),(447394,3,686012),(447405,3,686030),(447414,3,686044),(447419,3,686050),(447442,3,686092),(447457,3,686118),(447485,3,686164),(447490,3,686170),(447495,3,686176),(447504,3,686190),(447509,3,686196),(447514,3,686202),(447519,3,686208),(447524,3,686214),(447529,3,686220),(447534,3,686226),(447539,3,686232),(447548,3,686246),(447553,3,686252),(447560,3,686258),(447586,3,686292),(447601,3,686318),(447606,3,686324),(447613,3,686334),(447645,3,686380),(447669,3,686422),(447678,3,686436),(447683,3,686442),(447688,3,686448),(447693,3,686454),(447698,3,686460),(447707,3,686474),(447712,3,686480),(447717,3,686486),(447722,3,686492),(447728,3,686498),(447739,3,686508),(447744,3,686514),(447754,3,686528),(447768,3,686546),(447791,3,686588),(447812,3,686626),(447853,3,686700),(447866,3,686722),(447871,3,686728),(447878,3,686738),(447888,3,686748),(447918,3,686802),(447925,3,686812),(447934,3,686822),(447947,3,686840),(447954,3,686850),(447959,3,686856),(447964,3,686862),(447969,3,686868),(447976,3,686878),(447991,3,686900),(447998,3,686910),(448007,3,686924),(448067,3,687038),(448086,3,687072),(448109,3,687114),(448116,3,687124),(448125,3,687138),(448130,3,687144),(448135,3,687150),(448144,3,687164),(448153,3,687178),(448158,3,687184),(448167,3,687198),(448172,3,687204),(448177,3,687210),(448182,3,687216),(448189,3,687226),(448194,3,687232),(448199,3,687238),(448208,3,687252),(448215,3,687262),(448220,3,687268),(448225,3,687274),(448230,3,687280),(448239,3,687294),(448244,3,687300),(448251,3,687310),(448256,3,687316),(448263,3,687326),(448281,3,687344),(448286,3,687350),(448310,3,687368),(448347,3,687430),(448363,3,687456),(448374,3,687474),(448394,3,687508),(448402,3,687518),(448420,3,687548),(448425,3,687554),(448430,3,687560),(448435,3,687566),(448442,3,687576),(448447,3,687582),(448505,3,687692),(448526,3,687730),(448537,3,687740),(448552,3,687762),(448576,3,687804),(448583,3,687814),(448617,3,687876),(448622,3,687882),(448627,3,687888),(448640,3,687910),(448651,3,687928),(448658,3,687938),(448663,3,687944),(448668,3,687950),(448740,3,688076),(448749,3,688090),(448809,3,688196),(448816,3,688206),(448825,3,688220),(448830,3,688226),(448835,3,688232),(448840,3,688238),(448845,3,688244),(448854,3,688258),(448863,3,688272),(448872,3,688286),(448879,3,688296),(448884,3,688302),(448889,3,688308),(448908,3,688342),(448917,3,688356),(448922,3,688362),(448929,3,688372),(448934,3,688378),(448939,3,688384),(448948,3,688398),(448953,3,688404),(448958,3,688410),(448963,3,688416),(448972,3,688430),(448977,3,688436),(448984,3,688446),(449011,3,688496),(449016,3,688502),(449021,3,688508),(449034,3,688530),(449039,3,688536),(449044,3,688542),(449049,3,688548),(449054,3,688554),(449061,3,688564),(449066,3,688570),(449071,3,688576),(449076,3,688582),(449081,3,688588),(449094,3,688610),(449103,3,688624),(449120,3,688654),(449137,3,688684),(449180,3,688742),(449185,3,688748),(449205,3,688770),(449229,3,688796),(449246,3,688826),(449251,3,688832),(449256,3,688838),(449261,3,688844),(449270,3,688858),(449275,3,688864),(449282,3,688874),(449287,3,688880),(449300,3,688902),(449307,3,688912),(449316,3,688926),(449329,3,688948),(449336,3,688958),(449341,3,688964),(449348,3,688974),(449353,3,688980),(449358,3,688986),(449365,3,688996),(449378,3,689018),(449383,3,689024),(449390,3,689034),(449397,3,689044),(449494,3,689198),(449507,3,689220),(449552,3,689302),(449559,3,689312),(449571,3,689330),(449580,3,689340),(449591,3,689358),(449600,3,689372),(449605,3,689378),(449610,3,689384),(449617,3,689394),(449632,3,689420),(449649,3,689450),(449656,3,689460),(449694,3,689514),(449711,3,689544),(449716,3,689550),(449750,3,689612),(449774,3,689650),(449785,3,689668),(449794,3,689682),(449801,3,689692),(449822,3,689722),(449839,3,689752),(449860,3,689790),(449865,3,689796),(449870,3,689802),(449887,3,689832),(449902,3,689858),(449939,3,689928),(449950,3,689946),(449955,3,689952),(449968,3,689974),(449979,3,689984),(449999,3,690006),(450006,3,690016),(450011,3,690022),(450018,3,690032),(450023,3,690038),(450044,3,690076),(450051,3,690082),(450066,3,690108),(450073,3,690118),(450085,3,690132),(450100,3,690154),(450111,3,690172),(450133,3,690210),(450150,3,690240),(450167,3,690266),(450174,3,690276),(450179,3,690282),(450184,3,690288),(450207,3,690330),(450212,3,690336),(450217,3,690342),(450228,3,690360),(450233,3,690366),(450244,3,690384),(450251,3,690394),(450258,3,690404),(450263,3,690410),(450272,3,690424),(450279,3,690434),(450284,3,690440),(450289,3,690446),(450294,3,690452),(450301,3,690462),(450332,3,690520),(450435,3,690690),(450440,3,690696),(450482,3,690774),(450494,3,690788),(450512,3,690818),(450521,3,690832),(450530,3,690846),(450539,3,690860),(450544,3,690866),(450553,3,690880),(450558,3,690886),(450563,3,690892),(450572,3,690906),(450615,3,690968),(450620,3,690974),(450631,3,690992),(450656,3,691034),(450666,3,691048),(450673,3,691058),(450688,3,691084),(450699,3,691094),(450711,3,691112),(450741,3,691166),(450748,3,691176),(450755,3,691186),(450762,3,691196),(450771,3,691210),(450776,3,691216),(450785,3,691230),(450790,3,691236),(450801,3,691254),(450808,3,691264),(450821,3,691286),(450826,3,691292),(450831,3,691298),(450836,3,691304),(450841,3,691310),(450846,3,691316),(450851,3,691322),(450856,3,691328),(450869,3,691350),(450876,3,691360),(450881,3,691366),(450886,3,691372),(450893,3,691382),(450898,3,691388),(450903,3,691394),(450912,3,691408),(450921,3,691422),(450926,3,691428),(450931,3,691434),(450936,3,691440),(450945,3,691454),(450969,3,691496),(450989,3,691530),(450998,3,691544),(451022,3,691574),(451076,3,691636),(451081,3,691642),(451090,3,691656),(451095,3,691662),(451100,3,691668),(451115,3,691694),(451155,3,691756),(451171,3,691782),(451178,3,691792),(451183,3,691798),(451190,3,691808),(451245,3,691914),(451260,3,691940),(451267,3,691950),(451284,3,691976),(451290,3,691982),(451301,3,691992),(451323,3,692030),(451376,3,692128),(451395,3,692162),(451400,3,692168),(451433,3,692226),(451460,3,692276),(451471,3,692294),(451476,3,692300),(451487,3,692318),(451500,3,692340),(451517,3,692370),(451522,3,692376),(451527,3,692382),(451532,3,692388),(451537,3,692394),(451542,3,692400),(451549,3,692410),(451554,3,692416),(451563,3,692430),(451574,3,692448),(451587,3,692470),(451604,3,692500),(451615,3,692518),(451622,3,692528),(451675,3,692630),(451738,3,692752),(451751,3,692774),(451803,3,692832),(451811,3,692842),(451816,3,692848),(451847,3,692906),(451872,3,692952),(451897,3,692998),(451906,3,693012),(451929,3,693054),(451966,3,693124),(451975,3,693138),(451980,3,693144),(451987,3,693154),(451992,3,693160),(451997,3,693166),(452013,3,693184),(452020,3,693194),(452046,3,693232),(452066,3,693266),(452079,3,693288),(452096,3,693319),(452109,3,693341),(452148,3,693407),(452156,3,693417),(452163,3,693427),(452170,3,693437),(452177,3,693447),(452182,3,693453),(452189,3,693463),(452204,3,693489),(452209,3,693495),(452216,3,693505),(452223,3,693515),(452230,3,693525),(452235,3,693531),(452246,3,693549),(452255,3,693563),(452260,3,693569),(452265,3,693575),(452270,3,693581),(452275,3,693587),(452280,3,693593),(452285,3,693599),(452294,3,693613),(452299,3,693619),(452308,3,693633),(452313,3,693639),(452330,3,693669),(452349,3,693703),(452356,3,693713),(452363,3,693723),(452370,3,693733),(452381,3,693751),(452388,3,693761),(452395,3,693771),(452402,3,693781),(452411,3,693795),(452416,3,693801),(452423,3,693811),(452428,3,693817),(452435,3,693827),(452440,3,693833),(452447,3,693843),(452454,3,693853),(452469,3,693879),(452480,3,693897),(452493,3,693919),(452541,3,693997),(452580,3,694043),(452590,3,694053),(452628,3,694103),(452641,3,694121),(452655,3,694143),(452660,3,694149),(452665,3,694155),(452686,3,694193),(452697,3,694211),(452706,3,694225),(452711,3,694231),(452718,3,694241),(452725,3,694251),(452732,3,694261),(452737,3,694267),(452746,3,694281),(452757,3,694299),(452764,3,694309),(452771,3,694319),(452778,3,694329),(452794,3,694355),(452823,3,694405),(452828,3,694411),(452833,3,694417),(452848,3,694439),(452874,3,694485),(452918,3,694555),(452930,3,694561),(452949,3,694595),(452980,3,694649),(452985,3,694655),(452998,3,694677),(453007,3,694691),(453012,3,694697),(453017,3,694703),(453024,3,694713),(453029,3,694719),(453034,3,694725),(453043,3,694739),(453060,3,694769),(453065,3,694775),(453089,3,694805),(453114,3,694851),(453155,3,694929),(453162,3,694939),(453171,3,694953),(453178,3,694963),(453192,3,694985),(453213,3,695003),(453228,3,695021),(453233,3,695027),(453238,3,695033),(453243,3,695039),(453248,3,695045),(453253,3,695051),(453262,3,695065),(453279,3,695095),(453290,3,695113),(453295,3,695119),(453300,3,695125),(453305,3,695131),(453312,3,695141),(453347,3,695203),(453376,3,695245),(453395,3,695279),(453400,3,695285),(453413,3,695295),(453461,3,695385),(453466,3,695391),(453473,3,695401),(453480,3,695411),(453485,3,695417),(453492,3,695427),(453497,3,695433),(453516,3,695463),(453572,3,695557),(453585,3,695579),(453596,3,695597),(453611,3,695623),(453616,3,695629),(453625,3,695643),(453638,3,695665),(453643,3,695671),(453648,3,695677),(453653,3,695683),(453658,3,695689),(453663,3,695695),(453668,3,695701),(453673,3,695707),(453678,3,695713),(453687,3,695727),(453696,3,695741),(453701,3,695747),(453706,3,695753),(453711,3,695759),(453716,3,695765),(453723,3,695775),(453728,3,695781),(453733,3,695787),(453738,3,695793),(453743,3,695799),(453748,3,695805),(453757,3,695819),(453762,3,695825),(453767,3,695831),(453774,3,695841),(453779,3,695847),(453784,3,695853),(453789,3,695859),(453794,3,695865),(453813,3,695899),(453818,3,695905),(453829,3,695923),(453840,3,695941),(453863,3,695983),(453868,3,695989),(453885,3,696019),(453898,3,696041),(453969,3,696179),(453978,3,696193),(453999,3,696227),(454030,3,696257),(454054,3,696283),(454069,3,696309),(454082,3,696331),(454087,3,696337),(454092,3,696343),(454105,3,696365),(454112,3,696375),(454117,3,696381),(454122,3,696387),(454129,3,696397),(454134,3,696403),(454139,3,696409),(454144,3,696415),(454149,3,696421),(454158,3,696435),(454173,3,696461),(454208,3,696523),(454221,3,696541),(454236,3,696563),(454254,3,696589),(454272,3,696607),(454292,3,696637),(454309,3,696663),(454349,3,696733),(454361,3,696751),(454366,3,696757),(454373,3,696767),(454380,3,696777),(454391,3,696795),(454402,3,696813),(454483,3,696971),(454594,3,697189),(454601,3,697199),(454616,3,697225),(454641,3,697271),(454670,3,697325),(454689,3,697359),(454752,3,697473),(454773,3,697511),(454823,3,697585),(454882,3,697699),(454909,3,697749),(454982,3,697891),(454987,3,697897),(454992,3,697903),(454997,3,697909),(455002,3,697915),(455007,3,697921),(455012,3,697927),(455019,3,697937),(455024,3,697943),(455033,3,697957),(455064,3,698015),(455073,3,698029),(455089,3,698051),(455113,3,698089),(455146,3,698143),(455162,3,698169),(455187,3,698215),(455194,3,698225),(455207,3,698247),(455233,3,698285),(455277,3,698359),(455288,3,698377),(455293,3,698383),(455298,3,698389),(455303,3,698395),(455308,3,698401),(455315,3,698411),(455322,3,698421),(455327,3,698427),(455334,3,698437),(455339,3,698443),(455346,3,698453),(455351,3,698459),(455403,3,698537),(455420,3,698567),(455427,3,698577),(455440,3,698599),(455459,3,698633),(455492,3,698695),(455509,3,698713),(455514,3,698719),(455523,3,698733),(455528,3,698739),(455535,3,698749),(455540,3,698755),(455547,3,698765),(455552,3,698771),(455565,3,698793),(455572,3,698803),(455581,3,698817),(455586,3,698823),(455591,3,698829),(455596,3,698835),(455605,3,698849),(455610,3,698855),(455615,3,698861),(455622,3,698871),(455629,3,698881),(455634,3,698887),(455641,3,698897),(455648,3,698907),(455655,3,698917),(455662,3,698927),(455667,3,698933),(455688,3,698971),(455724,3,699005),(455733,3,699011),(455786,3,699113),(455819,3,699175),(455830,3,699193),(455855,3,699239),(455910,3,699337),(455948,3,699403),(455957,3,699417),(455964,3,699427),(455971,3,699437),(455978,3,699447),(455989,3,699465),(455996,3,699475),(456007,3,699493),(456018,3,699511),(456025,3,699521),(456030,3,699527),(456037,3,699537),(456067,3,699587),(456147,3,699729),(456152,3,699735),(456262,3,699949),(456276,3,699967),(456281,3,699973),(456286,3,699979),(456301,3,700005),(456306,3,700011),(456311,3,700017),(456316,3,700023),(456383,3,700145),(456388,3,700151),(456407,3,700185),(456434,3,700235),(456440,3,700241),(456525,3,700395),(456534,3,700409),(456539,3,700415),(456544,3,700421),(456553,3,700435),(456560,3,700445),(456565,3,700451),(456570,3,700457),(456577,3,700467),(456582,3,700473),(456589,3,700483),(456616,3,700533),(456655,3,700603),(456662,3,700613),(456673,3,700623),(456680,3,700633),(456701,3,700667),(456708,3,700677),(456732,3,700719),(456739,3,700729),(456748,3,700743),(456753,3,700749),(456758,3,700755),(456763,3,700761),(456770,3,700771),(456775,3,700777),(456780,3,700783),(456787,3,700793),(456792,3,700799),(456805,3,700821),(456810,3,700827),(456815,3,700833),(456820,3,700839),(456825,3,700845),(456840,3,700859),(456862,3,700885),(456877,3,700907),(456888,3,700921),(456893,3,700927),(456902,3,700941),(456931,3,700987),(456940,3,701001),(456950,3,701015),(456978,3,701065),(456987,3,701079),(456992,3,701085),(456997,3,701091),(457006,3,701105),(457013,3,701115),(457024,3,701133),(457031,3,701143),(457036,3,701149),(457043,3,701159),(457050,3,701169),(457057,3,701179),(457062,3,701185),(457067,3,701191),(457072,3,701197),(457077,3,701203),(457094,3,701233),(457099,3,701239),(457104,3,701245),(457109,3,701251),(457114,3,701257),(457119,3,701263),(457126,3,701273),(457135,3,701287),(457146,3,701305),(457151,3,701311),(457184,3,701337),(457204,3,701367),(457229,3,701409),(457238,3,701423),(457247,3,701437),(457252,3,701443),(457310,3,701541),(457338,3,701591),(457343,3,701597),(457360,3,701627),(457365,3,701633),(457372,3,701643),(457377,3,701649),(457392,3,701675),(457419,3,701725),(457458,3,701799),(457480,3,701837),(457497,3,701867),(457516,3,701901),(457525,3,701915),(457530,3,701921),(457543,3,701943),(457548,3,701949),(457554,3,701955),(457563,3,701969),(457578,3,701983),(457627,3,702057),(457632,3,702063),(457639,3,702073),(457644,3,702079),(457649,3,702085),(457658,3,702099),(457663,3,702105),(457674,3,702123),(457687,3,702145),(457694,3,702155),(457701,3,702165),(457716,3,702183),(457733,3,702205),(457738,3,702211),(457763,3,702257),(457790,3,702303),(457807,3,702333),(457815,3,702343),(457823,3,702353),(457828,3,702359),(457833,3,702365),(457840,3,702375),(457845,3,702381),(457850,3,702387),(457855,3,702393),(457860,3,702399),(457865,3,702405),(457870,3,702411),(457875,3,702417),(457880,3,702423),(457885,3,702429),(457890,3,702435),(457895,3,702441),(457900,3,702447),(457905,3,702453),(457910,3,702459),(457915,3,702465),(457920,3,702471),(457925,3,702477),(457930,3,702483),(457935,3,702489),(457942,3,702499),(457947,3,702505),(457952,3,702511),(457959,3,702521),(457964,3,702527),(457969,3,702533),(457974,3,702539),(457993,3,702557),(458003,3,702563),(458027,3,702581),(458032,3,702587),(458037,3,702593),(458042,3,702599),(458049,3,702609),(458056,3,702619),(458067,3,702629),(458084,3,702659),(458093,3,702673),(458114,3,702711),(458119,3,702717),(458124,3,702723),(458129,3,702729),(458134,3,702735),(458139,3,702741),(458162,3,702767),(458167,3,702773),(458184,3,702803),(458197,3,702825),(458212,3,702843),(458217,3,702849),(458226,3,702863),(458231,3,702869),(458238,3,702879),(458243,3,702885),(458248,3,702891),(458253,3,702897),(458260,3,702907),(458265,3,702913),(458272,3,702923),(458277,3,702929),(458286,3,702943),(458291,3,702949),(458296,3,702955),(458301,3,702961),(458310,3,702975),(458321,3,702993),(458326,3,702999),(458331,3,703005),(458343,3,703015),(458349,3,703021),(458382,3,703079),(458408,3,703093),(458413,3,703099),(458425,3,703117),(458442,3,703147),(458452,3,703161),(458462,3,703175),(458467,3,703181),(458510,3,703259),(458523,3,703281),(458528,3,703287),(458541,3,703309),(458546,3,703315),(458555,3,703329),(458560,3,703335),(458567,3,703345),(458572,3,703351),(458583,3,703369),(458588,3,703375),(458595,3,703385),(458600,3,703391),(458607,3,703401),(458612,3,703407),(458617,3,703413),(458622,3,703419),(458629,3,703429),(458634,3,703435),(458639,3,703441),(458650,3,703459),(458655,3,703465),(458660,3,703471),(458667,3,703481),(458672,3,703487),(458679,3,703497),(458684,3,703503),(458689,3,703509),(458694,3,703515),(458699,3,703521),(458704,3,703527),(458709,3,703533),(458718,3,703547),(458723,3,703553),(458738,3,703579),(458757,3,703613),(458839,3,703747),(458849,3,703761),(458857,3,703767),(458863,3,703773),(458868,3,703779),(458874,3,703785),(458894,3,703803),(458899,3,703809),(458906,3,703819),(458927,3,703853),(458936,3,703863),(458947,3,703881),(458952,3,703887),(458959,3,703897),(458964,3,703903),(458969,3,703909),(458974,3,703915),(458979,3,703921),(458986,3,703931),(458993,3,703941),(459022,3,703971),(459053,3,704025),(459058,3,704031),(459071,3,704053),(459078,3,704063),(459085,3,704073),(459090,3,704079),(459097,3,704089),(459102,3,704095),(459121,3,704117),(459139,3,704147),(459146,3,704157),(459153,3,704167),(459158,3,704173),(459165,3,704183),(459170,3,704189),(459175,3,704195),(459182,3,704205),(459191,3,704219),(459204,3,704241),(459209,3,704247),(459239,3,704289),(459259,3,704319),(459266,3,704329),(459273,3,704339),(459284,3,704357),(459300,3,704375),(459315,3,704401),(459336,3,704439),(459362,3,704477),(459371,3,704491),(459381,3,704505),(459386,3,704511),(459391,3,704517),(459396,3,704523),(459401,3,704529),(459408,3,704539),(459413,3,704545),(459424,3,704563),(459429,3,704569),(459438,3,704583),(459443,3,704589),(459448,3,704595),(459461,3,704617),(459470,3,704631),(459483,3,704653),(459492,3,704667),(459523,3,704697),(459547,3,704731),(459552,3,704737),(459557,3,704743),(459563,3,704749),(459571,3,704759),(459586,3,704781),(459593,3,704791),(459598,3,704797),(459609,3,704815),(459614,3,704821),(459621,3,704831),(459626,3,704837),(459631,3,704843),(459638,3,704853),(459643,3,704859),(459671,3,704897),(459701,3,704951),(459708,3,704961),(459720,3,704975),(459728,3,704985),(459735,3,704995),(459740,3,705001),(459745,3,705007),(459750,3,705013),(459755,3,705019),(459760,3,705025),(459775,3,705051),(459780,3,705057),(459791,3,705075),(459796,3,705081),(459801,3,705087),(459808,3,705097),(459813,3,705103),(459818,3,705109),(459827,3,705123),(459832,3,705129),(459837,3,705136),(459846,3,705151),(459857,3,705169),(459864,3,705179),(459869,3,705185),(459882,3,705207),(459889,3,705217),(459894,3,705223),(459899,3,705229),(459908,3,705243),(459917,3,705257),(459989,3,705355),(460004,3,705381),(460009,3,705387),(460016,3,705397),(460025,3,705411),(460046,3,705441),(460060,3,705463),(460067,3,705473),(460072,3,705479),(460077,3,705485),(460082,3,705491),(460089,3,705501),(460102,3,705523),(460107,3,705529),(460112,3,705535),(460117,3,705541),(460122,3,705547),(460127,3,705553),(460146,3,705587),(460175,3,705617),(460182,3,705627),(460191,3,705637),(460215,3,705679),(460226,3,705697),(460231,3,705703),(460238,3,705713),(460255,3,705743),(460284,3,705793),(460291,3,705803),(460296,3,705809),(460301,3,705815),(460314,3,705837),(460319,3,705843),(460326,3,705853),(460331,3,705859),(460336,3,705865),(460341,3,705871),(460350,3,705885),(460359,3,705899),(460366,3,705909),(460373,3,705919),(460380,3,705929),(460411,3,705987),(460507,3,706145),(460516,3,706159),(460521,3,706165),(460528,3,706175),(460535,3,706185),(460544,3,706199),(460551,3,706209),(460562,3,706227),(460571,3,706241),(460577,3,706247),(460596,3,706265),(460651,3,706367),(460660,3,706381),(460667,3,706391),(460672,3,706397),(460693,3,706427),(460714,3,706465),(460721,3,706475),(460732,3,706493),(460737,3,706499),(460742,3,706505),(460747,3,706511),(460754,3,706521),(460759,3,706527),(460764,3,706533),(460769,3,706539),(460774,3,706545),(460779,3,706551),(460784,3,706557),(460789,3,706563),(460813,3,706589),(460824,3,706607),(460838,3,706629),(460849,3,706647),(460859,3,706661),(460876,3,706687),(460884,3,706693),(460903,3,706727),(460908,3,706733),(460921,3,706755),(460938,3,706785),(460943,3,706791),(460948,3,706797),(460953,3,706803),(460958,3,706809),(460963,3,706815),(460970,3,706825),(460983,3,706847),(460988,3,706853),(460993,3,706859),(460998,3,706865),(461011,3,706887),(461016,3,706893),(461021,3,706899),(461026,3,706905),(461047,3,706943),(461056,3,706957),(461063,3,706967),(461078,3,706993),(461087,3,707007),(461100,3,707029),(461107,3,707039),(461116,3,707053),(461121,3,707059),(461128,3,707069),(461147,3,707103),(461162,3,707125),(461168,3,707131),(461184,3,707149),(461189,3,707155),(461194,3,707161),(461215,3,707199),(461220,3,707205),(461232,3,707211),(461254,3,707237),(461259,3,707243),(461264,3,707249),(461283,3,707283),(461294,3,707301),(461299,3,707307),(461326,3,707357),(461352,3,707395),(461357,3,707401),(461364,3,707411),(461373,3,707425),(461387,3,707447),(461395,3,707457),(461424,3,707499),(461432,3,707509),(461497,3,707603),(461500,3,707605),(461505,3,707611),(461581,3,707757),(461592,3,707775),(461616,3,707813),(461655,3,707887),(461662,3,707897),(461669,3,707907),(461674,3,707913),(461679,3,707919),(461684,3,707925),(461695,3,707943),(461702,3,707953),(461709,3,707963),(461716,3,707973),(461729,3,707995),(461749,3,708013),(461781,3,708071),(461790,3,708086),(461815,3,708132),(461851,3,708194),(461858,3,708204),(461863,3,708210),(461868,3,708216),(461877,3,708230),(461882,3,708236),(461887,3,708242),(461892,3,708248),(461903,3,708266),(461910,3,708276),(461915,3,708282),(461920,3,708288),(461929,3,708302),(461934,3,708308),(461939,3,708314),(461946,3,708324),(461951,3,708330),(461956,3,708336),(461965,3,708350),(461970,3,708356),(461985,3,708382),(461992,3,708392),(461999,3,708402),(462004,3,708408),(462013,3,708422),(462028,3,708436),(462044,3,708450),(462067,3,708484),(462074,3,708494),(462085,3,708512),(462090,3,708518),(462099,3,708528),(462112,3,708546),(462126,3,708568),(462132,3,708574),(462177,3,708656),(462184,3,708666),(462189,3,708672),(462201,3,708690),(462208,3,708700),(462215,3,708710),(462220,3,708716),(462225,3,708722),(462230,3,708728),(462243,3,708750),(462248,3,708756),(462299,3,708846),(462333,3,708900),(462351,3,708930),(462360,3,708944),(462369,3,708958),(462386,3,708988),(462408,3,709022),(462413,3,709028),(462421,3,709038),(462428,3,709048),(462433,3,709054),(462438,3,709060),(462443,3,709066),(462448,3,709072),(462459,3,709090),(462466,3,709100),(462471,3,709106),(462476,3,709112),(462481,3,709118),(462494,3,709140),(462499,3,709146),(462504,3,709152),(462509,3,709158),(462540,3,709216),(462549,3,709222),(462572,3,709244),(462579,3,709250),(462588,3,709264),(462607,3,709298),(462641,3,709356),(462647,3,709362),(462660,3,709372),(462681,3,709410),(462692,3,709428),(462703,3,709446),(462708,3,709452),(462717,3,709466),(462724,3,709476),(462740,3,709494),(462748,3,709504),(462794,3,709574),(462803,3,709588),(462808,3,709594),(462815,3,709604),(462826,3,709622),(462847,3,709656),(462872,3,709690),(462881,3,709704),(462886,3,709710),(462893,3,709720),(462898,3,709726),(462910,3,709740),(462917,3,709750),(462924,3,709760),(462952,3,709806),(462966,3,709828),(462978,3,709846),(462990,3,709864),(463003,3,709886),(463010,3,709896),(463019,3,709910),(463028,3,709924),(463033,3,709930),(463046,3,709952),(463051,3,709958),(463056,3,709964),(463065,3,709978),(463070,3,709984),(463075,3,709990),(463080,3,709996),(463085,3,710002),(463090,3,710008),(463097,3,710018),(463102,3,710024),(463109,3,710034),(463116,3,710044),(463121,3,710050),(463126,3,710056),(463135,3,710070),(463140,3,710076),(463147,3,710086),(463156,3,710100),(463161,3,710106),(463179,3,710120),(463215,3,710162),(463241,3,710208),(463258,3,710234),(463267,3,710248),(463276,3,710262),(463311,3,710312),(463342,3,710370),(463356,3,710392),(463361,3,710398),(463366,3,710404),(463371,3,710410),(463376,3,710416),(463381,3,710422),(463388,3,710432),(463393,3,710438),(463400,3,710448),(463407,3,710458),(463412,3,710464),(463417,3,710470),(463422,3,710476),(463427,3,710482),(463432,3,710488),(463495,3,710586),(463502,3,710596),(463515,3,710618),(463520,3,710624),(463565,3,710702),(463570,3,710708),(463579,3,710722),(463596,3,710752),(463621,3,710798),(463718,3,710968),(463723,3,710974),(463742,3,711004),(463758,3,711030),(463763,3,711036),(463782,3,711066),(463788,3,711072),(463803,3,711098),(463820,3,711124),(463829,3,711138),(463834,3,711144),(463843,3,711158),(463848,3,711164),(463853,3,711170),(463858,3,711176),(463863,3,711182),(463868,3,711188),(463875,3,711198),(463884,3,711212),(463889,3,711218),(463894,3,711224),(463899,3,711230),(463904,3,711236),(463909,3,711242),(463914,3,711248),(463919,3,711254),(463924,3,711260),(463931,3,711270),(463936,3,711276),(463941,3,711282),(463948,3,711292),(463953,3,711298),(463958,3,711304),(463969,3,711322),(463974,3,711328),(464009,3,711394),(464034,3,711440),(464045,3,711458),(464055,3,711472),(464060,3,711478),(464065,3,711484),(464072,3,711494),(464077,3,711500),(464086,3,711514),(464091,3,711520),(464144,3,711622),(464149,3,711628),(464156,3,711638),(464163,3,711648),(464188,3,711670),(464209,3,711684),(464232,3,711714),(464242,3,711728),(464287,3,711810),(464294,3,711820),(464301,3,711830),(464306,3,711836),(464311,3,711842),(464318,3,711852),(464325,3,711862),(464330,3,711868),(464335,3,711874),(464340,3,711880),(464349,3,711894),(464354,3,711900),(464365,3,711918),(464370,3,711924),(464375,3,711930),(464380,3,711936),(464385,3,711942),(464394,3,711956),(464401,3,711966),(464410,3,711980),(464417,3,711990),(464422,3,711996),(464433,3,712014),(464438,3,712020),(464443,3,712026),(464452,3,712040),(464488,3,712098),(464522,3,712140),(464527,3,712146),(464534,3,712156),(464539,3,712162),(464544,3,712168),(464582,3,712222),(464598,3,712248),(464605,3,712258),(464610,3,712264),(464615,3,712270),(464620,3,712276),(464627,3,712286),(464632,3,712292),(464637,3,712298),(464642,3,712304),(464647,3,712310),(464652,3,712316),(464659,3,712326),(464666,3,712336),(464671,3,712342),(464676,3,712348),(464683,3,712358),(464743,3,712456),(464754,3,712474),(464782,3,712520),(464801,3,712554),(464828,3,712600),(464833,3,712606),(464858,3,712648),(464863,3,712654),(464868,3,712660),(464873,3,712666),(464878,3,712672),(464883,3,712678),(464888,3,712684),(464899,3,712702),(464912,3,712724),(464949,3,712786),(464969,3,712820),(464990,3,712858),(464999,3,712872),(465004,3,712878),(465009,3,712884),(465025,3,712910),(465042,3,712932),(465047,3,712938),(465057,3,712952),(465064,3,712962),(465075,3,712980),(465084,3,712994),(465089,3,713000),(465094,3,713006),(465105,3,713024),(465112,3,713034),(465130,3,713056),(465147,3,713086),(465160,3,713108),(465189,3,713154),(465205,3,713180),(465225,3,713210),(465248,3,713252),(465257,3,713266),(465262,3,713272),(465267,3,713278),(465272,3,713284),(465277,3,713290),(465282,3,713296),(465287,3,713302),(465292,3,713308),(465301,3,713322),(465306,3,713328),(465325,3,713350),(465372,3,713436),(465379,3,713446),(465384,3,713452),(465391,3,713462),(465398,3,713472),(465405,3,713482),(465425,3,713504),(465450,3,713550),(465455,3,713556),(465460,3,713562),(465465,3,713568),(465470,3,713574),(465477,3,713584),(465484,3,713594),(465489,3,713600),(465496,3,713610),(465503,3,713620),(465510,3,713630),(465515,3,713636),(465520,3,713642),(465525,3,713648),(465536,3,713666),(465541,3,713672),(465546,3,713678),(465553,3,713688),(465560,3,713698),(465565,3,713704),(465570,3,713710),(465577,3,713720),(465587,3,713734),(465592,3,713740),(465618,3,713778),(465645,3,713828),(465658,3,713850),(465664,3,713856),(465669,3,713862),(465674,3,713868),(465684,3,713878),(465694,3,713892),(465719,3,713934),(465726,3,713944),(465731,3,713950),(465736,3,713956),(465741,3,713962),(465746,3,713968),(465751,3,713974),(465764,3,713996),(465771,3,714006),(465800,3,714060),(465821,3,714094),(465826,3,714100),(465845,3,714134),(465872,3,714184),(465907,3,714250),(465924,3,714280),(465929,3,714286),(465959,3,714340),(465974,3,714354),(465984,3,714368),(465995,3,714386),(466004,3,714400),(466009,3,714406),(466014,3,714412),(466019,3,714418),(466024,3,714424),(466029,3,714430),(466034,3,714436),(466039,3,714442),(466044,3,714448),(466049,3,714454),(466054,3,714460),(466059,3,714466),(466070,3,714484),(466079,3,714498),(466104,3,714528),(466132,3,714578),(466139,3,714588),(466153,3,714606),(466160,3,714616),(466187,3,714662),(466205,3,714692),(466219,3,714714),(466230,3,714732),(466235,3,714738),(466254,3,714772),(466265,3,714786),(466280,3,714812),(466289,3,714826),(466316,3,714872),(466321,3,714878),(466338,3,714908),(466346,3,714918),(466357,3,714936),(466372,3,714962),(466379,3,714972),(466398,3,714998),(466411,3,715016),(466416,3,715022),(466423,3,715032),(466428,3,715038),(466442,3,715060),(466447,3,715066),(466456,3,715080),(466461,3,715086),(466468,3,715096),(466473,3,715102),(466478,3,715108),(466487,3,715122),(466514,3,715156),(466521,3,715166),(466526,3,715172),(466535,3,715182),(466550,3,715208),(466576,3,715254),(466583,3,715264),(466597,3,715286),(466628,3,715340),(466635,3,715350),(466650,3,715376),(466655,3,715382),(466668,3,715404),(466673,3,715410),(466686,3,715432),(466691,3,715438),(466696,3,715444),(466701,3,715450),(466716,3,715476),(466723,3,715486),(466730,3,715496),(466735,3,715502),(466742,3,715512),(466755,3,715534),(466760,3,715540),(466767,3,715550),(466778,3,715568),(466785,3,715578),(466790,3,715584),(466797,3,715594),(466802,3,715600),(466809,3,715610),(466828,3,715640),(466845,3,715666),(466875,3,715704),(466891,3,715730),(466916,3,715776),(466921,3,715782),(466937,3,715808),(466974,3,715870),(466981,3,715880),(466990,3,715894),(466995,3,715900),(467000,3,715906),(467007,3,715916),(467014,3,715926),(467025,3,715944),(467030,3,715950),(467037,3,715960),(467042,3,715966),(467047,3,715972),(467052,3,715978),(467083,3,716016),(467117,3,716078),(467143,3,716124),(467171,3,716174),(467180,3,716188),(467187,3,716198),(467192,3,716204),(467197,3,716210),(467202,3,716216),(467207,3,716222),(467216,3,716236),(467221,3,716242),(467236,3,716268),(467260,3,716306),(467285,3,716340),(467297,3,716358),(467304,3,716368),(467321,3,716398),(467326,3,716404),(467354,3,716454),(467360,3,716460),(467373,3,716478),(467387,3,716492),(467427,3,716562),(467436,3,716576),(467442,3,716582),(467453,3,716600),(467460,3,716610),(467465,3,716616),(467472,3,716626),(467481,3,716640),(467490,3,716654),(467499,3,716668),(467502,3,716670),(467511,3,716684),(467518,3,716694),(467523,3,716700),(467532,3,716714),(467537,3,716720),(467546,3,716734),(467551,3,716740),(467570,3,716774),(467575,3,716780),(467581,3,716786),(467590,3,716800),(467597,3,716810),(467602,3,716816),(467611,3,716830),(467618,3,716840),(467676,3,716938),(467689,3,716960),(467700,3,716978),(467705,3,716984),(467731,3,717030),(467750,3,717056),(467767,3,717082),(467790,3,717124),(467799,3,717138),(467816,3,717168),(467831,3,717194),(467844,3,717216),(467851,3,717226),(467858,3,717236),(467863,3,717242),(467868,3,717248),(467873,3,717254),(467884,3,717272),(467891,3,717282),(467896,3,717288),(467901,3,717294),(467906,3,717300),(467913,3,717310),(467918,3,717316),(467923,3,717322),(467928,3,717328),(467937,3,717342),(467942,3,717348),(467947,3,717354),(467952,3,717360),(467959,3,717370),(467968,3,717384),(467975,3,717394),(467982,3,717404),(467987,3,717411),(467994,3,717421),(467999,3,717427),(468004,3,717433),(468011,3,717443),(468016,3,717449),(468025,3,717463),(468044,3,717497),(468051,3,717507),(468058,3,717517),(468063,3,717523),(468072,3,717537),(468083,3,717555),(468088,3,717561),(468099,3,717579),(468104,3,717585),(468109,3,717591),(468116,3,717601),(468121,3,717607),(468126,3,717613),(468133,3,717623),(468150,3,717645),(468175,3,717675),(468188,3,717693),(468195,3,717699),(468200,3,717705),(468242,3,717779),(468253,3,717797),(468260,3,717807),(468274,3,717829),(468296,3,717863),(468331,3,717913),(468342,3,717927),(468347,3,717933),(468352,3,717939),(468359,3,717949),(468366,3,717959),(468396,3,718009),(468426,3,718059),(468445,3,718093),(468452,3,718103),(468457,3,718109),(468466,3,718123),(468493,3,718173),(468498,3,718179),(468505,3,718189),(468524,3,718215),(468535,3,718233),(468544,3,718243),(468566,3,718281),(468573,3,718291),(468584,3,718309),(468589,3,718315),(468594,3,718321),(468603,3,718335),(468610,3,718345),(468621,3,718364),(468626,3,718370),(468641,3,718396),(468680,3,718458),(468715,3,718520),(468722,3,718530),(468729,3,718540),(468740,3,718558),(468747,3,718568),(468759,3,718586),(468770,3,718604),(468800,3,718650),(468809,3,718664),(468814,3,718670),(468821,3,718680),(468830,3,718694),(468837,3,718704),(468842,3,718710),(468847,3,718716),(468885,3,718766),(468902,3,718796),(468928,3,718838),(468939,3,718856),(468944,3,718862),(468959,3,718880),(468968,3,718894),(468975,3,718904),(468982,3,718914),(468989,3,718924),(468998,3,718938),(469003,3,718944),(469008,3,718950),(469013,3,718956),(469018,3,718962),(469023,3,718968),(469028,3,718974),(469033,3,718980),(469040,3,718990),(469045,3,718996),(469052,3,719002),(469064,3,719012),(469092,3,719062),(469109,3,719092),(469114,3,719098),(469119,3,719104),(469132,3,719126),(469162,3,719168),(469169,3,719178),(469182,3,719200),(469187,3,719206),(469192,3,719212),(469199,3,719222),(469204,3,719228),(469211,3,719238),(469222,3,719256),(469231,3,719270),(469236,3,719276),(469241,3,719282),(469246,3,719288),(469251,3,719294),(469256,3,719300),(469261,3,719306),(469266,3,719312),(469271,3,719318),(469276,3,719324),(469281,3,719330),(469290,3,719344),(469295,3,719350),(469338,3,719396),(469343,3,719402),(469372,3,719452),(469391,3,719486),(469399,3,719496),(469407,3,719506),(469416,3,719520),(469442,3,719562),(469447,3,719568),(469464,3,719598),(469469,3,719604),(469474,3,719610),(469479,3,719616),(469484,3,719622),(469493,3,719636),(469512,3,719670),(469521,3,719684),(469528,3,719694),(469533,3,719700),(469540,3,719710),(469550,3,719724),(469562,3,719738),(469584,3,719764),(469629,3,719850),(469644,3,719876),(469649,3,719882),(469656,3,719892),(469675,3,719926),(469705,3,719972),(469754,3,720066),(469817,3,720188),(469822,3,720194),(469831,3,720208),(469846,3,720234),(469851,3,720240),(469858,3,720250),(469863,3,720256),(469872,3,720270),(469890,3,720280),(469907,3,720306),(469930,3,720348),(469944,3,720370),(469966,3,720400),(469977,3,720418),(469991,3,720436),(470001,3,720450),(470018,3,720472),(470050,3,720526),(470055,3,720532),(470060,3,720538),(470065,3,720544),(470072,3,720554),(470081,3,720568),(470086,3,720574),(470101,3,720600),(470106,3,720606),(470113,3,720616),(470122,3,720626),(470129,3,720636),(470140,3,720654),(470159,3,720688),(470171,3,720706),(470181,3,720720),(470189,3,720730),(470196,3,720740),(470202,3,720746),(470218,3,720768),(470225,3,720778),(470230,3,720784),(470245,3,720803),(470269,3,720837),(470278,3,720851),(470285,3,720861),(470290,3,720867),(470295,3,720873),(470319,3,720907),(470333,3,720929),(470340,3,720939),(470347,3,720949),(470356,3,720963),(470361,3,720969),(470382,3,721003),(470387,3,721009),(470412,3,721051),(470425,3,721069),(470430,3,721075),(470441,3,721093),(470456,3,721119),(470467,3,721137),(470480,3,721159),(470487,3,721169),(470492,3,721175),(470497,3,721181),(470502,3,721187),(470511,3,721201),(470516,3,721207),(470523,3,721217),(470528,3,721223),(470535,3,721233),(470544,3,721247),(470561,3,721269),(470572,3,721287),(470589,3,721301),(470622,3,721359),(470625,3,721361),(470632,3,721371),(470637,3,721377),(470653,3,721399),(470673,3,721429),(470689,3,721455),(470701,3,721474),(470712,3,721492),(470717,3,721498),(470722,3,721504),(470727,3,721510),(470734,3,721520),(470739,3,721526),(470744,3,721532),(470753,3,721546),(470758,3,721552),(470763,3,721558),(470768,3,721564),(470771,3,721566),(470782,3,721584),(470787,3,721590),(470798,3,721608),(470855,3,721702),(470863,3,721712),(470874,3,721730),(470888,3,721748),(470902,3,721770),(470914,3,721788),(470929,3,721810),(470937,3,721820),(470951,3,721842),(470960,3,721856),(470965,3,721862),(470970,3,721868),(470977,3,721878),(470984,3,721888),(470989,3,721894),(470998,3,721908),(471005,3,721918),(471010,3,721924),(471017,3,721934),(471022,3,721940),(471027,3,721946),(471036,3,721956),(471041,3,721962),(471056,3,721976),(471094,3,722042),(471143,3,722132),(471154,3,722150),(471159,3,722156),(471164,3,722162),(471169,3,722168),(471174,3,722174),(471183,3,722188),(471201,3,722206),(471206,3,722212),(471219,3,722234),(471243,3,722272),(471249,3,722278),(471272,3,722316),(471299,3,722362),(471319,3,722396),(471329,3,722410),(471338,3,722424),(471349,3,722442),(471354,3,722448),(471359,3,722454),(471364,3,722460),(471375,3,722478),(471380,3,722484),(471385,3,722490),(471409,3,722512),(471426,3,722542),(471461,3,722608),(471474,3,722626),(471480,3,722632),(471490,3,722646),(471495,3,722652),(471514,3,722686),(471519,3,722692),(471526,3,722702),(471531,3,722708),(471536,3,722714),(471541,3,722720),(471548,3,722730),(471553,3,722736),(471558,3,722742),(471563,3,722748),(471568,3,722754),(471573,3,722760),(471580,3,722770),(471593,3,722792),(471600,3,722802),(471609,3,722816),(471614,3,722822),(471623,3,722836),(471632,3,722850),(471637,3,722856),(471646,3,722870),(471657,3,722888),(471662,3,722894),(471667,3,722900),(471672,3,722906),(471677,3,722912),(471684,3,722922),(471697,3,722944),(471734,3,722998),(471779,3,723060),(471792,3,723082),(471799,3,723092),(471804,3,723098),(471809,3,723104),(471820,3,723122),(471842,3,723152),(471854,3,723166),(471867,3,723180),(471872,3,723186),(471881,3,723196),(471886,3,723202),(471893,3,723212),(471898,3,723218),(471905,3,723228),(471910,3,723234),(471917,3,723244),(471936,3,723278),(471941,3,723284),(471954,3,723306),(471959,3,723312),(471980,3,723326),(472007,3,723368),(472012,3,723374),(472070,3,723476),(472079,3,723490),(472086,3,723500),(472093,3,723510),(472110,3,723540),(472119,3,723554),(472137,3,723576),(472148,3,723594),(472153,3,723600),(472158,3,723606),(472165,3,723616),(472174,3,723630),(472179,3,723636),(472184,3,723642),(472189,3,723648),(472196,3,723658),(472205,3,723668),(472212,3,723678),(472231,3,723704),(472250,3,723738),(472257,3,723748),(472264,3,723758),(472275,3,723776),(472282,3,723786),(472289,3,723796),(472343,3,723894),(472353,3,723900),(472383,3,723934),(472392,3,723948),(472397,3,723954),(472402,3,723960),(472411,3,723974),(472436,3,724016),(472447,3,724034),(472464,3,724064),(472492,3,724114),(472509,3,724144),(472518,3,724158),(472525,3,724168),(472532,3,724178),(472562,3,724220),(472569,3,724230),(472586,3,724260),(472591,3,724266),(472596,3,724272),(472601,3,724278),(472606,3,724284),(472627,3,724322),(472632,3,724328),(472637,3,724334),(472649,3,724352),(472672,3,724378),(472687,3,724404),(472704,3,724434),(472714,3,724448),(472723,3,724462),(472728,3,724468),(472752,3,724506),(472796,3,724584),(472807,3,724602),(472814,3,724612),(472821,3,724622),(472828,3,724632),(472843,3,724658),(472848,3,724664),(472853,3,724670),(472862,3,724684),(472869,3,724694),(472878,3,724708),(472883,3,724714),(472890,3,724724),(472899,3,724738),(472904,3,724744),(472915,3,724762),(472922,3,724772),(472927,3,724778),(472936,3,724792),(472941,3,724798),(472948,3,724808),(472955,3,724818),(472960,3,724824),(472965,3,724830),(472970,3,724836),(473013,3,724882),(473019,3,724888),(473048,3,724934),(473060,3,724952),(473075,3,724978),(473111,3,725044),(473116,3,725050),(473122,3,725056),(473127,3,725062),(473132,3,725068),(473139,3,725078),(473146,3,725088),(473153,3,725098),(473158,3,725104),(473169,3,725122),(473175,3,725128),(473181,3,725138),(473186,3,725144),(473191,3,725150),(473196,3,725156),(473206,3,725170),(473207,3,725171),(473221,3,725194),(473261,3,725244),(473267,3,725250),(473281,3,725272),(473295,3,725294),(473325,3,725348),(473330,3,725354),(473337,3,725364),(473346,3,725378),(473361,3,725404),(473368,3,725414),(473384,3,725436),(473428,3,725514),(473442,3,725536),(473460,3,725566),(473481,3,725604),(473490,3,725618),(473495,3,725624),(473500,3,725630),(473505,3,725636),(473510,3,725642),(473517,3,725652),(473524,3,725658),(473523,3,725659),(473584,3,725754),(473595,3,725772),(473611,3,725798),(473639,3,725840),(473644,3,725846),(473651,3,725852),(473656,3,725858),(473665,3,725872),(473672,3,725882),(473679,3,725892),(473686,3,725902),(473710,3,725928),(473730,3,725958),(473736,3,725964),(473758,3,726002),(473763,3,726008),(473792,3,726058),(473797,3,726064),(473806,3,726078),(473813,3,726088),(473820,3,726098),(473831,3,726116),(473838,3,726126),(473845,3,726136),(473850,3,726142),(473857,3,726152),(473862,3,726158),(473867,3,726164),(473872,3,726170),(473877,3,726176),(473882,3,726182),(473893,3,726200),(473898,3,726206),(473903,3,726212),(473910,3,726222),(473948,3,726272),(473957,3,726282),(473998,3,726352),(474034,3,726418),(474039,3,726424),(474046,3,726434),(474057,3,726448),(474080,3,726486),(474099,3,726520),(474106,3,726530),(474117,3,726548),(474137,3,726570),(474143,3,726576),(474157,3,726598),(474162,3,726604),(474167,3,726610),(474195,3,726652),(474228,3,726710),(474233,3,726716),(474240,3,726726),(474245,3,726732),(474252,3,726742),(474257,3,726748),(474264,3,726758),(474273,3,726772),(474278,3,726778),(474283,3,726784),(474288,3,726790),(474293,3,726796),(474302,3,726810),(474342,3,726864),(474355,3,726882),(474365,3,726896),(474380,3,726922),(474392,3,726940),(474414,3,726978),(474419,3,726984),(474445,3,727022),(474450,3,727028),(474467,3,727058),(474484,3,727080),(474505,3,727114),(474529,3,727152),(474542,3,727174),(474565,3,727212),(474600,3,727278),(474607,3,727288),(474612,3,727294),(474617,3,727300),(474650,3,727350),(474667,3,727380),(474728,3,727486),(474735,3,727496),(474744,3,727510),(474749,3,727516),(474754,3,727522),(474759,3,727528),(474766,3,727538),(474771,3,727544),(474776,3,727550),(474783,3,727560),(474796,3,727582),(474801,3,727588),(474812,3,727606),(474819,3,727612),(474818,3,727613),(474827,3,727624),(474834,3,727634),(474843,3,727648),(474870,3,727678),(474875,3,727684),(474886,3,727702),(474893,3,727712),(474906,3,727734),(474925,3,727752),(474943,3,727782),(474956,3,727804),(474961,3,727810),(474968,3,727816),(475001,3,727874),(475006,3,727880),(475013,3,727890),(475018,3,727896),(475025,3,727906),(475032,3,727916),(475039,3,727926),(475044,3,727932),(475053,3,727946),(475060,3,727956),(475067,3,727966),(475096,3,728000),(475105,3,728014),(475155,3,728108),(475166,3,728126),(475171,3,728132),(475195,3,728174),(475224,3,728228),(475255,3,728286),(475271,3,728308),(475286,3,728330),(475291,3,728336),(475298,3,728346),(475305,3,728356),(475316,3,728374),(475329,3,728396),(475336,3,728406),(475422,3,728552),(475445,3,728594),(475459,3,728616),(475472,3,728638),(475526,3,728736),(475531,3,728742),(475536,3,728748),(475603,3,728866),(475608,3,728872),(475617,3,728886),(475622,3,728892),(475633,3,728910),(475640,3,728920),(475645,3,728926),(475672,3,728960),(475677,3,728966),(475683,3,728972),(475712,3,729026),(475724,3,729044),(475771,3,729126),(475784,3,729148),(475789,3,729154),(475794,3,729160),(475803,3,729174),(475810,3,729185),(475819,3,729199),(475824,3,729205),(475831,3,729215),(475836,3,729221),(475845,3,729235),(475850,3,729241),(475855,3,729247),(475860,3,729253),(475865,3,729259),(475880,3,729285),(475887,3,729295),(475892,3,729301),(475899,3,729311),(475908,3,729325),(475917,3,729339),(475924,3,729349),(475935,3,729367),(475940,3,729373),(475945,3,729379),(475950,3,729385),(475971,3,729423),(475976,3,729429),(475981,3,729435),(475988,3,729445),(475999,3,729455),(476025,3,729485),(476041,3,729503),(476052,3,729513),(476063,3,729531),(476084,3,729569),(476093,3,729583),(476101,3,729593),(476123,3,729631),(476155,3,729685),(476160,3,729691),(476166,3,729697),(476179,3,729715),(476199,3,729749),(476204,3,729755),(476209,3,729761),(476214,3,729767),(476221,3,729777),(476226,3,729783),(476233,3,729793),(476250,3,729823),(476255,3,729829),(476260,3,729835),(476324,3,729921),(476341,3,729951),(476346,3,729957),(476377,3,730011),(476384,3,730021),(476391,3,730031),(476396,3,730037),(476401,3,730043),(476406,3,730049),(476411,3,730055),(476416,3,730061),(476425,3,730075),(476445,3,730097),(476461,3,730123),(476490,3,730177),(476499,3,730191),(476516,3,730221),(476526,3,730235),(476540,3,730257),(476563,3,730295),(476568,3,730301),(476573,3,730307),(476578,3,730313),(476583,3,730319),(476588,3,730325),(476599,3,730343),(476604,3,730349),(476609,3,730355),(476616,3,730365),(476627,3,730383),(476637,3,730389),(476648,3,730399),(476663,3,730425),(476673,3,730439),(476678,3,730445),(476700,3,730483),(476715,3,730509),(476721,3,730515),(476726,3,730521),(476748,3,730555),(476753,3,730561),(476758,3,730567),(476763,3,730573),(476768,3,730579),(476773,3,730585),(476778,3,730591),(476783,3,730597),(476796,3,730619),(476803,3,730629),(476808,3,730635),(476843,3,730701),(476870,3,730739),(476941,3,730873),(476948,3,730883),(476954,3,730889),(476994,3,730959),(477054,3,731073),(477069,3,731099),(477132,3,731221),(477155,3,731263),(477166,3,731281),(477193,3,731331),(477222,3,731385),(477253,3,731443),(477280,3,731493),(477293,3,731515),(477310,3,731545),(477321,3,731563),(477328,3,731573),(477341,3,731595),(477374,3,731657),(477383,3,731671),(477406,3,731713),(477427,3,731751),(477434,3,731761),(477449,3,731787),(477459,3,731801),(477482,3,731831),(477488,3,731837),(477496,3,731843),(477503,3,731849),(477528,3,731891),(477535,3,731901),(477546,3,731915),(477577,3,731965),(477595,3,731995),(477611,3,732021),(477622,3,732039),(477667,3,732113),(477678,3,732131),(477683,3,732137),(477690,3,732147),(477755,3,732273),(477764,3,732287),(477777,3,732305),(477806,3,732347),(477825,3,732381),(477834,3,732395),(477839,3,732401),(477858,3,732431),(477869,3,732449),(477892,3,732491),(477897,3,732497),(477923,3,732543),(477928,3,732549),(477937,3,732563),(477942,3,732569),(477947,3,732575),(477952,3,732581),(477957,3,732587),(477962,3,732593),(477969,3,732603),(477974,3,732609),(477979,3,732615),(477984,3,732621),(477989,3,732627),(477996,3,732637),(478001,3,732643),(478014,3,732649),(478024,3,732659),(478031,3,732665),(478037,3,732671),(478048,3,732685),(478054,3,732691),(478061,3,732701),(478066,3,732707),(478075,3,732717),(478081,3,732723),(478086,3,732729),(478092,3,732735),(478099,3,732741),(478108,3,732751),(478113,3,732757),(478118,3,732763),(478133,3,732785),(478142,3,732799),(478149,3,732809),(478154,3,732815),(478169,3,732833),(478175,3,732839),(478188,3,732861),(478199,3,732879),(478204,3,732885),(478209,3,732891),(478214,3,732897),(478221,3,732907),(478226,3,732913),(478231,3,732919),(478236,3,732925),(478248,3,732935),(478261,3,732957),(478266,3,732963),(478280,3,732985),(478286,3,732991),(478295,3,733005),(478307,3,733023),(478325,3,733053),(478330,3,733059),(478345,3,733081),(478364,3,733111),(478369,3,733117),(478374,3,733123),(478381,3,733133),(478388,3,733143),(478393,3,733149),(478403,3,733159),(478411,3,733165),(478418,3,733175),(478423,3,733181),(478433,3,733195),(478438,3,733201),(478445,3,733211),(478455,3,733225),(478500,3,733307),(478505,3,733313),(478518,3,733335),(478523,3,733341),(478528,3,733347),(478533,3,733353),(478538,3,733359),(478543,3,733365),(478548,3,733371),(478553,3,733377),(478558,3,733383),(478563,3,733389),(478570,3,733399),(478577,3,733409),(478584,3,733419),(478589,3,733425),(478596,3,733435),(478603,3,733445),(478612,3,733459),(478617,3,733465),(478622,3,733471),(478631,3,733485),(478641,3,733499),(478657,3,733505),(478672,3,733527),(478677,3,733533),(478687,3,733543),(478703,3,733569),(478714,3,733583),(478725,3,733601),(478733,3,733611),(478752,3,733645),(478767,3,733671),(478772,3,733677),(478777,3,733683),(478784,3,733693),(478789,3,733699),(478794,3,733705),(478799,3,733711),(478823,3,733745),(478828,3,733751),(478839,3,733765),(478844,3,733771),(478857,3,733793),(478868,3,733811),(478875,3,733821),(478883,3,733831),(478899,3,733853),(478910,3,733871),(478920,3,733885),(478927,3,733895),(478932,3,733901),(478937,3,733907),(478944,3,733917),(478949,3,733923),(478956,3,733933),(478961,3,733939),(478970,3,733953),(478979,3,733963),(479000,3,733989),(479008,3,733999),(479027,3,734033),(479032,3,734039),(479044,3,734057),(479059,3,734083),(479071,3,734101),(479091,3,734135),(479098,3,734145),(479113,3,734167),(479118,3,734173),(479123,3,734179),(479128,3,734185),(479133,3,734191),(479138,3,734197),(479145,3,734207),(479150,3,734213),(479179,3,734247),(479190,3,734265),(479204,3,734287),(479212,3,734297),(479225,3,734319),(479230,3,734325),(479241,3,734339),(479251,3,734353),(479258,3,734363),(479263,3,734369),(479268,3,734375),(479275,3,734385),(479280,3,734391),(479291,3,734409),(479300,3,734423),(479305,3,734429),(479310,3,734435),(479317,3,734445),(479322,3,734451),(479329,3,734461),(479334,3,734467),(479339,3,734473),(479350,3,734491),(479355,3,734497),(479360,3,734503),(479365,3,734509),(479372,3,734519),(479377,3,734525),(479398,3,734535),(479417,3,734561),(479426,3,734575),(479433,3,734585),(479445,3,734603),(479454,3,734613),(479460,3,734619),(479465,3,734625),(479475,3,734639),(479486,3,734657),(479508,3,734695),(479525,3,734721),(479532,3,734731),(479539,3,734741),(479544,3,734747),(479549,3,734753),(479554,3,734759),(479574,3,734781),(479585,3,734799),(479595,3,734813),(479616,3,734851),(479623,3,734861),(479633,3,734871),(479647,3,734893),(479671,3,734935),(479676,3,734941),(479681,3,734947),(479688,3,734957),(479693,3,734963),(479700,3,734973),(479705,3,734979),(479726,3,735005),(479734,3,735015),(479741,3,735025),(479759,3,735055),(479768,3,735069),(479777,3,735083),(479785,3,735093),(479793,3,735103),(479805,3,735121),(479812,3,735131),(479817,3,735137),(479824,3,735147),(479829,3,735153),(479840,3,735167),(479839,3,735168),(479849,3,735179),(479850,3,735180),(479858,3,735191),(479863,3,735197),(479868,3,735203),(479881,3,735221),(479911,3,735243),(479931,3,735273),(479936,3,735279),(479963,3,735325),(479977,3,735347),(479989,3,735365),(480025,3,735431),(480032,3,735441),(480039,3,735451),(480044,3,735457),(480049,3,735463),(480054,3,735469),(480063,3,735483),(480073,3,735493),(480083,3,735499),(480092,3,735513),(480115,3,735551),(480122,3,735561),(480127,3,735567),(480153,3,735613),(480161,3,735623),(480169,3,735633),(480178,3,735647),(480183,3,735653),(480200,3,735683),(480205,3,735689),(480210,3,735695),(480215,3,735701),(480220,3,735707),(480227,3,735717),(480232,3,735723),(480237,3,735729),(480242,3,735735),(480251,3,735749),(480256,3,735755),(480265,3,735769),(480270,3,735775),(480278,3,735781),(480284,3,735787),(480299,3,735801),(480316,3,735823),(480321,3,735829),(480332,3,735847),(480345,3,735865),(480354,3,735879),(480369,3,735905),(480374,3,735911),(480379,3,735917),(480387,3,735927),(480399,3,735941),(480407,3,735951),(480414,3,735961),(480421,3,735971),(480426,3,735977),(480433,3,735987),(480438,3,735993),(480451,3,736015),(480460,3,736029),(480467,3,736039),(480479,3,736053),(480499,3,736087),(480506,3,736098),(480535,3,736153),(480546,3,736171),(480555,3,736185),(480562,3,736195),(480569,3,736205),(480578,3,736219),(480583,3,736225),(480590,3,736235),(480602,3,736253),(480613,3,736263),(480625,3,736273),(480655,3,736327),(480664,3,736341),(480675,3,736359),(480688,3,736381),(480693,3,736387),(480700,3,736397),(480705,3,736403),(480712,3,736413),(480719,3,736423),(480726,3,736433),(480746,3,736451),(480764,3,736481),(480771,3,736491),(480776,3,736497),(480795,3,736531),(480805,3,736545),(480816,3,736564),(480821,3,736570),(480843,3,736608),(480848,3,736614),(480853,3,736620),(480858,3,736626),(480863,3,736632),(480868,3,736638),(480873,3,736644),(480880,3,736654),(480885,3,736660),(480890,3,736666),(480908,3,736684),(480939,3,736738),(480971,3,736796),(480978,3,736806),(480989,3,736820),(481005,3,736846),(481023,3,736876),(481030,3,736886),(481035,3,736892),(481040,3,736898),(481047,3,736908),(481052,3,736914),(481061,3,736928),(481066,3,736934),(481073,3,736944),(481078,3,736950),(481087,3,736964),(481092,3,736970),(481097,3,736976),(481102,3,736982),(481107,3,736988),(481114,3,736998),(481119,3,737004),(481124,3,737010),(481148,3,737028),(481153,3,737034),(481167,3,737056),(481172,3,737062),(481178,3,737068),(481187,3,737082),(481192,3,737088),(481202,3,737102),(481225,3,737144),(481242,3,737174),(481263,3,737212),(481268,3,737218),(481277,3,737232),(481282,3,737238),(481287,3,737244),(481314,3,737282),(481353,3,737352),(481398,3,737434),(481418,3,737468),(481425,3,737478),(481430,3,737484),(481435,3,737490),(481440,3,737496),(481445,3,737502),(481454,3,737516),(481459,3,737522),(481466,3,737532),(481471,3,737538),(481528,3,737632),(481556,3,737682),(481569,3,737704),(481595,3,737750),(481606,3,737768),(481611,3,737774),(481616,3,737780),(481627,3,737798),(481632,3,737804),(481637,3,737810),(481661,3,737836),(481673,3,737854),(481687,3,737876),(481704,3,737902),(481714,3,737916),(481723,3,737930),(481728,3,737936),(481735,3,737946),(481754,3,737972),(481763,3,737986),(481781,3,738016),(481793,3,738034),(481798,3,738040),(481807,3,738054),(481812,3,738060),(481819,3,738070),(481824,3,738076),(481829,3,738082),(481834,3,738088),(481839,3,738094),(481844,3,738100),(481849,3,738106),(481864,3,738116),(481894,3,738170),(481915,3,738208),(481927,3,738226),(481934,3,738236),(481939,3,738242),(481946,3,738252),(481955,3,738266),(481960,3,738272),(481967,3,738282),(481976,3,738296),(481981,3,738302),(481986,3,738308),(481995,3,738322),(482000,3,738328),(482005,3,738334),(482010,3,738340),(482015,3,738346),(482020,3,738352),(482025,3,738358),(482032,3,738368),(482043,3,738386),(482048,3,738392),(482053,3,738398),(482058,3,738404),(482063,3,738410),(482068,3,738416),(482075,3,738426),(482080,3,738432),(482085,3,738438),(482090,3,738444),(482118,3,738466),(482154,3,738520),(482160,3,738526),(482190,3,738580),(482210,3,738614),(482217,3,738624),(482222,3,738630),(482229,3,738640),(482234,3,738646),(482239,3,738652),(482246,3,738662),(482251,3,738668),(482256,3,738674),(482261,3,738680),(482266,3,738686),(482271,3,738692),(482276,3,738698),(482281,3,738704),(482286,3,738710),(482302,3,738720),(482310,3,738726),(482347,3,738796),(482356,3,738810),(482368,3,738828),(482390,3,738866),(482405,3,738888),(482410,3,738894),(482417,3,738904),(482422,3,738910),(482427,3,738916),(482438,3,738934),(482445,3,738944),(482452,3,738954),(482457,3,738960),(482462,3,738966),(482487,3,738996),(482493,3,739002),(482498,3,739008),(482508,3,739022),(482554,3,739108),(482624,3,739242),(482633,3,739256),(482653,3,739286),(482671,3,739316),(482680,3,739330),(482685,3,739336),(482692,3,739346),(482699,3,739356),(482704,3,739362),(482711,3,739372),(482716,3,739378),(482729,3,739400),(482734,3,739406),(482749,3,739432),(482758,3,739446),(482772,3,739460),(482834,3,739570),(482845,3,739588),(482870,3,739630),(482881,3,739648),(482888,3,739658),(482910,3,739696),(482939,3,739750),(482944,3,739756),(482954,3,739770),(482965,3,739788),(482999,3,739846),(483006,3,739856),(483013,3,739866),(483020,3,739876),(483027,3,739887),(483032,3,739893),(483039,3,739903),(483054,3,739921),(483064,3,739935),(483078,3,739957),(483090,3,739975),(483095,3,739981),(483114,3,740011),(483124,3,740025),(483135,3,740043),(483140,3,740049),(483147,3,740059),(483154,3,740069),(483159,3,740075),(483164,3,740081),(483169,3,740087),(483174,3,740093),(483181,3,740103),(483188,3,740113),(483193,3,740119),(483198,3,740125),(483205,3,740135),(483210,3,740141),(483215,3,740147),(483222,3,740157),(483227,3,740163),(483232,3,740169),(483239,3,740179),(483244,3,740185),(483274,3,740207),(483293,3,740241),(483298,3,740247),(483303,3,740253),(483310,3,740263),(483315,3,740269),(483321,3,740275),(483334,3,740289),(483341,3,740299),(483346,3,740305),(483363,3,740331),(483371,3,740341),(483382,3,740359),(483393,3,740377),(483398,3,740383),(483403,3,740389),(483421,3,740411),(483426,3,740417),(483448,3,740455),(483461,3,740477),(483470,3,740491),(483480,3,740505),(483487,3,740515),(483495,3,740525),(483508,3,740547),(483548,3,740617),(483557,3,740631),(483564,3,740641),(483569,3,740647),(483574,3,740653),(483579,3,740659),(483584,3,740665),(483591,3,740675),(483596,3,740681),(483601,3,740687),(483608,3,740697),(483615,3,740707),(483630,3,740713),(483645,3,740739),(483650,3,740745),(483661,3,740759),(483672,3,740777),(483677,3,740783),(483697,3,740817),(483714,3,740847),(483719,3,740853),(483745,3,740895),(483760,3,740917),(483768,3,740927),(483778,3,740941),(483785,3,740951),(483797,3,740969),(483802,3,740975),(483809,3,740985),(483816,3,740995),(483821,3,741001),(483828,3,741011),(483835,3,741021),(483840,3,741027),(483853,3,741049),(483859,3,741055),(483866,3,741065),(483904,3,741123),(483913,3,741137),(483927,3,741159),(483943,3,741185),(483956,3,741207),(483964,3,741217),(483970,3,741223),(483992,3,741257),(484009,3,741287),(484016,3,741297),(484021,3,741303),(484026,3,741309),(484031,3,741315),(484044,3,741329),(484052,3,741339),(484063,3,741357),(484068,3,741363),(484077,3,741373),(484092,3,741395),(484099,3,741405),(484134,3,741471),(484145,3,741489),(484172,3,741535),(484177,3,741541),(484182,3,741547),(484187,3,741553),(484194,3,741563),(484205,3,741581),(484232,3,741631),(484241,3,741645),(484248,3,741655),(484255,3,741665),(484264,3,741679),(484269,3,741685),(484274,3,741691),(484281,3,741701),(484286,3,741707),(484299,3,741729),(484328,3,741759),(484348,3,741789),(484355,3,741799),(484366,3,741817),(484377,3,741831),(484387,3,741845),(484407,3,741879),(484418,3,741897),(484423,3,741903),(484428,3,741909),(484433,3,741915),(484440,3,741926),(484447,3,741936),(484454,3,741946),(484461,3,741956),(484466,3,741962),(484471,3,741968),(484487,3,741978),(484500,3,742000),(484507,3,742010),(484514,3,742020),(484519,3,742026),(484537,3,742056),(484552,3,742082),(484559,3,742092),(484564,3,742098),(484575,3,742116),(484586,3,742134),(484595,3,742148),(484602,3,742158),(484609,3,742168),(484614,3,742174),(484619,3,742180),(484626,3,742190),(484631,3,742196),(484636,3,742202),(484641,3,742208),(484681,3,742258),(484717,3,742320),(484738,3,742358),(484749,3,742376),(484758,3,742390),(484778,3,742424),(484783,3,742430),(484788,3,742436),(484793,3,742442),(484798,3,742448),(484803,3,742454),(484810,3,742464),(484815,3,742470),(484820,3,742476),(484829,3,742490),(484834,3,742496),(484839,3,742502),(484844,3,742508),(484849,3,742514),(484854,3,742520),(484859,3,742526),(484864,3,742532),(484871,3,742542),(484876,3,742548),(484881,3,742554),(484904,3,742576),(484919,3,742602),(484924,3,742608),(484929,3,742614),(484936,3,742625),(484945,3,742639),(484956,3,742657),(484977,3,742691),(484982,3,742697),(484989,3,742707),(484995,3,742713),(485000,3,742719),(485013,3,742741),(485022,3,742755),(485027,3,742761),(485047,3,742791),(485052,3,742797),(485070,3,742827),(485077,3,742837),(485084,3,742847),(485089,3,742853),(485096,3,742863),(485103,3,742873),(485108,3,742879),(485113,3,742885),(485120,3,742895),(485125,3,742901),(485130,3,742907),(485135,3,742913),(485145,3,742923),(485153,3,742929),(485159,3,742935),(485172,3,742957),(485213,3,743031),(485264,3,743129),(485269,3,743135),(485274,3,743141),(485279,3,743147),(485292,3,743170),(485299,3,743180),(485304,3,743186),(485309,3,743192),(485314,3,743198),(485319,3,743204),(485324,3,743210),(485329,3,743216),(485334,3,743222),(485341,3,743232),(485346,3,743238),(485351,3,743244),(485356,3,743250),(485361,3,743256),(485366,3,743262),(485371,3,743268),(485375,3,743271),(485381,3,743280),(485388,3,743290),(485393,3,743296),(485398,3,743302),(485403,3,743308),(485408,3,743314),(485413,3,743320),(485436,3,743362),(485441,3,743368),(485446,3,743374),(485453,3,743384),(485462,3,743398),(485467,3,743404),(485472,3,743410),(485477,3,743416),(485482,3,743422),(485487,3,743428),(485494,3,743438),(485499,3,743444),(485508,3,743458),(485513,3,743464),(485520,3,743474),(485531,3,743492),(485538,3,743502),(485560,3,743540),(485577,3,743570),(485584,3,743580),(485611,3,743618),(485616,3,743624),(485623,3,743634),(485630,3,743644),(485643,3,743666),(485664,3,743696),(485681,3,743722),(485709,3,743772),(485736,3,743810),(485741,3,743816),(485746,3,743822),(485751,3,743828),(485758,3,743839),(485767,3,743853),(485772,3,743859),(485777,3,743865),(485782,3,743871),(485787,3,743877),(485792,3,743883),(485801,3,743897),(485808,3,743907),(485824,3,743933),(485834,3,743947),(485845,3,743965),(485872,3,744015),(485893,3,744053),(485902,3,744067),(485909,3,744077),(485927,3,744095),(485963,3,744157),(485968,3,744163),(485977,3,744177),(485982,3,744183),(485995,3,744205),(486000,3,744211),(486005,3,744217),(486011,3,744223),(486012,3,744224),(486020,3,744235),(486029,3,744249),(486034,3,744255),(486043,3,744269),(486048,3,744275),(486055,3,744285),(486085,3,744323),(486094,3,744337),(486099,3,744343),(486117,3,744373),(486129,3,744391),(486134,3,744397),(486139,3,744403),(486144,3,744409),(486153,3,744423),(486164,3,744437),(486173,3,744451),(486178,3,744457),(486187,3,744471),(486194,3,744481),(486199,3,744487),(486204,3,744493),(486209,3,744499),(486214,3,744505),(486219,3,744511),(486224,3,744517),(486229,3,744523),(486236,3,744533),(486243,3,744543),(486248,3,744549),(486253,3,744555),(486258,3,744561),(486263,3,744567),(486276,3,744589),(486281,3,744595),(486303,3,744621),(486318,3,744647),(486326,3,744657),(486333,3,744667),(486342,3,744681),(486349,3,744691),(486364,3,744717),(486369,3,744723),(486378,3,744737),(486385,3,744747),(486390,3,744753),(486395,3,744759),(486400,3,744765),(486405,3,744771),(486410,3,744777),(486417,3,744787),(486424,3,744797),(486484,3,744895),(486501,3,744925),(486506,3,744931),(486517,3,744949),(486527,3,744963),(486536,3,744977),(486541,3,744983),(486546,3,744989),(486551,3,744995),(486556,3,745001),(486561,3,745007),(486568,3,745017),(486573,3,745023),(486578,3,745029),(486583,3,745035),(486588,3,745041),(486593,3,745047),(486598,3,745053),(486603,3,745059),(486608,3,745065),(486613,3,745071),(486622,3,745085),(486631,3,745099),(486636,3,745105),(486641,3,745111),(486646,3,745117),(486653,3,745128),(486658,3,745134),(486667,3,745148),(486672,3,745154),(486679,3,745164),(486684,3,745170),(486689,3,745176),(486694,3,745182),(486699,3,745188),(486708,3,745202),(486717,3,745216),(486722,3,745222),(486727,3,745228),(486732,3,745234),(486739,3,745244),(486746,3,745254),(486753,3,745264),(486768,3,745290),(486815,3,745352),(486820,3,745358),(486831,3,745376),(486852,3,745414),(486868,3,745440),(486881,3,745458),(486892,3,745476),(486905,3,745498),(486910,3,745504),(486915,3,745510),(486922,3,745520),(486939,3,745550),(486944,3,745556),(486964,3,745582),(486977,3,745604),(486982,3,745610),(486987,3,745616),(486992,3,745622),(486997,3,745628),(487008,3,745646),(487013,3,745652),(487018,3,745658),(487023,3,745664),(487028,3,745670),(487033,3,745676),(487040,3,745686),(487079,3,745752),(487092,3,745774),(487101,3,745788),(487112,3,745806),(487123,3,745824),(487128,3,745830),(487133,3,745836),(487144,3,745854),(487153,3,745864),(487162,3,745878),(487167,3,745884),(487174,3,745894),(487181,3,745904),(487215,3,745950),(487240,3,745996),(487255,3,746022),(487260,3,746028),(487275,3,746054),(487280,3,746060),(487287,3,746070),(487292,3,746076),(487297,3,746082),(487311,3,746100),(487323,3,746118),(487328,3,746124),(487333,3,746130),(487338,3,746136),(487347,3,746150),(487362,3,746176),(487371,3,746190),(487380,3,746204),(487405,3,746250),(487428,3,746292),(487446,3,746310),(487458,3,746328),(487468,3,746338),(487477,3,746352),(487484,3,746362),(487489,3,746368),(487494,3,746374),(487501,3,746384),(487506,3,746390),(487513,3,746400),(487518,3,746406),(487527,3,746420),(487534,3,746430),(487547,3,746452),(487555,3,746462),(487561,3,746468),(487597,3,746526),(487605,3,746536),(487614,3,746550),(487619,3,746556),(487629,3,746566),(487639,3,746580),(487652,3,746598),(487670,3,746628),(487675,3,746634),(487683,3,746644),(487696,3,746666),(487701,3,746672),(487706,3,746678),(487711,3,746684),(487720,3,746698),(487727,3,746708),(487732,3,746714),(487737,3,746720),(487742,3,746726),(487749,3,746736),(487758,3,746750),(487765,3,746761),(487770,3,746767),(487775,3,746773),(487787,3,746787),(487796,3,746797),(487810,3,746815),(487833,3,746857),(487838,3,746863),(487855,3,746886),(487877,3,746924),(487882,3,746930),(487887,3,746936),(487894,3,746946),(487901,3,746956),(487906,3,746962),(487913,3,746972),(487918,3,746978),(487923,3,746984),(487930,3,746994),(487937,3,747004),(487942,3,747010),(487947,3,747016),(487956,3,747030),(487961,3,747036),(487966,3,747042),(487977,3,747060),(487982,3,747066),(487987,3,747072),(487992,3,747078),(487997,3,747084),(488002,3,747090),(488007,3,747096),(488012,3,747102),(488021,3,747116),(488026,3,747122),(488031,3,747128),(488036,3,747134),(488041,3,747140),(488048,3,747150),(488055,3,747160),(488060,3,747166),(488065,3,747172),(488072,3,747182),(488077,3,747188),(488084,3,747198),(488095,3,747216),(488100,3,747222),(488105,3,747228),(488124,3,747258),(488129,3,747264),(488136,3,747274),(488160,3,747300),(488180,3,747326),(488185,3,747332),(488202,3,747362),(488237,3,747412),(488245,3,747422),(488259,3,747444),(488273,3,747466),(488280,3,747476),(488285,3,747482),(488290,3,747488),(488297,3,747498),(488302,3,747504),(488307,3,747510),(488314,3,747520),(488319,3,747526),(488324,3,747532),(488329,3,747538),(488336,3,747548),(488345,3,747562),(488350,3,747568),(488355,3,747574),(488360,3,747580),(488365,3,747586),(488370,3,747592),(488375,3,747598),(488380,3,747604),(488411,3,747646),(488416,3,747652),(488419,3,747654),(488428,3,747669),(488441,3,747691),(488458,3,747721),(488473,3,747747),(488484,3,747765),(488496,3,747779),(488502,3,747785),(488517,3,747807),(488524,3,747817),(488533,3,747831),(488540,3,747841),(488547,3,747851),(488552,3,747857),(488563,3,747875),(488568,3,747881),(488575,3,747891),(488580,3,747897),(488585,3,747903),(488590,3,747909),(488595,3,747915),(488600,3,747921),(488605,3,747927),(488614,3,747941),(488619,3,747947),(488624,3,747953),(488629,3,747959),(488634,3,747965),(488641,3,747975),(488646,3,747981),(488651,3,747987),(488658,3,747997),(488665,3,748007),(488672,3,748017),(488677,3,748023),(488686,3,748037),(488691,3,748043),(488696,3,748049),(488703,3,748059),(488708,3,748065),(488713,3,748071),(488730,3,748093),(488735,3,748099),(488775,3,748153),(488796,3,748183),(488803,3,748193),(488814,3,748211),(488823,3,748225),(488836,3,748247),(488847,3,748261),(488862,3,748283),(488871,3,748297),(488884,3,748319),(488906,3,748353),(488915,3,748367),(488924,3,748381),(488929,3,748387),(488936,3,748397),(488941,3,748403),(488946,3,748409),(488953,3,748419),(488962,3,748425),(488969,3,748431),(488975,3,748437),(488984,3,748451),(488991,3,748461),(488996,3,748467),(489009,3,748489),(489018,3,748503),(489025,3,748513),(489035,3,748527),(489040,3,748533),(489049,3,748547),(489080,3,748589),(489085,3,748595),(489090,3,748601),(489095,3,748607),(489100,3,748613),(489105,3,748619),(489112,3,748629),(489125,3,748651),(489130,3,748657),(489135,3,748663),(489142,3,748673),(489147,3,748679),(489152,3,748685),(489157,3,748691),(489162,3,748697),(489167,3,748703),(489176,3,748717),(489181,3,748723),(489186,3,748729),(489193,3,748739),(489200,3,748749),(489205,3,748755),(489210,3,748761),(489217,3,748771),(489230,3,748793),(489235,3,748799),(489242,3,748809),(489247,3,748815),(489258,3,748829),(489268,3,748843),(489278,3,748857),(489289,3,748871),(489315,3,748901),(489322,3,748911),(489329,3,748921),(489334,3,748927),(489341,3,748937),(489350,3,748951),(489389,3,749005),(489396,3,749015),(489401,3,749021),(489406,3,749027),(489411,3,749033),(489416,3,749039),(489421,3,749045),(489426,3,749051),(489435,3,749065),(489440,3,749071),(489445,3,749077),(489452,3,749087),(489459,3,749097),(489464,3,749103),(489469,3,749109),(489476,3,749119),(489485,3,749133),(489492,3,749143),(489503,3,749161),(489516,3,749183),(489525,3,749197),(489530,3,749203),(489535,3,749209),(489544,3,749223),(489555,3,749241),(489564,3,749255),(489569,3,749261),(489578,3,749275),(489585,3,749285),(489592,3,749295),(489597,3,749301),(489608,3,749319),(489615,3,749329),(489624,3,749343),(489631,3,749353),(489638,3,749363),(489643,3,749369),(489652,3,749383),(489661,3,749397),(489666,3,749403),(489675,3,749417),(489680,3,749423),(489687,3,749433),(489692,3,749439),(489697,3,749445),(489702,3,749451),(489736,3,749473),(489758,3,749499),(489763,3,749505),(489772,3,749519),(489783,3,749537),(489788,3,749543),(489793,3,749549),(489813,3,749583),(489824,3,749593),(489830,3,749599),(489839,3,749613),(489846,3,749619),(489856,3,749633),(489861,3,749639),(489866,3,749645),(489871,3,749651),(489876,3,749657),(489881,3,749663),(489888,3,749673),(489893,3,749679),(489898,3,749685),(489907,3,749699),(489912,3,749705),(489917,3,749711),(489922,3,749717),(489929,3,749727),(489942,3,749749),(489949,3,749759),(489960,3,749777),(489979,3,749811),(489994,3,749837),(490004,3,749847),(490015,3,749865),(490044,3,749903),(490049,3,749909),(490058,3,749923),(490063,3,749929),(490070,3,749939),(490077,3,749949),(490086,3,749963),(490091,3,749969),(490096,3,749975),(490103,3,749985),(490112,3,749999),(490124,3,750013),(490129,3,750019),(490134,3,750025),(490160,3,750067),(490173,3,750089),(490199,3,750131),(490206,3,750141),(490211,3,750147),(490218,3,750157),(490223,3,750163),(490228,3,750169),(490235,3,750179),(490240,3,750185),(490245,3,750191),(490250,3,750197),(490255,3,750203),(490260,3,750209),(490266,3,750215),(490267,3,750216),(490275,3,750227),(490280,3,750233),(490285,3,750239),(490292,3,750249),(490299,3,750259),(490304,3,750265),(490309,3,750271),(490316,3,750281),(490321,3,750287),(490336,3,750313),(490341,3,750319),(490346,3,750325),(490351,3,750331),(490358,3,750341),(490367,3,750355),(490372,3,750361),(490392,3,750387),(490407,3,750401),(490432,3,750447),(490437,3,750453),(490442,3,750459),(490447,3,750465),(490454,3,750475),(490459,3,750481),(490464,3,750487),(490475,3,750505),(490492,3,750535),(490511,3,750557),(490516,3,750563),(490523,3,750573),(490538,3,750599),(490545,3,750609),(490552,3,750619),(490557,3,750625),(490564,3,750635),(490569,3,750641),(490578,3,750655),(490583,3,750661),(490596,3,750675),(490607,3,750689),(490621,3,750711),(490646,3,750757),(490667,3,750795),(490674,3,750805),(490679,3,750811),(490684,3,750817),(490703,3,750851),(490716,3,750873),(490743,3,750907),(490750,3,750917),(490755,3,750923),(490760,3,750929),(490771,3,750947),(490778,3,750957),(490783,3,750963),(490788,3,750969),(490793,3,750975),(490800,3,750985),(490807,3,750995),(490829,3,751017),(490838,3,751031),(490851,3,751049),(490882,3,751107),(490887,3,751113),(490904,3,751135),(490903,3,751136),(490912,3,751147),(490921,3,751161),(490926,3,751167),(490931,3,751173),(490936,3,751179),(490941,3,751185),(490946,3,751191),(490951,3,751197),(490956,3,751203),(490961,3,751209),(490966,3,751215),(490971,3,751221),(490978,3,751231),(490985,3,751241),(490994,3,751255),(490999,3,751261),(491004,3,751267),(491011,3,751277),(491018,3,751287),(491023,3,751293),(491032,3,751307),(491039,3,751317),(491044,3,751323),(491049,3,751329),(491060,3,751347),(491065,3,751353),(491070,3,751359),(491075,3,751365),(491080,3,751371),(491085,3,751377),(491090,3,751383),(491097,3,751393),(491102,3,751399),(491107,3,751405),(491112,3,751411),(491117,3,751417),(491126,3,751431),(491131,3,751437),(491144,3,751459),(491149,3,751465),(491156,3,751475),(491161,3,751481),(491166,3,751487),(491171,3,751493),(491180,3,751507),(491187,3,751517),(491192,3,751523),(491199,3,751533),(491208,3,751547),(491215,3,751557),(491229,3,751575),(491240,3,751593),(491255,3,751615),(491265,3,751629),(491279,3,751647),(491313,3,751689),(491318,3,751695),(491339,3,751725),(491344,3,751731),(491350,3,751737),(491367,3,751767),(491376,3,751781),(491381,3,751787),(491390,3,751801),(491399,3,751815),(491406,3,751825),(491415,3,751839),(491420,3,751845),(491425,3,751851),(491430,3,751857),(491447,3,751887),(491454,3,751897),(491463,3,751912),(491484,3,751950),(491563,3,752104),(491580,3,752134),(491595,3,752160),(491604,3,752174),(491615,3,752192),(491624,3,752206),(491631,3,752216),(491652,3,752254),(491657,3,752260),(491664,3,752270),(491675,3,752288),(491680,3,752294),(491685,3,752300),(491692,3,752310),(491697,3,752316),(491704,3,752326),(491715,3,752344),(491742,3,752394),(491757,3,752420),(491762,3,752426),(491769,3,752436),(491774,3,752442),(491779,3,752448),(491786,3,752458),(491799,3,752480),(491806,3,752490),(491813,3,752500),(491821,3,752510),(491833,3,752524),(491838,3,752530),(491843,3,752536),(491848,3,752542),(491853,3,752548),(491858,3,752554),(491865,3,752564),(491870,3,752570),(491875,3,752576),(491886,3,752594),(491891,3,752600),(491933,3,752642),(491938,3,752648),(491965,3,752686),(491976,3,752704),(491991,3,752726),(492004,3,752748),(492013,3,752762),(492018,3,752768),(492023,3,752774),(492030,3,752780),(492037,3,752786),(492062,3,752816),(492073,3,752834),(492078,3,752840),(492089,3,752858),(492094,3,752864),(492099,3,752870),(492128,3,752908),(492139,3,752922),(492158,3,752956),(492163,3,752962),(492184,3,753000),(492196,3,753010),(492224,3,753044),(492231,3,753054),(492236,3,753060),(492241,3,753066),(492246,3,753072),(492253,3,753082),(492258,3,753088),(492267,3,753102),(492272,3,753108),(492277,3,753114),(492282,3,753120),(492287,3,753126),(492292,3,753132),(492297,3,753138),(492302,3,753144),(492307,3,753150),(492312,3,753156),(492317,3,753162),(492326,3,753176),(492331,3,753182),(492338,3,753192),(492343,3,753198),(492348,3,753204),(492357,3,753218),(492364,3,753228),(492377,3,753250),(492384,3,753260),(492389,3,753266),(492394,3,753272),(492401,3,753282),(492458,3,753368),(492463,3,753374),(492469,3,753380),(492489,3,753414),(492496,3,753424),(492503,3,753434),(492510,3,753444),(492515,3,753450),(492528,3,753472),(492537,3,753486),(492577,3,753552),(492584,3,753562),(492591,3,753572),(492596,3,753578),(492605,3,753592),(492610,3,753598),(492615,3,753604),(492620,3,753610),(492625,3,753616),(492630,3,753622),(492636,3,753628),(492653,3,753654),(492664,3,753672),(492681,3,753702),(492686,3,753708),(492693,3,753718),(492700,3,753728),(492705,3,753734),(492716,3,753752),(492727,3,753770),(492736,3,753784),(492745,3,753798),(492754,3,753812),(492759,3,753818),(492764,3,753824),(492783,3,753846),(492817,3,753896),(492842,3,753942),(492847,3,753948),(492854,3,753958),(492863,3,753972),(492870,3,753982),(492895,3,754020),(492900,3,754026),(492907,3,754036),(492914,3,754046),(492919,3,754052),(492924,3,754058),(492929,3,754064),(492934,3,754070),(492943,3,754084),(492950,3,754094),(492957,3,754104),(492964,3,754114),(492969,3,754120),(492981,3,754138),(492996,3,754164),(493002,3,754170),(493007,3,754176),(493027,3,754202),(493035,3,754208),(493042,3,754218),(493053,3,754236),(493064,3,754254),(493071,3,754264),(493076,3,754270); + +/*!40000 ALTER TABLE `GroupMembers` ENABLE KEYS */;