Need Help to .SDO_LRS.OFFSET_GEOM_SEGMENT
426102Jul 27 2005 — edited Jul 28 2005Hi list
i've a problem. We have thousand of lrs geometrie. we try to receive a geometric segment with the command: SDO_LRS.OFFSET_GEOM_SEGMENT
Sometimes it works and sometimes it failes with the error Ora 13292 (arc_tolerance);
g_event_geom := mdsys.SDO_LRS.OFFSET_GEOM_SEGMENT(g_route_geom, f_von_km*1000, f_bis_km*1000, f_offset, 0.0000001);
But in our trigger we doesn't use the Arc_Tolerance because we work in a Cartesian system.
Any ideas?
Thanks in advance
Rolf
The Trigger:
CREATE OR REPLACE TRIGGER
"IGGIS_NUTZERDATEN"."CreateLrsToMapinfoGeometrie" BEFORE
INSERT
OR UPDATE OF "F_BIS_KM", "F_OFFSET", "F_VON_KM", "I_ROUTNR" ON "E8_GN10GWUNTERIRD" FOR EACH ROW
DECLARE
c_info E8_GN10GWUNTERIRD.C_INFO%TYPE;
c_bfs E8_GN10GWUNTERIRD.C_BFSNR%TYPE;
i_id E8_GN10GWUNTERIRD.I_ID%TYPE;
i_route_id E8_GN10GWUNTERIRD.I_ROUTNR%TYPE;
f_von_km E8_GN10GWUNTERIRD.F_VON_KM%TYPE;
f_bis_km E8_GN10GWUNTERIRD.F_BIS_KM%TYPE;
f_xmin E8_GN10GWUNTERIRD.F_X_MIN%TYPE;
f_ymin E8_GN10GWUNTERIRD.F_Y_MIN%TYPE;
f_xmax E8_GN10GWUNTERIRD.F_X_MAX%TYPE;
f_ymax E8_GN10GWUNTERIRD.F_Y_MAX%TYPE;
i_von_gesnrsg E8_GN10GWUNTERIRD.I_VON_GESNRSG%TYPE;
i_bis_gesnrsg E8_GN10GWUNTERIRD.I_BIS_GESNRSG%TYPE;
c_art E8_GN10GWUNTERIRD.C_ART%TYPE;
m_style E8_GN10GWUNTERIRD.MI_STYLE%TYPE;
c_message E8_GN10GWUNTERIRD.C_MESSAGE%TYPE;
i_prinx E8_GN10GWUNTERIRD.MI_PRINX%TYPE;
f_offset E8_GN10GWUNTERIRD.F_OFFSET%TYPE;
mi_prinx E8_GN10GWUNTERIRD.MI_PRINX%TYPE;
g_route_geom MDSYS.SDO_GEOMETRY;
g_event_geom MDSYS.SDO_GEOMETRY;
g_event_geom_ohne_offset MDSYS.SDO_GEOMETRY;
g_mapinfo_geom MDSYS.SDO_GEOMETRY;
g_mapinfo_geom_ohne_offset MDSYS.SDO_GEOMETRY;
g_anfangspunkt MDSYS.SDO_GEOMETRY;
g_endpunkt MDSYS.SDO_GEOMETRY;
f_length Number;
f_length_Route Number;
f_start_measure_Route Number;
f_end_measure_Route Number;
f_distanz Number;
BEGIN
-- Abfüllen der neuen Daten
c_bfs := :new.C_BFSNR;
i_route_id := :new.I_ROUTNR;
f_von_km := :new.F_VON_KM ;
f_bis_km := :new.F_BIS_KM ;
f_offset := :new.F_OFFSET;
c_art := :new.C_ART;
i_id := 0;
mi_prinx := 0;
-- Prüfung
-- ***********************************
-- Abfrage der Grenzdaten (Anfangspunkt und Endpunkt im km) der gewählten Route
SELECT GEOLOC, SDO_LRS.GEOM_SEGMENT_START_MEASURE(GEOLOC) / 1000 ,SDO_LRS.GEOM_SEGMENT_END_MEASURE(GEOLOC) / 1000
INTO g_route_geom, f_start_measure_Route,f_end_measure_Route FROM E8_GN10GWROUTEN WHERE I_ROUTNR = i_route_id AND C_BFSNR = c_bfs; -- Gehe davon aus das Route vorhanden ist
/*
-- Prüfte von uns bis Werte und koorigiere diese eventuell
IF f_von_km < f_start_measure_Route THEN
f_von_km := f_start_measure_Route;
:new.F_VON_KM := f_von_km;
ELSE
IF f_von_km > f_end_measure_Route THEN
f_von_km := f_end_measure_Route;
:new.F_VON_KM := f_von_km;
END IF;
END IF;
IF f_bis_km > f_end_measure_Route THEN
f_bis_km := f_end_measure_Route;
:new.F_BIS_KM := f_bis_km;
ELSE
IF f_bis_km < f_start_measure_Route THEN
f_bis_km := f_start_measure_Route;
:new.F_BIS_KM := f_bis_km;
END IF;
END IF; */
-- Geometrie konstruieren
-- ***********************************
-- LRS Geometrie kontruieren
/* ohne Offset für die bestimmung der Anfangs- bzw. Endabschnitte */
g_event_geom_ohne_offset := mdsys.SDO_LRS.OFFSET_GEOM_SEGMENT(g_route_geom, f_von_km*1000, f_bis_km*1000, 0);
IF g_event_geom_ohne_offset IS NULL THEN
RAISE_APPLICATION_ERROR(-20000, 'Geometrie (ohne Offset) konnte nicht erstellt werden. ' || TO_CHAR(f_von_km*1000) || ' / ' || TO_CHAR(f_bis_km*1000));
END IF;
g_event_geom := mdsys.SDO_LRS.OFFSET_GEOM_SEGMENT(g_route_geom, f_von_km*1000, f_bis_km*1000, f_offset, 0.0000001);
if g_event_geom IS NULL THEN
RAISE_APPLICATION_ERROR(-20000, 'Geometrie (mit Offset) konnte nicht erstellt werden. ' || TO_CHAR(f_von_km*1000) || ' / ' || TO_CHAR(f_bis_km*1000));
end if;
-- LRS Geometrien wandeln
g_mapinfo_geom_ohne_offset := mdsys.SDO_LRS.CONVERT_TO_STD_GEOM(g_event_geom_ohne_offset);
g_mapinfo_geom := mdsys.SDO_LRS.CONVERT_TO_STD_GEOM(g_event_geom);
-- Abfüllen der Daten
-- ***********************************
:NEW.C_INFO := TRIM( BOTH ' ' FROM c_art) || ' ' || TO_CHAR(f_von_km) || ' / ' || TO_CHAR(f_bis_km) ;
-- Anfangs und Endpunktkoordinaten abfüllen
g_anfangspunkt := get_point(g_mapinfo_geom);
:new.F_X_MIN := g_anfangspunkt.sdo_point.x;
:new.F_Y_MIN := g_anfangspunkt.sdo_point.y;
g_endpunkt := get_point(g_mapinfo_geom, mdsys.SDO_UTIL.GETNUMVERTICES(g_mapinfo_geom));
:new.F_X_MAX := g_endpunkt.sdo_point.x;
:new.F_Y_MAX := g_endpunkt.sdo_point.y;
/*
-- Abschnitte an Anfangs- und Endpunkt bestimmen; dazu wird die Geometrie "ohne Offset" benötigt
g_anfangspunkt := get_point(g_mapinfo_geom_ohne_offset);
SELECT i_kggnr, SDO_NN_DISTANCE(1) into i_von_gesnrsg, f_distanz FROM E8_GN10GWNETZ
WHERE I_ROUTNR = i_route_id AND C_BFSNR = c_bfs AND SDO_NN (geoloc, g_anfangspunkt, 'SDO_NUM_RES=1',1) = 'TRUE';
IF f_distanz < 1 THEN
:new.I_VON_GESNRSG := i_von_gesnrsg;
ELSE
:new.I_VON_GESNRSG := 0;
END IF;
g_endpunkt := get_point(g_mapinfo_geom_ohne_offset, mdsys.SDO_UTIL.GETNUMVERTICES(g_mapinfo_geom_ohne_offset));
SELECT i_kggnr, SDO_NN_DISTANCE(1) into i_bis_gesnrsg, f_distanz FROM E8_GN10GWNETZ
WHERE I_ROUTNR = i_route_id AND C_BFSNR = c_bfs AND SDO_NN (geoloc, g_endpunkt, 'SDO_NUM_RES=1',1) = 'TRUE';
IF f_distanz < 1 THEN
:new.I_BIS_GESNRSG := i_bis_gesnrsg;
ELSE
:new.I_BIS_GESNRSG := 0;
END IF;
*/
:new.MI_STYLE := 'Pen (3, 2, 8432639)'; -- Hellblaue Linie*/
-- Bei einem neuen Datensatz müssen I_ID und MI_PRINX bestimmt werden
IF INSERTING THEN
/* -- I_ID: Grösste I_ID innerhalb einer BfsNr bestimmen und inkrementieren (eindeutiger Wert innerhalb einer Gemeinde!)
SELECT Max(I_ID) + 1 INTO i_id FROM E8_GN10GWUNTERIRD WHERE C_BFSNR like c_bfsnr;
IF i_id IS NULL THEN
i_id := 1;
END IF ;
:new.I_ID := i_id;
-- MI_PRINX: Grösste MI_PRINX bestimmen und inkrementieren (eindeutiger Wert für Mapinfo über die ganze Tabelle!)
SELECT Max(MI_PRINX) + 1 INTO mi_prinx FROM E8_GN10GWUNTERIRD;
IF mi_prinx IS NULL THEN
mi_prinx := 1;
END IF ;
:new.MI_PRINX := mi_prinx;
*/
:new.GEOLOC := g_mapinfo_geom;
ELSIF UPDATING THEN
-- LRS Geometrie schreiben
-- c_message:= CONCAT(TO_CHAR(f_length), ' LRS Update , Route: ');
-- c_message:= CONCAT(c_message, TO_CHAR(f_length_Route));
-- c_message:= CONCAT(c_message, TO_CHAR(i_route_id));
-- :new.C_MESSAGE := c_message;
:new.GEOLOC := g_mapinfo_geom;
END IF;
END;
The LRS Geometrie:
I_ROUTNR
----------
GEOLOC(SDO_GTYPE, SDO_SRID, SDO_POINT(X, Y, Z), SDO_ELEM_INFO, SDO_ORDINATES)
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
2,4485E+10
SDO_GEOMETRY(3302, 262148, NULL, SDO_ELEM_INFO_ARRAY(1, 2, 1), SDO_ORDINATE_ARRAY(750875,499, 242080,249, 48479, 750869,379, 242112,401, 48446,3194, 750868,367, 242136,701, 48422,0346, 750867,68, 242170,166, 48388,6124, 750858,884, 242233,256, 48325,0069, 750856,929, 242269,147, 48289,1163, 750853,309, 242298,229, 48259,8535, 750849,09, 242309,367, 48247,9609, 750841,956, 242317,71, 48237, 750820,914, 242352,789, 48196,0121, 750787,719, 242384,913, 48149,726, 750777,546, 242397,227, 48133,7214, 750771,122, 242412,754, 48116,8844, 750760,949, 242453,98, 48074,3368, 750761,484, 242510,197, 48018,0048, 750788,79, 242587,294, 47936,0513, 750790,931, 242618,883, 47904,3266, 750782,365, 242646,723, 47875,1402, 750766,303, 242675,635, 47842, 750738,462, 242705,617, 47801,0598, 750718,117, 242721,679, 47775,1226, 750697,237, 242730,246, 47752,5396, 750668,773, 242732,065, 47724, 750655,1, 242734,946, 47710,0335, 750626,42, 242737,195, 47681,2793, 750569,059, 242718,637, 47621,02, 750553,312, 242713,576, 47604,4876, 7
50525,757, 242714,138, 47576,9401, 750512,822, 242715,825, 47563,9019, 750465,584, 242726,51, 47515,4938, 750449,838, 242733,821, 47498,1416, 750427,315, 242760,818, 47463, 750391,914, 242799,055, 47410,9542, 750373,356, 242817,613, 47384,7409, 750353,111, 242841,795, 47353,2411, 750325,556, 242871,6, 47312,6992, 750306,998, 242897,468, 47280,9011, 750290,689, 242944,145, 47231,5165, 750276,068, 242991,945, 47181,5906, 750260,321, 243029,624, 47140,8025, 750236,14, 243088,109, 47077,592, 750224,893, 243122,976, 47041, 750212,521, 243165,715, 46996,2721, 750203,523, 243185,961, 46974, 750193,4, 243214,079, 46944,1082, 750175,405, 243243,322, 46909,7639, 750160,221, 243255,693, 46890,1737, 750097,236, 243266,378, 46826,2737, 750070,805, 243266,941, 46799,8305, 750042,125, 243273,689, 46770,3604, 750002,197, 243295,621, 46724,7946, 750014,007, 243321,49, 46696,3506, 750014,569, 243364,792, 46653,0347, 750002,759, 243433,962, 46582,8472, 749998,26, 243449,146, 46567,007, 749984,764, 243482,888, 46530,6574, 749975
,766, 243504,258, 46507,4649, 749954,396, 243538, 46467,5155, 749945,961, 243549,809, 46453, 749932,464, 243566,68, 46431,4149, 749907,158, 243602,671, 46387,4594, 749876,79, 243640,35, 46339,1117, 749859,357, 243654,971, 46316,3806, 749841,361, 243660,595, 46297,5441, 749825,615, 243663,969, 46281,4559, 749814,368, 243663,969, 46270,2196, 749801,996, 243660,595, 46257,4079, 749782,875, 243651,597, 46236,2955, 749746,884, 243629,102, 46193,893, 749719,328, 243613,919, 46162,4608, 749694,585, 243597,61, 46132,8544, 749663,655, 243582,426, 46098,431, 749636,661, 243585,238, 46071,3166, 749626,44, 243586,709, 46061, 749607,981, 243595,923, 46040,3711, 749589,985, 243606,608, 46019,444, 749571,989, 243622,354, 45995,5341, 749560,742, 243638,663, 45975,7249, 749537,685, 243678,59, 45929,623, 749527,563, 243743,824, 45863,6145, 749527, 243781,503, 45825,9348, 749532,062, 243826,492, 45780,6662, 749526,438, 243865,857, 45740,9053, 749521,939, 243884,977, 45721,265, 749516,316, 243899,036, 45706,1246, 749512,608, 243
902,574, 45701, 749497,195, 243914,22, 45681,6798, 749480,887, 243918,719, 45664,7607, 749432,523, 243924,343, 45616,0655, 749385,285, 243929,966, 45568,489, 749348,731, 243934,465, 45531,6552, 749329,049, 243936,715, 45511,8428, 749304,305, 243939,527, 45486,9368, 749263,815, 243956,96, 45442,8487, 749234,009, 243978,33, 45406,1695, 749186,863, 244021,851, 45342, 749148,036, 244057,714, 45289, 749134,409, 244069,918, 45270,7022, 749087,582, 244105,178, 45212,0691, 749077,574, 244112,327, 45199,7667, 749062,563, 244125,193, 45179,9913, 749051,841, 244136,631, 45164,3095, 749044,692, 244153,787, 45145,7187, 749032,54, 244188,813, 45108,6348, 749021,818, 244224,554, 45071,3103, 749008,951, 244273,163, 45021,014, 749003,232, 244305,33, 44988,3339, 748998,228, 244332,493, 44960,7066, 748996,799, 244368,95, 44924,212, 749001,803, 244393,969, 44898,6907, 749008,951, 244409,695, 44881,4119, 749019,181, 244425,541, 44862,5457, 749031,872, 244440,888, 44842,6258, 749050,463, 244455,264, 44819,1186, 749055,824, 244459,
723, 44812,1438, 749063,636, 244467,666, 44801, 749076,489, 244480,734, 44783, 749082,476, 244488,787, 44772,9649, 749088,999, 244505,095, 44755,3998, 749091,038, 244515,695, 44744,605, 749088,591, 244527,111, 44732,9292, 749082,068, 244539,75, 44718,7055, 749076,36, 244550,757, 44706,3059, 749068,206, 244559,319, 44694,4819, 749057,606, 244568,289, 44680,5952, 748981,366, 244615,99, 44590,6582, 748968,727, 244621,29, 44576,9522, 748954,865, 244624,144, 44562,7989, 748938,557, 244627,813, 44546,0824, 748920,619, 244626,998, 44528,1251, 748901,5, 244626,551, 44509, 748832,963, 244618,028, 44439,8965, 748729,815, 244604,574, 44335,8168, 748687,006, 244597,643, 44292,4261, 748640,528, 244590,304, 44245,346, 748581,819, 244580,52, 44185,7942, 748491,31, 244562,989, 44093,5516, 748451,355, 244554,427, 44052,6667, 748415,477, 244549,942, 44016,4893, 748386,938, 244549,127, 43987,9227, 748365,33, 244549,534, 43966,2988, 748353,099, 244550,757, 43954, 748332,714, 244558,096, 43932,3094, 748316,814, 244571,55, 43911,4
573, 748305,806, 244584,597, 43894,3673, 748294,798, 244599,274, 43876, 748286,236, 244616,805, 43856,4802, 748278,082, 244635,559, 43836,0201, 748269,113, 244656,76, 43812,9886, 748252,397, 244704,053, 43762,8035, 748242,204, 244731,369, 43733,6332, 748229,566, 244760,723, 43701,6584, 748218,15, 244784,37, 43675,387, 748205,511, 244814,54, 43642,6603, 748187,98, 244858,164, 43595,6222, 748175,287, 244888,198, 43563, 748165,149, 244911,165, 43537,9289, 748138,648, 244943,781, 43495,9606, 748120,302, 244964,166, 43468,5728, 748088,909, 245001,267, 43420,0381, 748062,408, 245033,068, 43378,6983, 748037,131, 245065,684, 43337,4899, 748010,63, 245094,63, 43298,2979, 747989,43, 245118,277, 43266,5821, 747967,414, 245134,177, 43239,4616, 747947,029, 245147,632, 43215,0695, 747927,052, 245156,193, 43193,3648, 747905,443, 245147,224, 43170, 747896,066, 245156,601, 43156,7491, 747888,822, 245163,58, 43146,6978, 747878,547, 245172,916, 43132,8255, 747867,648, 245182,253, 43118,4849, 747855,193, 245190,968, 43103,2952,
747840,246, 245202,484, 43084,4408, 747831,217, 245208,086, 43073,8233, 747823,289, 245213,899, 43064, 747814,333, 245236,188, 43039,8827, 747814,074, 245259,73, 43016,245, 747807,922, 245278,145, 42996,7517, 747809,776, 245283,709, 42990,8635, 747809,064, 245301,006, 42973,4824, 747805,199, 245321,398, 42952,6443, 747801,749, 245332,162, 42941,2956, 747803,33, 245346,006, 42927,3058, 747809,259, 245367,417, 42905, 747835,27, 245391,842, 42869,3564, 747839,624, 245404,905, 42855,6014, 747847,849, 245418,935, 42839,3554, 747862,846, 245446,027, 42808,4221, 747875,425, 245465,379, 42785,3655, 747903,485, 245499,244, 42741,4324, 747926,223, 245519,563, 42710,9707, 747939,769, 245527,788, 42695,1399, 747973,635, 245547,139, 42656,1763, 747996,857, 245558,75, 42630,2407, 748004,597, 245569,394, 42617,094, 748016,692, 245580,037, 42601, 748021,568, 245596,815, 42583,5474, 748020,278, 245616,919, 42563,4245, 748015,595, 245639,414, 42540,4729, 748013,452, 245666,834, 42513, 748007,108, 245733,523, 42446, 748003,9, 2
45745,617, 42434, 747991,821, 245789,173, 42388,6682, 747985,715, 245803,553, 42373, 747977,675, 245821,99, 42352,7188, 747953,677, 245852,247, 42313,779, 747922,172, 245853,107, 42282, 747912,835, 245862,778, 42268,6624, 747904,68, 245863,75, 42260,5139, 747894,182, 245865,193, 42250, 747872,759, 245870,718, 42227,8748, 747795,828, 245898,061, 42146,2244, 747761,533, 245912,891, 42108,8581, 747730,482, 245931,429, 42072,6922, 747719,823, 245948,113, 42052,8929, 747729,555, 245968,041, 42030,7142, 747744,849, 245985,652, 42007,3879, 747746,703, 245993,531, 41999,2932, 747746,239, 246007,897, 41984,919, 747731,872, 246019,02, 41966,7483, 747721,677, 246027,825, 41953,2766, 747702,676, 246036,167, 41932,5239, 747688,309, 246052,851, 41910,5052, 747680,43, 246069,072, 41892,4708, 747678,577, 246082,511, 41878,904, 747669,308, 246103,83, 41855,6558, 747654,699, 246122,434, 41832, 747640,574, 246132,563, 41814,5533, 747625,466, 246143,212, 41796, 747605,353, 246144,149, 41775,8673, 747582,644, 246135,807, 41751,67
72, 747490,419, 246084,829, 41646,3118, 747426,947, 246044,278, 41571, 747398,657, 246022,727, 41535,4464, 747351,849, 245979,164, 41471,5213, 747318,018, 245952,748, 41428,6109, 747233,208, 245905,476, 41331,5435, 747204,011, 245894,817, 41300,4704, 747146,544, 245885,085, 41242,2017, 747090,468, 245861,913, 41181,5437, 747027,44, 245835,033, 41113,0425, 746999,17, 245813,715, 41077,6455, 746972,29, 245803,519, 41048,9048, 746954,216, 245809,08, 41030, 746948,554, 245816,855, 41021, 746948,191, 245830,399, 41007,4341, 746952,362, 245838,741, 40998,0958, 746964,411, 245848,936, 40982,2925, 746962,094, 245855,425, 40975,3936, 746953,289, 245859,596, 40965,6384, 746946,337, 245867,938, 40954,7657, 746943,093, 245892,037, 40930,4188, 746929,653, 245898,061, 40915,672, 746914,36, 245920,307, 40888,6425, 746883,772, 245936,064, 40854,1913, 746830,94, 245961,553, 40795,4584, 746791,547, 245977,31, 40752,9776, 746731,763, 245998,628, 40689,4267, 746684,028, 246006,97, 40640,9074, 746579,712, 245997,165, 40536, 74655
8,609, 246000,001, 40515, 746522,75, 246007,434, 40478,3651, 746507,92, 246012,532, 40462,6775, 746478,26, 246002,799, 40431,4497, 746467,601, 246002,336, 40420,7767, 746443,965, 246010,214, 40395,8531, 746424,501, 246012,995, 40376,1841, 746418,476, 246017,166, 40368,8535, 746407,353, 246041,729, 40341,8793, 746404,573, 246057,022, 40326,33, 746392,06, 246077,877, 40302, 746360,545, 246073,706, 40270,213, 746352,204, 246076,023, 40261,5569, 746345,715, 246084,829, 40250,6193, 746336,91, 246088,536, 40241,0666, 746332,275, 246095,024, 40233,0937, 746325,787, 246123,758, 40203,639, 746322,543, 246132,1, 40194,6892, 746315,128, 246139,978, 40183,8715, 746305,859, 246146,93, 40172,2861, 746301,225, 246157,126, 40161,0873, 746305,396, 246172,883, 40144,7891, 746307,713, 246182,152, 40135,2357, 746304,932, 246191,884, 40125,1151, 746306,323, 246206,251, 40110,6821, 746310,957, 246220,154, 40096,0285, 746310,957, 246243,79, 40072,3946, 746305,859, 246258,156, 40057,1522, 746296,59, 246279,938, 40033,4822, 746288,55
, 246290,762, 40020, 746278,98, 246291,988, 40010,3458, 746261,832, 246288,744, 39992,883, 746248,392, 246298,939, 39976,0034, 746232,635, 246308,672, 39957,4714, 746218,269, 246314,233, 39942,0571, 746202,975, 246313,769, 39926,7467, 746163,582, 246298,939, 39884,6287, 746138,093, 246316,55, 39853,6284, 746121,872, 246325,355, 39835,1604, 746107,506, 246329,063, 39820,3145, 746091,749, 246336,015, 39803,0814, 746082,48, 246348,064, 39787,8703, 746076,919, 246365,212, 39769,8321, 746077,432, 246381,026, 39754, 746081,09, 246400,433, 39734,2464, 746086,187, 246416,19, 39717,6816, 746092,676, 246427,313, 39704,8009, 746094,529, 246439,362, 39692,6073, 746089,94, 246453,226, 39678, 746078,309, 246466,242, 39660,6417, 746047,258, 246493,585, 39619,4981, 746012,565, 246526,415, 39572, 746005,548, 246529,27, 39564,3607, 746000,451, 246534,832, 39556,753, 745997,206, 246550,125, 39540,9881, 745993,962, 246566,346, 39524,3068, 745989,089, 246585,885, 39504, 745980,059, 246593,225, 39492,3694, 745952,716, 246602,958,
39463,3613, 745925,373, 246610,373, 39435,0458, 745913,323, 246618,715, 39420,3979, 745901,737, 246636,789, 39398,9407, 745887,834, 246654,863, 39376,1502, 745871,15, 246666,913, 39355,5806, 745854,929, 246673,864, 39337,9424, 745831,294, 246675,255, 39314,2792, 745814,147, 246679,889, 39296,5266, 745795,145, 246679,426, 39277,5291, 745777,071, 246675,255, 39258,9899, 745753,899, 246664,132, 39233,3003, 745731,19, 246651,619, 39207,386, 745707,091, 246643,741, 39182,0455, 745684,383, 246641,887, 39159,2742, 745667,235, 246647,448, 39141,2566, 745654,639, 246654,142, 39127, 745648,234, 246664,596, 39114,7227, 745642,209, 246682,67, 39095,6441, 745642,673, 246700,281, 39078,0022, 745648,698, 246710,476, 39066,1433, 745659,82, 246717,891, 39052,7573, 745678,358, 246724,38, 39033,0887, 745709,872, 246733,649, 39000,1937, 745733,971, 246741,064, 38974,9442, 745754,362, 246748,942, 38953,0536, 745771,51, 246761,455, 38931,7957, 745799,78, 246784,164, 38895,4832, 745820,635, 246798,067, 38870,3836, 745825,287, 24680
6,201, 38861, 745823,879, 246828,191, 38839,0272, 745820,775, 246839,846, 38827, 745804,878, 246847,192, 38809,4791, 745770,583, 246848,119, 38775,1547, 745739,069, 246843,948, 38743,3503, 745713,116, 246845,802, 38717,3184, 745696,432, 246855,07, 38698,2236, 745679,285, 246871,754, 38674,2875, 745660,284, 246882,414, 38652,4898, 745639,892, 246883,804, 38632,0404, 745594,938, 246874,072, 38586,0224, 745567,132, 246864,803, 38556,6978, 745541,179, 246859,241, 38530,1424, 745525,3, 246862,101, 38514, 745516,494, 246864,273, 38504,925, 745507,108, 246874,475, 38491,0543, 745494,458, 246889,165, 38471,6573, 745478,952, 246914,057, 38442,3142, 745468,342, 246936,501, 38417,4747, 745454,06, 246957,312, 38392,2201, 745439,369, 246981,388, 38364, 745439,157, 246998,647, 38346,7537, 745439,836, 247006,289, 38339,0879, 745442,891, 247009,815, 38334,4263, 745446,877, 247011,829, 38329,964, 745449,512, 247013,019, 38327,0751, 745451,533, 247013,861, 38324,8875, 745454,027, 247014,793, 38322,2272, 745456,694, 247015,764,
38319,3912, 745492,96, 247024,158, 38282,1967, 745501,414, 247028,394, 38272,7486, 745523,828, 247037,999, 38248,3831, 745525,348, 247039,529, 38246,2281, 745527,205, 247040,872, 38243,9382, 745529,111, 247042,455, 38241,4626, 745542,572, 247064,124, 38215,9736, 745546,014, 247064,505, 38212,5134, 745545,379, 247064,538, 38211,878, 745537,075, 247087,396, 38187,5781, 745521,251, 247108,777, 38161, 745513,146, 247116,395, 38149,8852, 745505,95, 247123,349, 38139,8858, 745504,223, 247134,939, 38128,1767, 745505,945, 247141,076, 38121,8075, 745501,017, 247156,064, 38106,042, 745499,877, 247167,486, 38094,5719, 745496,176, 247175,987, 38085,3072, 745489,528, 247183,32, 38075,4168, 745479,799, 247192,781, 38061,8563, 745476,1, 247195,751, 38057,116, 745474,118, 247196,178, 38055,0901, 745466,858, 247199,091, 38047,2734, 745465,658, 247199,52, 38046, 745459,362, 247201,768, 38039,3129, 745453,868, 247205,767, 38032,5158, 745453,428, 247224,053, 38014,2197, 745452,433, 247227,477, 38010,6531, 745442,099, 247243,424
, 37991,6454, 745450,529, 247240,676, 37982,7764, 745450,352, 247244,779, 37978,6685, 745446,629, 247250,013, 37972,2438, 745443,288, 247252,782, 37967,9033, 745434,571, 247264,296, 37953,4578, 745431,277, 247265,664, 37949,8901, 745426,024, 247268,983, 37943,6748, 745420,297, 247272,466, 37936,97, 745414,293, 247276,966, 37929,4648, 745407,954, 247281,937, 37921,407, 745399,114, 247295,603, 37905,1267, 745388,156, 247306,406, 37889,7349, 745374,933, 247313,3, 37874,8187, 745332,709, 247357,05, 37814, 745313,952, 247371,335, 37790,4162, 745303,333, 247386,911, 37771,5596, 745298,52, 247401,703, 37756, 745297,95, 247405,235, 37752,4438, 745297,633, 247407,858, 37749,8175, 745297,514, 247409,021, 37748,6555, 745296,969, 247422,898, 37734,8512, 745296,981, 247424,782, 37732,9785, 745297,01, 247429,776, 37728,0144, 745296,077, 247438,436, 37719,3566, 745294,513, 247453,074, 37704,7238, 745293,552, 247457,775, 37699,9543, 745292,329, 247462,291, 37695,3037, 745289,838, 247468,492, 37688,6613, 745286,241, 247478,14
3, 37678,4236, 745279,524, 247487,791, 37666,7383, 745279,069, 247487,677, 37666,2721, 745274,54, 247496,085, 37656,7792, 745270,669, 247504,849, 37647,256, 745268,604, 247510,794, 37641, 745260,208, 247534,965, 37615, 745258,323, 247540,391, 37609,2608, 745248,919, 247549,881, 37595,9121, 745242,808, 247553,596, 37588,7667, 745234,657, 247559,531, 37578,6926, 745228,132, 247565,059, 37570,1481, 745226,007, 247567,386, 37566,9995, 745216,622, 247577,139, 37553,4761, 745213,624, 247580,148, 37549,2322, 745209,504, 247586,141, 37541,9658, 745206,123, 247591,929, 37535,2684, 745197,009, 247605,906, 37518,5968, 745190,939, 247612,167, 37509,884, 745188,268, 247616,261, 37505, 745188,03, 247617,11, 37504, 745186,042, 247624,181, 37496,6651, 745162,659, 247670,008, 37445,291, 745146,978, 247710,085, 37402,3171, 745145,337, 247719,046, 37393,2202, 745145,05, 247723,889, 37388,3756, 745144,577, 247744,37, 37367,9186, 745146,214, 247755,181, 37357, 745148,698, 247768,345, 37343,4126, 745152,128, 247775,41, 37335,4469,
745154,068, 247780,807, 37329,63, 745154,248, 247781,401, 37329, 745155,437, 247785,325, 37324,9003, 745156,756, 247791,123, 37318,9543, 745168,05, 247806,126, 37300,1759, 745179,343, 247823,72, 37279,2699, 745193,471, 247848,322, 37250,9004, 745194,25, 247849,319, 37249,6352, 745197,19, 247852,019, 37245,6436, 745199,337, 247854,577, 37242,3041, 745201,751, 247857,868, 37238,2227, 745207,765, 247868,454, 37226,0479, 745212,95, 247876,732, 37216,2803, 745217,169, 247886,107, 37206, 745218,72, 247889,551, 37202,2247, 745220,511, 247893,983, 37197,447, 745222,287, 247899,353, 37191,7938, 745224,002, 247905,246, 37185,6595, 745225,228, 247922,038, 37168,8314, 745224,905, 247928,04, 37162,8238, 745223,88, 247934,368, 37156,4166, 745222,5, 247941,421, 37149,2335, 745221,256, 247946,871, 37143,6461, 745219,184, 247954,833, 37135,4232, 745217,319, 247956,382, 37133, 745212,757, 247960,171, 37127,0773, 745207,638, 247963,305, 37121,0827, 745187,667, 247971,866, 37099,3816, 745182,836, 247971,332, 37094,5274, 745179,
588, 247970,919, 37091,2573, 745171,25, 247968,725, 37082,6465, 745168,635, 247967,646, 37079,8212, 745151,333, 247962,289, 37061,7318, 745150,833, 247961,334, 37060,6552, 745145,649, 247961,62, 37055,4699, 745144,865, 247961,413, 37054,6601, 745135,743, 247965,203, 37044,7946, 745132,332, 247968,098, 37040,3263, 745116,711, 247977,278, 37022,2306, 745106,104, 247986,65, 37008,0943, 745084,158, 247998,35, 36983,2558, 745083,233, 247998,861, 36982,2004, 745081,773, 247999,536, 36980,594, 745080,852, 248000,194, 36979,4635, 745079,581, 248001,4, 36977,7136, 745069,36, 248010,614, 36963,9699, 745062,252, 248024,938, 36948, 745058,757, 248031,982, 36940,1587, 745058,579, 248036,914, 36935,2376, 745054,679, 248051,938, 36919,7602, 745053,635, 248053,904, 36917,5405, 745051,851, 248064,647, 36906,6817, 745048,859, 248075,665, 36895,2974, 745047,183, 248086,938, 36883,9331, 745046,041, 248097,58, 36873,2606, 745043,384, 248108,556, 36862, 745041,197, 248119,925, 36850,3281, 745032,607, 248149,767, 36819,0212, 745024
,967, 248164,823, 36802, 745016,229, 248182,041, 36782,7573, 745010,938, 248186,407, 36775,9208, 745006,612, 248194,369, 36766,8903, 745003,232, 248192,813, 36763,182, 744994,245, 248209,221, 36744,5376, 744971,46, 248233,392, 36711,4332, 744965,727, 248238,163, 36704, 744959,097, 248243,679, 36695, 744961,373, 248266,011, 36672,4593, 744965,982, 248281,651, 36656,0868, 744969,667, 248298,398, 36638,8682, 744971,641, 248305,981, 36631, 744973,147, 248311,764, 36625,0206, 744978,09, 248329,529, 36606,5698, 744983,832, 248348,476, 36586,7601, 744986,571, 248355,589, 36579,1334, 744989,708, 248365,426, 36568,8022, 744990,092, 248371,602, 36562,6107, 744988,022, 248377,46, 36556,394, 744986,447, 248381,487, 36552,0674, 744980,235, 248395,724, 36536,5249, 744970,737, 248416,137, 36513,9971, 744961,292, 248427,04, 36499,5634, 744956,669, 248431,622, 36493,0505, 744951,28, 248436,034, 36486,0817, 744943,412, 248438,214, 36477,9124, 744941,552, 248438,655, 36476, 744930,635, 248441,247, 36464,777, 744923,924, 248442,
484, 36457,9516, 744914,215, 248446,994, 36447,2441, 744904,415, 248454,33, 36435, 744902,275, 248455,931, 36432,3634, 744886,984, 248467,759, 36413,2918, 744877,066, 248477,392, 36399,6517, 744871,935, 248484,504, 36391, 744869,061, 248492,057, 36382,8267, 744868,191, 248494,781, 36379,9346, 744868,028, 248495,385, 36379,3018, 744867,285, 248507,595, 36366,93, 744866,659, 248513,639, 36360,7845, 744866,366, 248513,722, 36360,4765, 744866,383, 248515,51, 36358,6681, 744868,634, 248526,825, 36347, 744869,327, 248534,745, 36339,1967, 744869,219, 248535,686, 36338,2671, 744873,482, 248542,95, 36330, 744875,693, 248546,718, 36325,6335, 744881,129, 248552,877, 36317,4223, 744884,054, 248556,828, 36312,5086, 744886,866, 248560,961, 36307,512, 744887,451, 248561,584, 36306,6578, 744892,236, 248566,965, 36299,4602, 744899,2, 248575,339, 36288,5738, 744913,745, 248592,003, 36266,4649, 744918,576, 248595,548, 36260,4755, 744927,996, 248599,388, 36250,3075, 744931,233, 248601,038, 36246,6758, 744932,674, 248601,621, 362
45,1221, 744935,644, 248602,654, 36241,979, 744942,25, 248605,193, 36234,905, 744954,909, 248613,483, 36219,78, 744975,964, 248633,341, 36190,8507, 744978,78, 248636,379, 36186,7103, 744993,969, 248650,258, 36166,1445, 745005,016, 248661,996, 36150,0329, 745007,838, 248664,745, 36146,0951, 745011,091, 248667,738, 36141,6767, 745013,919, 248670,058, 36138,0205, 745021,916, 248674,696, 36128,78, 745032,642, 248683,248, 36115,0682, 745041,079, 248689,677, 36104,4657, 745045,906, 248695,087, 36097,2185, 745049,108, 248697,789, 36093,0308, 745050,868, 248700,258, 36090, 745051,505, 248701,153, 36088,9008, 745054,04, 248705,72, 36083,6744, 745057,4, 248712,368, 36076,2213, 745059,663, 248716,536, 36071,4758, 745061,109, 248721,023, 36066,7589, 745060,479, 248732,933, 36054,8253, 745060,313, 248733,741, 36054, 745057,409, 248747,938, 36039,4677, 745056,29, 248752,088, 36035,1572, 745050,123, 248759,455, 36025,5221, 745045,403, 248762,152, 36020,0704, 745047,56, 248765,773, 36015,8436, 745043,686, 248768,863, 36010,8
741, 745042,457, 248772,436, 36007,0848, 745039,284, 248779,598, 35999,229, 745038,982, 248782,181, 35996,621, 745036,125, 248791,435, 35986,9083, 745033,238, 248794,626, 35982,5928, 745032,016, 248797,65, 35979,322, 745029,642, 248805,823, 35970,7869, 745027,895, 248810,884, 35965,4175, 745026,538, 248814,749, 35961,3095, 745024,985, 248818,945, 35956,8225, 745022,237, 248823,263, 35951,6897, 745019,557, 248831,881, 35942,6388, 745019,41, 248832,075, 35942,3947, 745018,676, 248837,404, 35937, 745018,548, 248839,702, 35934,7224, 745018,083, 248857,308, 35917,2939, 745018,196, 248859,63, 35914,9935, 745018,412, 248862,912, 35911,7387, 745021,697, 248874,531, 35899,7901, 745022,912, 248878,988, 35895,2186, 745022,958, 248884,445, 35889,8184, 745024,435, 248887,782, 35886,2071, 745024,165, 248892,641, 35881,3914, 745024,647, 248901,735, 35872,3796, 745022,853, 248905,361, 35868,3763, 745022,964, 248910,793, 35863, 745023,187, 248921,665, 35852, 745023,388, 248932,254, 35841, 745025,978, 248944,861, 35828,2606, 7
45028,522, 248955,364, 35817,5638, 745030,464, 248963,795, 35809, 745031,279, 248973,441, 35799,4147, 745034,68, 248981,229, 35791, 745035,429, 248982,942, 35789,1507, 745036,214, 248996,213, 35776, 745036,282, 248997,365, 35774,882, 745036,501, 249000,33, 35772, 745037,016, 249007,322, 35764,6944, 745037,007, 249010,484, 35761,3994, 745036,675, 249025,258, 35746, 745036,59, 249029,057, 35742,2538, 745035,511, 249034,276, 35737, 745033,711, 249042,984, 35728,1696, 745032,752, 249045,331, 35725,6519, 745029,994, 249052,578, 35717,9517, 745029,856, 249054,012, 35716,521, 745027,652, 249059,388, 35710,7511, 745025,271, 249064,477, 35705,1717, 745021,489, 249071,384, 35697,3517, 745018,503, 249077,061, 35690,9818, 745007,536, 249093,3, 35671,5224, 745004,922, 249097,419, 35666,6779, 745004,189, 249097,609, 35665,9259, 744997,944, 249125,028, 35638, 744990,975, 249142,944, 35618,6632, 744988,334, 249150,454, 35610,6555, 744987,832, 249152,196, 35608,8319, 744987,36, 249153,036, 35607,8627, 744987,508, 249159,857,
35601, 744988,288, 249163,352, 35597,3816, 744989,118, 249168,352, 35592,2602, 744989,101, 249172,578, 35587,9901, 744988,856, 249174,233, 35586,2996, 744988,952, 249176,363, 35584,1451, 744990,261, 249187,315, 35573, 744991,069, 249194,067, 35566, 744992,364, 249204,901, 35555,0748, 744992,609, 249207,962, 35552, 744994,415, 249230,621, 35529,1953, 744994,43, 249234,191, 35525,6136, 744993,569, 249237,368, 35522,3113, 744988,664, 249252,941, 35505,9311, 744986,1, 249259,651, 35498,7245, 744980,059, 249267,231, 35489,0002, 744978,677, 249268,668, 35487, 744955,485, 249285,955, 35458,1334, 744939,477, 249291,881, 35441,0987, 744930,035, 249294,639, 35431,2823, 744916,465, 249298,036, 35417,3222, 744906,095, 249300,837, 35406,6026, 744895,491, 249305,099, 35395,1976, 744885,829, 249308,474, 35384,9841, 744878,988, 249309,068, 35378,1314, 744873,628, 249312,043, 35372,0137, 744867,484, 249315,923, 35364,762, 744847,076, 249338,611, 35334,3085, 744842,237, 249342,963, 35327,8136, 744803,16, 249382,975, 35272, 744
792,347, 249391,719, 35258,3837, 744789,303, 249396,574, 35252,7727, 744786,887, 249398,051, 35250, 744781,224, 249401,512, 35243,3499, 744774,963, 249404,266, 35236,4963, 744770,762, 249406,189, 35231,867, 744767,882, 249407,22, 35228,8019, 744767,13, 249407,223, 35228,0484, 744766,285, 249407,445, 35227,173, 744763,343, 249409,977, 35223,2837, 744745,269, 249421,737, 35201,6777, 744742,229, 249424,439, 35197,6024, 744740,366, 249425,755, 35195,3169, 744720,172, 249441,948, 35169,3809, 744713,887, 249447,467, 35161, 744706,328, 249454,496, 35150,679, 744704,767, 249455,723, 35148,6938, 744693,416, 249467,169, 35132,5754, 744671,907, 249486,194, 35103,8628, 744660,011, 249502,93, 35083,3319, 744655,358, 249509,002, 35075,683, 744651,869, 249512,85, 35070,4893, 744649,917, 249514,632, 35067,8465, 744635,265, 249544,22, 35034,833, 744632,445, 249548,412, 35029,7812, 744628,697, 249552,904, 35023,9316, 744625,907, 249555,634, 35020,0286, 744621,607, 249558,827, 35014,6733, 744621,295, 249559,252, 35014,1461, 744
620,919, 249560,205, 35013,1218, 744609,257, 249585,64, 34985,1437, 744601,006, 249595,873, 34972, 744589,867, 249609,69, 34954,2136, 744581,991, 249617,2, 34943,3074, 744578,665, 249620,644, 34938,5092, 744537,678, 249654,322, 34885,3456, 744531,136, 249657,635, 34877,9967, 744525,286, 249659,061, 34871,9623, 744516,992, 249659,614, 34863,6318, 744508,141, 249659,467, 34854,7604, 744495,791, 249660,881, 34842,3027, 744439,968, 249668,486, 34785,8419, 744436,176, 249669,049, 34782, 744416,868, 249675,094, 34761,7899, 744403,917, 249688,458, 34743,2002, 744398,141, 249698,295, 34731,8053, 744391,671, 249707,201, 34720,8092, 744379,054, 249721,828, 34701,5134, 744361,397, 249738,813, 34677,0399, 744361,276, 249739,101, 34676,7278, 744355,696, 249751,049, 34663,5554, 744353,801, 249759,648, 34654,7596, 744352,805, 249761,826, 34652,3673, 744348,555, 249766,337, 34646,1764, 744348,232, 249766,879, 34645,5461, 744345,753, 249768,295, 34642,6943, 744339,486, 249776,857, 34632,0954, 744334,18, 249787,741, 34620, 744
328,355, 249789,998, 34613,7587, 744328,366, 249790,193, 34613,5636, 744316,488, 249794,489, 34600,9439, 744307,159, 249806,434, 34585,8012, 744300,233, 249812,43, 34576,6486, 744283,223, 249815,963, 34559,2912, 744274,124, 249817,884, 34550, 744273,497, 249820,704, 34547,1031, 744254,763, 249836,156, 34522,751, 744249,523, 249848,152, 34509,6239, 744235,992, 249864,338, 34488,4682, 744231,882, 249867,064, 34483,5225, 744202,389, 249887,205, 34447,7087, 744194,719, 249902,071, 34430,934, 744193,376, 249906,868, 34425,9386, 744190,707, 249914,321, 34418, 744190,449, 249947,93, 34384,7018, 744188,913, 249951,967, 34380,4226, 744190,387, 249957,845, 34374,4188, 744190,594, 249959,262, 34373, 744190,926, 249961,539, 34370,7062, 744189,464, 249964,458, 34367,4518, 744188,756, 249968,01, 34363,8413, 744188,425, 249971,271, 34360,5738, 744188,03, 249975,316, 34356,5224, 744187,519, 249979,14, 34352,6765, 744186,088, 249982,516, 34349,0213, 744184,141, 249984,75, 34346,0672, 744174,411, 249992,964, 34333,3737, 744170
,876, 249996,946, 34328,0658, 744166,793, 250001,445, 34322,0094, 744163,76, 250003,967, 34318,0772, 744162,207, 250010,595, 34311,2911, 744162,159, 250011,002, 34310,8826, 744162,138, 250011,416, 34310,4694, 744159,983, 250026,642, 34295,14, 744159,16, 250028,973, 34292,6758, 744158,16, 250031,039, 34290,3877, 744155,811, 250035,262, 34285,5705, 744154,142, 250038,135, 34282,2584, 744151,277, 250042,778, 34276,8198, 744146,665, 250048,526, 34269,4734, 744144,322, 250052,811, 34264,605, 744143,437, 250057,337, 34260,0078, 744143,589, 250060,335, 34257,0154, 744144,163, 250069,166, 34248,1936, 744144,191, 250070,922, 34246,4429, 744144,274, 250073,094, 34244,2761, 744144,496, 250076,373, 34241, 744144,012, 250081,577, 34235,7341, 744143,981, 250083,844, 34233,4499, 744141,979, 250089,264, 34227,6284, 744141,285, 250090,844, 34225,8897, 744140,442, 250097,63, 34219, 744135,012, 250120,695, 34195,5554, 744134,286, 250122,679, 34193,4651, 744133,742, 250125,619, 34190,5069, 744132,494, 250126,944, 34188,7059, 744
132,274, 250134,82, 34180,9103, 744132,221, 250135,738, 34180, 744131,966, 250140,129, 34175,5911, 744131,763, 250140,666, 34175,0155, 744132,094, 250141,038, 34174,5163, 744136,052, 250153,317, 34161,5827, 744136,619, 250155,883, 34158,9482, 744137,002, 250158,409, 34156,3869, 744137,272, 250160,491, 34154,2822, 744137,552, 250163,014, 34151,7373, 744138,34, 250171,959, 34142,735, 744138,499, 250173,78, 34140,9025, 744138,729, 250175,587, 34139,0764, 744140,017, 250176,263, 34137,6181, 744140,927, 250180,043, 34133,7203, 744140,859, 250185,141, 34128,609, 744139,716, 250190,063, 34123,5433, 744139,015, 250193,688, 34119,8419, 744138,838, 250194,537, 34118,9725, 744138,784, 250194,892, 34118,6124, 744139,648, 250203,591, 34109,8486, 744138,843, 250209,509, 34103,8611, 744138,845, 250210,368, 34103, 744139,952, 250214,429, 34098,7667, 744141,336, 250218,086, 34094,8341, 744140,058, 250220,84, 34091,7807, 744141,359, 250225,888, 34086,5378, 744139,752, 250231, 34081,1485, 744139,346, 250231,176, 34080,7034, 744
141,565, 250242,893, 34068,7098, 744141,774, 250243,714, 34067,8578, 744143,803, 250245,524, 34065,1232, 744149,611, 250252,768, 34055,7851, 744151,732, 250254,409, 34053,0881, 744153,034, 250256,479, 34050,6287, 744164,552, 250276,398, 34027,4875, 744164,318, 250280,491, 34023,3642, 744164,427, 250280,573, 34023,2271, 744166,753, 250285,286, 34017,9412, 744167,924, 250290,048, 34013,0093, 744168,61, 250296,594, 34006,3898, 744168,348, 250300,477, 34002,4756, 744164,78, 250314,463, 33987,9589, 744163,981, 250333,297, 33969, 744163,775, 250335,588, 33966,7079, 744162,985, 250337,712, 33964,4497, 744153,347, 250364,246, 33936,319, 744133,209, 250384,186, 33908,079, 744120,687, 250398,67, 33889, 744106,36, 250413,454, 33868, 744101,229, 250420,535, 33860, 744098,54, 250424,245, 33855,4445, 744086,994, 250446,166, 33830,8119, 744089,16, 250472,086, 33804,9518, 744088,186, 250481,037, 33796, 744086,298, 250484,333, 33792, 744065,15, 250521,259, 33749,0412, 744061,759, 250526,19, 33743, 744044,37, 250551,473, 33712
, 744028,728, 250575,288, 33684, 744025,789, 250579,763, 33678,5088, 744025,251, 250581,132, 33677, 744021,228, 250609,053, 33649, 744018,384, 250628,789, 33629,0824, 744024,061, 250645,93, 33611,0459, 744026,711, 250653,585, 33602,9542, 744027,542, 250655,389, 33600,9702, 744030,181, 250659,33, 33596,2325, 744031,777, 250667,904, 33587,521, 744027,012, 250679,312, 33575,1717, 744024,208, 250682,407, 33571, 744020,273, 250682,253, 33567,0352, 744013,413, 250683,2, 33560,0631, 743998,756, 250688,307, 33544,4364, 743993,303, 250691,644, 33538, 743992,812, 250694,53, 33535,0433, 743989,255, 250702,862, 33525,8937, 743987,162, 250710,755, 33517,6466, 743979,328, 250733,867, 33493, 743973,499, 250794,554, 33431,9226, 743976,996, 250799,477, 33425,8729, 743977,203, 250803,337, 33422,0004, 743977,244, 250807,128, 33418,2023, 743976,964, 250809,847, 33415,4639, 743974,241, 250811,651, 33412,1916, 743973,805, 250813,832, 33409,9634, 743972,18, 250821,613, 33402, 743966,281, 250849,84, 33373,6715, 743964,558, 250853,24
8, 33369,9199, 743961,471, 250856,89, 33365,2298, 743956,663, 250861,025, 33359, 743953,182, 250864,019, 33354,5165, 743952,251, 250864,745, 33353,3636, 743951,293, 250865,761, 33352, 743947,02, 250871,049, 33345,1338, 743910,831, 250903,563, 33296, 743897,399, 250915,631, 33277,984, 743888,275, 250926,27, 33264, 743869,835, 250953,032, 33231,4145, 743869,313, 250953,863, 33230,4305, 743858,893, 250990,2, 33192,5293, 743858,543, 251003,873, 33178,8158, 743859,411, 251013,374, 33169,2501, 743859,473, 251016,615, 33166, 743859,646, 251025,727, 33156,9376, 743856,743, 251057,73, 33124,984, 743859,583, 251067,383, 33114,9785, 743860,135, 251074,442, 33107,9378, 743860,086, 251077,246, 33105,1492, 743860,464, 251080,921, 33101,4755, 743854,753, 251089,774, 33091, 743839,778, 251112,988, 33063, 743836,323, 251116,311, 33058,2105, 743822,946, 251130,121, 33039, 743805,955, 251147,662, 33014,6909, 743803,55, 251150,942, 33010,6422, 743803,092, 251151,279, 33010,0762, 743792,634, 251177,473, 32982, 743782,383, 251203,
147, 32954, 743777,393, 251223,571, 32932,9774, 743776,755, 251226,035, 32930,4324, 743776,564, 251228,005, 32928,4533, 743775,016, 251257,581, 32898,8399, 743781,978, 251273,245, 32881,7002, 743788,718, 251292,208, 32861,577, 743788,02, 251293,951, 32859,6997, 743787,147, 251295,662, 32857,779, 743783,957, 251302,014, 32850,6717, 743777,508, 251311,663, 32839,0672, 743774,265, 251323,136, 32827,1458, 743762,855, 251352,12, 32796, 743749,624, 251371,597, 32772,6362, 743747,623, 251383,15, 32761,002, 743744,361, 251401,982, 32741,9846, 743734,695, 251425,354, 32716,8185, 743733,104, 251437,959, 32704,1767, 743731,798, 251446,3, 32695,7761, 743718,882, 251458,639, 32678,002, 743700,263, 251476,426, 32652,2353, 743693,519, 251479,033, 32645, 743668,882, 251488,555, 32618,488, 743667,402, 251489,129, 32616,8946, 743649,879, 251491,969, 32599,0765, 743650,263, 251493,008, 32597,9646, 743637,091, 251511,211, 32575,4115, 743622,765, 251520,051, 32558,5145, 743616,439, 251522,649, 32551,6502, 743597,926, 251530,462,
32531,4808, 743577,502, 251536,86, 32509,998, 743567,706, 251539,929, 32499,7764, 743560,397, 251542,36, 32492,1067, 743535,529, 251558,055, 32462,826, 743534,369, 251558,997, 32461,3381, 743525,714, 251566,303, 32450,0603, 743519,408, 251571,07, 32442,1891, 743513,053, 251577,131, 32433,4448, 743510,339, 251580,89, 32428,8284, 743504,291, 251591,577, 32416,6013, 743496,32, 251602,67, 32403, 743482,304, 251614,101, 32384,8839, 743472,36, 251625,409, 32369,8009, 743469,316, 251629,167, 32364,9568, 743461,416, 251638,817, 32352,465, 743444,815, 251649,718, 32332,5723, 743431,215, 251655,73, 32317,6783, 743403,688, 251666,093, 32288,2169, 743376,761, 251668,171, 32261,1655, 743354,312, 251661,012, 32237,564, 743340,231, 251648,394, 32218,6256, 743320,536, 251632,536, 32193,2983, 743291,201, 251601,829, 32150,7614, 743267,822, 251567,31, 32109,002, 743260,302, 251562,591, 32100,034, 743249,331, 251555,803, 32087,002, 743223,234, 251543,735, 32058,3511, 743207,304, 251540,697, 32042,1911, 743185,103, 251543,05, 32
019,9445, 743171,021, 251548,321, 32004,9613, 743169,006, 251550,508, 32001,998, 743157,358, 251564,403, 31983,8555, 743147,51, 251585,754, 31960,3284, 743133,951, 251596,646, 31942,9257, 743122,976, 251601,707, 31930,8327, 743121,314, 251614,201, 31918,2209, 743106,326, 251623,221, 31900,7173, 743089,662, 251629,566, 31882,8753, 743086,482, 251629,336, 31879,6851, 743064,133, 251627,727, 31857,2645, 743047,852, 251621,118, 31839,6825, 743028,606, 251607,322, 31815,9881, 743023,756, 251598,122, 31805,5817, 743016,025, 251590,352, 31794,614, 742988,503, 251576,081, 31763,5931, 742978,102, 251577,571, 31753,0795, 742965,032, 251577,371, 31740, 742955,873, 251596,132, 31719,1369, 742935,528, 251623,658, 31684,9314, 742930,409, 251636,53, 31671,0882, 742934,264, 251648,58, 31658,4452, 742941,833, 251658,948, 31645,617, 742936,143, 251672,119, 31631,2792, 742936,716, 251683,489, 31619,9025, 742931,796, 251688,129, 31613,1442, 742921,206, 251694,09, 31601, 742917,16, 251696,368, 31596, 742910,002, 251700,396, 31587
,7751, 742890,575, 251704,139, 31567,9627, 742871,377, 251696,253, 31547,1788, 742844,318, 251703,974, 31519, 742820,959, 251709,648, 31495, 742811,796, 251712,746, 31485, 742788,381, 251720,662, 31460,5023, 742761,003, 251745,806, 31423,6599, 742740,084, 251759,276, 31399, 742710,783, 251772,884, 31366,6677, 742681,976, 251775,73, 31337,6976, 742652,883, 251767,731, 31307,5012, 742638,741, 251762,152, 31292,2865, 742620,719, 251759,524, 31274,0595, 742614,01, 251759,169, 31267,3358, 742609,299, 251756,349, 31261,8409, 742602,365, 251756,183, 31254,8995, 742595,365, 251757,583, 31247,7552, 742593,815, 251763,384, 31241,746, 742591,926, 251765,206, 31239,1194, 742562,537, 251758,287, 31208,9031, 742482,965, 251720,7, 31120,8308, 742470,263, 251717,144, 31107,63, 742440,765, 251703,639, 31075,1619, 742437,812, 251702,516, 31072, 742419,254, 251692,539, 31051,0635, 742411,894, 251678,805, 31035,5803, 742412,229, 251666,149, 31023, 742395,095, 251681,703, 30999,9668, 742390,836, 251684,864, 30994,6876, 742375,864
, 251702,051, 30972, 742370,806, 251707,219, 30964,6604, 742369,065, 251707,326, 30962,89, 742365,786, 251712,114, 30957, 742353,382, 251730,232, 30935,1595, 742354,472, 251731,554, 30933,4551, 742350,169, 251746,885, 30917,6164, 742350,278, 251747,454, 30917,0401, 742344,273, 251761,331, 30902, 742339,897, 251771,444, 30890,937, 742339,03, 251774,688, 30887,5658, 742335,046, 251783,663, 30877,7073, 742327,151, 251790,398, 30867,2885, 742322,34, 251795,105, 30860,5312, 742316,403, 251800,421, 30852,5303, 742313,259, 251808,212, 30844,0954, 742313,038, 251809,364, 30842,9177, 742302,93, 251817,84, 30829,6738, 742290,672, 251838,682, 30805,3982, 742287,559, 251843,066, 30800, 742285,72, 251845,655, 30796,8308, 742273,586, 251855,931, 30780,9625, 742230,949, 251920,692, 30703,5837, 742222,488, 251931,786, 30689,6598, 742215,868, 251932,568, 30683,0073, 742211,705, 251934,471, 30678,4393, 742206,213, 251935,825, 30672,7944, 742198,754, 251939,121, 30664,6562, 742191,48, 251946,715, 30654,1619, 742188,586, 251955,
954, 30644,4999, 742184,305, 251958,831, 30639,3525, 742172,153, 251972,474, 30621,1194, 742159,012, 251989,062, 30600, 742158,264, 251990,006, 30598,8103, 742149,747, 252007,038, 30580, 742134,366, 252037,765, 30546,1243, 742120,296, 252084,34, 30498,1586, 742120,139, 252106,504, 30476,3075, 742120,861, 252130,208, 30452,9279, 742119,221, 252132,684, 30450, 742118,892, 252142,363, 30440,5233, 742116,717, 252166,928, 30416,3914, 742116,906, 252179,658, 30403,9332, 742116,965, 252183,677, 30400, 742116,989, 252185,281, 30398,4318, 742119,8, 252206,447, 30377,5589, 742128,936, 252236,865, 30346,5109, 742134,706, 252254,9, 30328, 742147,901, 252296,14, 30285,5032, 742151,559, 252306,197, 30275, 742155,432, 252320,214, 30260,7113, 742157,51, 252327,86, 30252,9261, 742158,321, 252334,151, 30246,6936, 742158,792, 252345,743, 30235,2942, 742160,007, 252362,672, 30218,6175, 742163,49, 252381,297, 30200, 742165,438, 252391,717, 30189,8144, 742164,246, 252401,378, 30180,4612, 742163,137, 252406,845, 30175,1012, 742163,
695, 252421,51, 30161, 742158,267, 252435,427, 30146,6025, 742149,569, 252451,008, 30129,4039, 742147,461, 252455,707, 30124,4401, 742138,694, 252471,501, 30107,0298, 742083,565, 252537,699, 30024, 742077,91, 252544,489, 30015,2943, 742069,927, 252557,803, 30000, 742055,117, 252582,501, 29970,7136, 742026,849, 252629,643, 29914,8139, 742018,392, 252650,132, 29892,2724, 742013,589, 252673,271, 29868,2394, 742012,552, 252682,454, 29858,8413, 742011,744, 252694,096, 29846,9735, 742011,79, 252704,41, 29836,4845, 742013,305, 252715,069, 29825,5358, 742017,101, 252730,486, 29809,3891, 742020,084, 252738,177, 29801, 742029,707, 252760,252, 29776,399, 742033,505, 252767,994, 29767,5895, 742040,143, 252776,456, 29756,6024, 742046,289, 252784,926, 29745,9116, 742058,649, 252800,808, 29725,3525, 742071,991, 252814,864, 29705,5543, 742083,209, 252826,898, 29688,7474, 742110,716, 252849,729, 29652,2283, 742158,326, 252868,358, 29600, 742179,815, 252876,766, 29577,3316, 742195,423, 252878,737, 29561,8772, 742219,677, 25288
1,799, 29537,8618, 742228,694, 252881,533, 29529, 742246,851, 252880,997, 29511,2912, 742270,011, 252878,911, 29488,6213, 742295,231, 252873,956, 29463,5646, 742318,971, 252867,024, 29439,4542, 742344,773, 252856,8, 29412,3973, 742355,496, 252849,964, 29400, 742366,182, 252843,152, 29387,6003, 742371,516, 252838,137, 29380,4367, 742374,914, 252831,963, 29373,5411, 742382,588, 252814,39, 29354,7785, 742384,79, 252807,176, 29347,3984, 742387,284, 252799,002, 29339,0364, 742393,7, 252770,401, 29310,3558, 742395,298, 252759,966, 29300,0265, 742400,664, 252715,187, 29255,8983, 742410,026, 252677,603, 29218, 742411,806, 252674,345, 29214,2867, 742412,917, 252672,345, 29211,9984, 742416,663, 252669,838, 29207,49, 742422,43, 252665,061, 29200, 742449,356, 252642,757, 29164,5899, 742457,175, 252637,416, 29155, 742513,171, 252670,078, 29089,1364, 742525,129, 252679,27, 29073,8122, 742540,025, 252691,854, 29054, 742553,36, 252713,179, 29028,6459, 742568,413, 252737,281, 29000, 742573,664, 252745,689, 28990,1778, 742616,
195, 252851,7, 28877, 742615,471, 252873,628, 28855,0511, 742618,224, 252928,34, 28800,2476, 742618,24, 252928,587, 28800, 742622,348, 252992,928, 28735,0822, 742621,617, 253000,771, 28727,1507, 742619,242, 253039,862, 28687,7167, 742611,73, 253095,074, 28631,6107, 742603,794, 253125,448, 28600, 742595,913, 253155,612, 28568,6668, 742578,85, 253224,849, 28497, 742561,475, 253285,49, 28434,0241, 742552,782, 253312,31, 28405,8775, 742551,252, 253317,995, 28400, 742547,371, 253332,413, 28385,4757, 742545,391, 253356,465, 28362, 742550,323, 253394,552, 28325,0214, 742585,901, 253432,546, 28274,9033, 742615,736, 253451,036, 28241,1069, 742645,249, 253467,03, 28208,7854, 742653,729, 253470,398, 28200, 742702,281, 253489,679, 28148,3354, 742735,249, 253492,258, 28115,6311, 742742,002, 253493,015, 28108,9107, 742761,896, 253493,264, 28089,2344, 742777,85, 253491,126, 28073,3152, 742778,451, 253492,29, 28072,0197, 742786,577, 253491,417, 28063,937, 742802,147, 253489,744, 28048,45, 742803,713, 253489,522, 28046,8857,
742837,535, 253483,714, 28012,9469, 742849,889, 253479,383, 28000, 742866,772, 253473,463, 27982,047, 742867,214, 253473,286, 27981,5693, 742907,278, 253458,647, 27938,7665, 742924,686, 253451,922, 27920,0398, 742938,593, 253446,943, 27905,2171, 742954,64, 253440,044, 27887,6893, 742978,204, 253429,608, 27861,8283, 742991,529, 253424,179, 27847,3898, 743001,614, 253421,276, 27836,8589, 743012,824, 253419,095, 27825,399, 743020,026, 253417,145, 27817,9118, 743027,232, 253415,147, 27810,408, 743037,163, 253418,139, 27800, 743065,033, 253426,537, 27771,4018, 743074,593, 253433,116, 27760, 743085,125, 253440,363, 27747,4881, 743089,418, 253462,312, 27725,5999, 743083,86, 253480,141, 27707,3227, 743060,759, 253550,558, 27634,793, 743050,16, 253584,492, 27600, 743049,892, 253585,35, 27599,115, 743044,212, 253609,485, 27574,7049, 743042,454, 253621,485, 27562,7647, 743034,993, 253663,911, 27520,3551, 743056,049, 253705,198, 27474,727, 743078,791, 253754,134, 27421,6008, 743096,391, 253767,235, 27400, 743104,196, 253
773,045, 27390,4821, 743125,047, 253781,609, 27368,4325, 743156,753, 253792,154, 27335,7476, 743208,237, 253790,351, 27285,3555, 743247,137, 253775,203, 27244,5205, 743283,191, 253750,459, 27201,7459, 743284,443, 253749,187, 27200, 743326,299, 253706,666, 27138,7377, 743341,688, 253690,525, 27115,8394, 743349,164, 253678,189, 27101,0288, 743363,429, 253664,599, 27080,7993, 743376,868, 253655,267, 27064, 743401,251, 253638,335, 27033,7338, 743431,206, 253624,285, 27000, 743439,553, 253620,37, 26990,9021, 743478,332, 253620,717, 26952,6328, 743508,358, 253640,157, 26917,3346, 743516,288, 253655,288, 26900,4767, 743532,471, 253681,475, 26870,0987, 743555,744, 253712,544, 26831,7914, 743568,039, 253724,307, 26815, 743578,741, 253734,547, 26800, 743581,311, 253737,006, 26796,5573, 743587,315, 253745,557, 26786,4446, 743601,451, 253765,708, 26762,6204, 743614,26, 253784,289, 26740,7771, 743620,342, 253798,9, 26725,4591, 743642,848, 253872,488, 26650,9782, 743656,439, 253916,927, 26606, 743656,528, 253917,218, 26605
,7045, 743655,493, 253962,45, 26561,7726, 743647,957, 254004,359, 26520,4261, 743640,255, 254029,402, 26494,9852, 743632,961, 254050,21, 26473,5752, 743624,643, 254067,924, 26454,5728, 743614,353, 254081,045, 26438,3817, 743597,626, 254098,367, 26415, 743585,476, 254108,673, 26400, 743565,458, 254125,655, 26372,0277, 743539,305, 254146,055, 26336,6845, 743523,78, 254156,481, 26316,7572, 743504,34, 254171,637, 26290,491, 743448,852, 254218,625, 26213,013, 743438,991, 254225,829, 26200, 743417,679, 254241,398, 26173,5431, 743414,182, 254244,136, 26169,091, 743401,121, 254255,226, 26151,9155, 743383,558, 254271,068, 26128,2061, 743363,82, 254294,925, 26097,1677, 743363,724, 254295,062, 26097, 743357,364, 254304,115, 26085,924, 743347,826, 254335,289, 26053,2877, 743343,871, 254361,461, 26026,7894, 743344,453, 254382,864, 26005,355, 743344,602, 254388,211, 26000, 743344,918, 254399,498, 25988,7266, 743346,43, 254414,62, 25973,5535, 743347,477, 254425,089, 25963,0491, 743347,826, 254427,764, 25960,3557, 743348,757
, 254430,905, 25957,0849, 743356,944, 254441,139, 25944, 743364,576, 254450,679, 25931,7011, 743394,703, 254461,846, 25899,3562, 743407,482, 254462,618, 25886,4683, 743433,9, 254449,664, 25856,8484, 743450,072, 254444,398, 25839,7269, 743472,639, 254430,323, 25812,9525, 743474,151, 254427,066, 25809,3376, 743482,044, 254422,194, 25800, 743507,883, 254406,245, 25769,1371, 743541,151, 254388,448, 25730,789, 743585,935, 254367,626, 25680,5911, 743625,367, 254356,692, 25639, 743638,395, 254356,459, 25625,9121, 743658,664, 254372,418, 25600, 743683,698, 254392,13, 25568,8911, 743710,28, 254459,52, 25498,1629, 743729,472, 254489,996, 25463, 743770,65, 254536,641, 25401,6093, 743771,992, 254537,568, 25400, 743791,356, 254550,948, 25376,838, 743831,486, 254568,047, 25333,912, 743843,117, 254571,188, 25322,0562, 743852,889, 254571,188, 25312,4399, 743932,335, 254589,683, 25232,169, 743955,947, 254594,299, 25208,4933, 743963,276, 254595,732, 25201,1445, 743964,372, 254596,121, 25200, 743990,147, 254605,27, 25171,4725,
744047,456, 254620,352, 25109,6619, 744052,029, 254621,555, 25104,7298, 744086,46, 254632,839, 25066,9376, 744089,112, 254633,688, 25064,0332, 744095,533, 254635,747, 25057, 744122,636, 254649,938, 25025,2483, 744133,856, 254667,523, 25003,5991, 744135,293, 254670,679, 25000, 744144,849, 254691,664, 24979,5865, 744159,741, 254725,547, 24946,8205, 744160,788, 254729,152, 24943,4971, 744172,652, 254751,37, 24921,1989, 744189,752, 254766,607, 24900,9223, 744190,614, 254767,192, 24900, 744218,384, 254786,046, 24864,9723, 744268,734, 254814,299, 24804,7221, 744272,875, 254816,123, 24800, 744292,372, 254824,71, 24780,0081, 744311,579, 254831,808, 24760,7927, 744338,74, 254838,086, 24734,6327, 744346,459, 254841,095, 24726,8582, 744374,736, 254845,52, 24700, 744413,087, 254851,522, 24661,4334, 744434,125, 254862,185, 24638, 744454,097, 254872,307, 24615, 744467,858, 254879,282, 24600, 744480,785, 254885,834, 24585,0393, 744501,491, 254906,542, 24554,8092, 744536,852, 254951,09, 24496,0955, 744549,648, 254958,767, 24
480,6912, 744566,398, 254978,464, 24454, 744581,402, 254996,106, 24429,8289, 744599,664, 255018,091, 24400, 744616,415, 255041,587, 24374,0909, 744627,683, 255058,29, 24356, 744636,19, 255070,9, 24342,2488, 744647,939, 255094,514, 24318,4051, 744664,753, 255138,021, 24276,2392, 744683,968, 255220,137, 24200, 744697,142, 255276,439, 24134,9436, 744714,357, 255321,223, 24080,9628, 744753,44, 255353,327, 24024,0573, 744770,242, 255366,552, 24000, 744789,5, 255381,709, 23976, 744797,043, 255392,518, 23963, 744815,326, 255405,937, 23940,7696, 744835,34, 255418,637, 23917,5351, 744854,158, 255422,163, 23898,7683, 744864,999, 255424,322, 23887,933, 744883,719, 255414,628, 23867,2689, 744906,305, 255405,31, 23843,3196, 744949,068, 255394,156, 23800, 744963,144, 255397,063, 23786,1185, 744968,493, 255399,157, 23780,5706, 745002,575, 255427,878, 23737,5248, 745005,2, 255434,103, 23731, 745030,143, 255493,249, 23668,4193, 745033,805, 255524,235, 23638, 745034,679, 255531,635, 23630,8166, 745033,901, 255563,592, 23600, 7
45033,317, 255587,588, 23576, 745033,167, 255593,75, 23569,7438, 745029,56, 255629,227, 23533,5493, 745006,761, 255704,02, 23454,1865, 744992,223, 255742,958, 23412, 744988,361, 255753,302, 23401,1385, 744987,816, 255754,323, 23400, 744957,73, 255810,653, 23335,7178, 744936,993, 255845,116, 23295,2317, 744907,897, 255881,928, 23248, 744900,585, 255891,179, 23236,0845, 744876,897, 255917,901, 23200, 744802,48, 256001,849, 23088, 744796,131, 256009,011, 23078,3058, 744777,853, 256036,346, 23045, 744756,232, 256068,683, 23006,1083, 744757,891, 256074,563, 23000, 744763,277, 256093,646, 22980,1533, 744766,818, 256130,796, 22942,8006, 744768,562, 256144,406, 22929,0667, 744775,191, 256193,377, 22879,6036, 744782,985, 256207,219, 22863,7035, 744811,036, 256264,349, 22800, 744811,481, 256265,265, 22798,9969, 744820,25, 256283,574, 22779, 744832,411, 256308,548, 22752, 744842,076, 256328,54, 22730,2064, 744845,798, 256342,847, 22715,6975, 744833,353, 256378,443, 22678,6883, 744808,09, 256431,516, 22621, 744807,995, 2
56431,716, 22620,7787, 744805,256, 256452,321, 22600, 744800,435, 256488,596, 22563,2516, 744815,672, 256515,699, 22532,028, 744842,31, 256540,475, 22495,4954, 744868,248, 256545,011, 22469,0527, 744885,348, 256545,244, 22451,879, 744918,848, 256525,819, 22412,9912, 744929,198, 256518,058, 22400, 744954,801, 256498,86, 22367,8776, 744984,696, 256495,37, 22337,6656, 745012,694, 256506,742, 22307,3317, 745048,057, 256526,283, 22266,7759, 745062,521, 256545,04, 22243, 745069,225, 256553,735, 22231,8534, 745081,541, 256582,592, 22200, 745085,162, 256591,075, 22190,9036, 745090,281, 256626,086, 22156,0076, 745089,234, 256632,249, 22149,8425, 745087,692, 256635,827, 22146, 745062,913, 256693,337, 22085,0649, 745056,62, 256702,808, 22074, 745040,115, 256727,442, 22044,7738, 745023,518, 256769,728, 22000, 745007,399, 256810,796, 21956,4411, 744981,664, 256891,114, 21873,1696, 744976,169, 256938,572, 21826, 744974,41, 256953,769, 21810,8756, 744972,376, 256964,58, 21800, 744971,485, 256969,316, 21795, 744956,238, 2570
50,351, 21710,9982, 744959,13, 257066,784, 21694, 744966,512, 257108,729, 21651, 744973,32, 257147,415, 21611,078, 744976,173, 257157,935, 21600, 744990,216, 257209,725, 21545,9873, 745018,214, 257258,734, 21489,1737, 745063,89, 257334,643, 21400, 745073,245, 257350,19, 21382,0954, 745121,135, 257399,876, 21314, 745143,821, 257423,413, 21281,6161, 745180,184, 257465,524, 21226,4994, 745185,522, 257491,736, 21200, 745189,755, 257512,522, 21179, 745170,203, 257536,378, 21147,9539, 745138,735, 257528,352, 21115,2665, 745109,867, 257513,505, 21082,5922, 745079,193, 257489,992, 21043,6906, 745042,081, 257467,478, 21000, 744954,56, 257414,384, 20895,3172, 744928,054, 257417,899, 20867,9741, 744914,911, 257430,16, 20849,5932, 744902,86, 257457,964, 20818,6042, 744888,002, 257468,462, 20800, 744869,559, 257481,493, 20777, 744822,899, 257577,372, 20670,6793, 744796,676, 257643,228, 20600, 744793,046, 257652,344, 20590,5471, 744780,064, 257713,303, 20530,5029, 744778,825, 257734,549, 20510, 744776,514, 257774,502, 2047
1,472, 744771,53, 257797,209, 20449,091, 744763,011, 257803,482, 20438,906, 744753,303, 257837,782, 20404,5875, 744753,287, 257842,547, 20400, 744753,017, 257922,27, 20317,9398, 744759,873, 257961,835, 20276,6082, 744783,449, 257988,288, 20240,1353, 744814,316, 258012,113, 20200, 744843,002, 258034,255, 20163,9835, 744929,132, 258061,983, 20074,0518, 744936,14, 258063,091, 20067, 744975,284, 258069,278, 20028,0024, 745002,367, 258060,544, 20000, 745070,32, 258038,629, 19929,4213, 745136,265, 258033,459, 19864,0343, 745160,643, 258039,55, 19839,1957, 745200,29, 258038,95, 19800, 745224,833, 258038,579, 19776, 745276,878, 258037,791, 19724,59, 745396,029, 258047,28, 19606,5336, 745402,232, 258049,578, 19600, 745441,23, 258064,029, 19556,4035, 745488,357, 258097,693, 19495,6928, 745522,962, 258132,825, 19444, 745545,297, 258165,042, 19403,2046, 745545,841, 258168,073, 19400, 745549,535, 258188,638, 19379,729, 745548,439, 258226,688, 19342,7983, 745523,544, 258277,256, 19288,1152, 745508,079, 258294,969, 19265,30
22, 745488,602, 258329,808, 19226,5787, 745476,867, 258354,563, 19200, 745452,684, 258405,58, 19142,723, 745443,208, 258419,068, 19126, 745416,392, 258457,235, 19078,8058, 745391,606, 258495,069, 19033,0439, 745367,015, 258516,562, 19000, 745339,6, 258540,227, 18964,1479, 745256,738, 258580,199, 18873,0737, 745235,426, 258590,587, 18849,6033, 745226,577, 258594,562, 18840, 745189,402, 258611,264, 18800, 745180,871, 258615,097, 18790,5052, 745139,636, 258618,443, 18748,5054, 745107,882, 258641,504, 18708,6641, 745096,916, 258660,392, 18686,4912, 745075,023, 258691,347, 18648, 745071,25, 258725,628, 18612,5628, 745075,334, 258737,152, 18600, 745091,29, 258782,174, 18553,4916, 745135,742, 258832,358, 18488,2161, 745184,722, 258872,353, 18426,6459, 745200,557, 258891,645, 18402,3444, 745201,331, 258893,925, 18400, 745211,629, 258924,256, 18367,934, 745195,881, 258984,068, 18306,0168, 745200,131, 259059,125, 18230,7585, 745199,975, 259089,85, 18200, 745199,592, 259165,042, 18125,6671, 745195,12, 259175,361, 18114,
5494, 745204,06, 259253,485, 18036,815, 745213,195, 259283,288, 18006, 745215,025, 259289,26, 18000, 745221,415, 259310,106, 17978,0535, 745225,989, 259369,417, 17918,1758, 745223,963, 259385,359, 17902, 745221,148, 259407,513, 17879,7247, 745205,288, 259440,715, 17843,0229, 745188,212, 259460,166, 17817,2057, 745174,166, 259470,179, 17800, 745152,803, 259485,408, 17773,6961, 745078,949, 259505,34, 17697, 745017,766, 259519,209, 17633,6042, 744987,09, 259532,047, 17600, 744965,093, 259541,252, 17577,0727, 744919,233, 259601,471, 17504,2936, 744904,907, 259638,372, 17466,2332, 744907,459, 259683,743, 17422,5401, 744911,17, 259706,89, 17400, 744912,332, 259714,141, 17392,7649, 744933,218, 259764,406, 17339,1375, 744970,918, 259801,417, 17287,0871, 745042,996, 259852,584, 17200, 745052,471, 259859,31, 17188, 745057,489, 259862,872, 17181,7214, 745064,471, 259917,542, 17125,4887, 745054,457, 259955,297, 17085,6354, 745043,498, 259975,706, 17062, 745020,166, 260019,158, 17011,6897, 745013,962, 260028,793, 17000, 7
44998,154, 260053,343, 16971,5352, 744961,283, 260089,782, 16921, 744943,37, 260107,486, 16896,5249, 744916,109, 260123,09, 16866, 744910,315, 260126,406, 16859,5385, 744861,85, 260154,568, 16805,2847, 744856,556, 260155,904, 16800, 744849,788, 260157,612, 16793, 744775,83, 260176,275, 16713,6247, 744729,357, 260178,327, 16665,2165, 744701,057, 260167,185, 16633,5665, 744676,507, 260159,215, 16606,7065, 744671,049, 260155,788, 16600, 744655,203, 260145,838, 16581,092, 744612,692, 260095,716, 16514,6775, 744593,407, 260062,66, 16476,0042, 744583,172, 260030,786, 16442,1747, 744564,614, 259993,404, 16400, 744539,879, 259943,581, 16346,9281, 744504,017, 259856,491, 16257,0664, 744489,31, 259831,736, 16229,5939, 744470,911, 259806,766, 16200,001, 744432,497, 259754,634, 16131,7673, 744385,287, 259721,483, 16070,9828, 744368,391, 259715,481, 16052,0895, 744319,511, 259708,095, 16000, 744313,966, 259707,257, 15994,458, 744288,761, 259716,284, 15968, 744281,192, 259718,995, 15960,1805, 744253,364, 259736,944, 15927,
9736, 744233,798, 259800,192, 15863,5828, 744215,65, 259862,997, 15800, 744210,276, 259881,594, 15780,346, 744186,259, 259983,952, 15673,5996, 744175,986, 260055,711, 15600, 744169,619, 260100,189, 15555,628, 744168,451, 260180,83, 15475,9825, 744173,354, 260257,614, 15400, 744174,128, 260269,737, 15388,029, 744171,904, 260281,693, 15376,0448, 744167,788, 260323,423, 15334,7221, 744159,312, 260374,106, 15284,0826, 744148,339, 260437,443, 15220,7368, 744131,814, 260450,471, 15200, 744126,387, 260454,75, 15192,9821, 744106,513, 260470,865, 15167, 744089,308, 260485,472, 15144,3338, 744055,412, 260489,614, 15110,0391, 744048,295, 260485,95, 15102, 744009,957, 260466,214, 15058,5542, 743983,172, 260442,121, 15022,2552, 743967,786, 260426,273, 15000, 743956,895, 260415,055, 14984, 743941,759, 260394,576, 14957,8439, 743940,473, 260388,962, 14951,9282, 743940,548, 260365,146, 14927,4661, 743942,24, 260331,308, 14892,6668, 743944,482, 260310,431, 14871,1002, 743949,226, 260273,366, 14832,7192, 743960,971, 260244,404
, 14800,6185, 743961,225, 260243,858, 14800, 743973,073, 260218,4