blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
214
content_id
stringlengths
40
40
detected_licenses
sequencelengths
0
50
license_type
stringclasses
2 values
repo_name
stringlengths
6
115
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
21 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
141k
586M
star_events_count
int64
0
30.4k
fork_events_count
int64
0
9.67k
gha_license_id
stringclasses
8 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
50 values
src_encoding
stringclasses
23 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
1 class
length_bytes
int64
5
10.4M
extension
stringclasses
29 values
filename
stringlengths
2
96
content
stringlengths
5
10.4M
976344f8a307900901166f4a3c0ee81c1769dfd0
449d555969bfd7befe906877abab098c6e63a0e8
/3843/CH9/EX9.6/Ex9_6.sce
100fe7f7be0adb2cb85a43663a51abed69efa313
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
751
sce
Ex9_6.sce
// Example 9_6 clc;funcprot(0); // Given data r=16;// The compression ratio T_1=200+273;// K P_1=200;// kPa r_c=2;// The cut off ratio r_p=1.3;// The pressure ratio c_p=1.00;// kJ/kg.K c_v=0.717;// kJ/kg.K R=0.287;// kJ/kg.K k=1.4;// The specific heat ratio // Calculation n=1-((1/(r^(k-1)))*(((r_p*r_c^k)-1)/((k*r_p*(r_c-1))+(r_p-1))));// The thermal efficiency T_2=T_1*(r)^(k-1);// K T_3=T_2*r_p;// K T_4=T_3*r_c;// K q_in=(c_v*(T_3-T_2))+(c_p*(T_4-T_3));// kJ/kg w_out=n*q_in;// kJ/kg v_1=(R*T_1)/P_1;// m^3/kg MEP=w_out/(v_1*(1-(1/r)));// kPa printf("\nThe thermal efficiency,n=%0.3f or %2.1f percentage. \nThe heat input,q_in=%4.0f kJ/kg. \nThe work output,w_out=%4.0f kJ/kg. \nThe MEP=%4.0f kPa",n,n*100,q_in,w_out,MEP);
2158a191d1cc99076b4be3c41c5561d05d227c68
449d555969bfd7befe906877abab098c6e63a0e8
/278/CH17/EX17.3/ex_17_3.sce
d4778eec8136b82cf236e2154d510806eae82917
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
470
sce
ex_17_3.sce
clc //soluiton //given do=55//mm p=10//mm W=400//N D2=60//mm D1=90//mm R1=45//mm R2=30//mm u=0.15 u1=0.15//=//tan(q) v=6//m/min d=do-(p/2)//mm //tan(a)=p/(%pi/d)=b=0.0637 b=0.0637 //P=W*tan(u+a) //P=W*[(tan(a)+tan(q))/(1-tan(a)*tan(q))] P=W*[(b+u)/(1-(b*u))]//N R=(R1+R2)/2//mm T=[(P*d/2)+(u1*W*R)]/1000//N-mm N=v/0.01//rpm w=2*%pi*N/60//rad/sec P=T*w//W printf("the power transmitted is,%f W\n",P) //eff=To/T eff=(W*b*(d/2))/(1000*T) printf("the efficuency is,%f",eff)
5a47238a7efeb56f6a6772cfe5d34abc81408d74
e6d5f1d801a3fe887b5dc04b8cc0a9eabc1fd432
/Semana_3/trabajo_lab_grupo1.sce
313b14a5f24b4783ef0db13c99ed1609ec34ab73
[]
no_license
lordjuacs/MateIII
70def332063e56eb10fb47678a7e6130dc0dca63
164c53b61c9e35e565121f77ba2c578680a3ab56
refs/heads/master
2021-05-24T15:56:01.078904
2020-07-27T19:57:34
2020-07-27T19:57:34
253,643,962
0
0
null
null
null
null
UTF-8
Scilab
false
false
3,247
sce
trabajo_lab_grupo1.sce
function [L,U] = crout(A) [m,n] = size(A) L = A; U = eye(n,n); for k=1:n-1 pivot = L(k,k) for j = k+1:n U(k,j)= L(k,j)/pivot L(:,j)=L(:,j)-U(k,j)*L(:,k) end end endfunction function [L,U] = doolittle(A) [m,n] = size(A) U = A; L = eye(n,n); for k=1:n-1 pivot = U(k,k) for j = k+1:n L(j,k)= U(j,k)/pivot U(j,:)=U(j,:)-L(j,k)*U(k,:) end end endfunction function x = susti_in(U, b) [m,n]=size(U) x = zeros(n,1) for k=n:-1:1 x(k)=(b(k)-sum(U(k, k+1:n)*x(k+1:n)))/U(k,k) end endfunction function x = susti_dir(L, b) [m,n]=size(L) x = zeros(n,1) for k=1:n x(k)=(b(k)-sum(L(k, 1:k-1)*x(1:k-1)))/L(k,k) end endfunction //d1=1800kg/m^3, d2=1600kg/m^3, d1=1200kg/m^3, //densidad = masa/volumen = masa /(pi*(D/2)^2 * altura) //Tipo A : L1=0.04m, L2=0.06m, L3=0.07m, W=0.1644pikg //Tipo B : L1=0.05m, L2=0.09m, L3=0.14m, W=0.2772pikg //Tipo C : L1=0.06m, L2=0.12m, L3=0.2m, W=0.3792pikg //Forma general: L1d1D1 + L2d2D2 + L3d3D3 = (4/pi)*W //Tipo A : 0.04*1800D1^2 + 0.06*1600D2^2 + 0.07*1200D3^2 = (4/pi)*0.1644pi //Tipo B : 0.05*1800D1^2 + 0.09*1600D2^2 + 0.14*1200D3^2 = (4/pi)*0.2772pi //Tipo C : 0.06*1800D1^2 +0.12*1600D2^2 + 0.2*1200D3^2 = (4/pi)*0.3792pi clc disp("MATE III SECCIÓN 1 SEMANA 3 GRUPO 1") M =[72 96 84;90 144 168;108 192 240] b = [0.6576 1.1088 1.5168]' disp(M, "M") disp(b, "b") disp("Pregunta 1. Factorizando por Crout") [Lc, Uc] = crout(M) disp(Lc, "L") disp(Uc, "U") disp(trace(Lc), "Traza de L") disp("Pregunta 2. Factorizando por Doolittle") [Ld, Ud] = doolittle(M) disp(Ld, "L") disp(Ud, "U") disp(trace(Ud), "Traza de U") //M*D = b //Lc*Uc*D = b //Lc*z=b //Uc*D=z zc = susti_dir(Lc, b) Dc = susti_in(Uc, zc) disp(zc, "Pregunta 3. Z Crout") disp(Dc, "D Crout") disp(sum(zc), "Suma Z Crout") //M*D = b //Ld*Ud*D = b //Ld*z=b //Ud*D=z zd = susti_dir(Ld, b) Dd = susti_in(Ud, zd) disp(zd, "Pregunta 4. Z Doolittle") disp(Dd, "D Doolittle") disp(sum(zd), "Suma Z Doolittle") //Se comprueba que tanto con Crout que con Doolittle, D es la misma diam = Dc^.5 disp("Diámetros (en m)") disp(diam(1), "D1 = diámetro de A") disp(diam(2), "D2 = diámetro de B") disp(diam(3), "D3 = diámetro de C") disp("Diámetros (en cm)") disp(diam(1)*100, "D1 = diámetro de A") disp(diam(2)*100, "D2 = diámetro de B") disp(diam(3)*100, "D3 = diámetro de C") disp("Nota:") printf("\n Si consideramos la imagen del PPT, en el que el cilindro C\n ingresa al cilindro B, y el B al A, entonces no se podría\n dar ese caso de pieza sólida, puesto que el diámetro de C\n es mayor al de B, y el de B mayor al de A.\n\n") printf(" Sin embargo, se puede plantear que cambie el orden. Es\n decir, el cilindro A ingresa al B, y el B al C. En\n dicho caso la pieza sólida sí encajaría.\n") disp("Pregunta 5.") printf(" Sí se podría unir una cilindro de diámetro interno de\n 5,01 cm con la pieza sólida de tipo A,B y C, pues\n encajaría entre el cilindro C (diámetro de 6 cm) y\n el B (diámetro de 5 cm).") disp("Orden (de cilindros): C ---> Nuevo ---> B ---> A") disp("Diámetro (en cm): 6 ---> 5,01 ---> 5 ---> 4")
35d8e5477c8dd02d231a05e48ace91748e783d99
449d555969bfd7befe906877abab098c6e63a0e8
/2216/CH11/EX11.2/ex_11_2.sce
58dfbd95d55500c84559c3639d62101d6051c881
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
569
sce
ex_11_2.sce
//Example 11.2:position clc; clear; close; a=8.2;//in micro meter n1=1.45;// n2=1.446;// h1=1.31;//in micro meter h2=1.55;///in micro meter v1=((2*%pi*a*sqrt(n1^2-n2^2))/h1);// v2=((2*%pi*a*sqrt(n1^2-n2^2))/h2);// db=2.439;// del=5.5096*10^-3;// k1=1.0483;//mm^-1;// k2=1.2839///m^-1 l1=((%pi)/(4*k1));//in mm l2=((%pi)/(4*k2));//in mm disp("output port positioned at "+string(l2)+" mm with respect to the input port will gather signals at h1=1310nm") disp("output port positioned at "+string(l1)+" mm with respect to the input port will gather signals at h1=1550nm")
e4ce4ea7851f70a7d9ec3e85ac6032070ecb8fe8
527c41bcbfe7e4743e0e8897b058eaaf206558c7
/Positive_Negative_test/Netezza-Base-MatrixOperations/FLEigenSystemUdt-NZ-01.tst
5753d9219c3429fe0eea3ad4d2381e983f4347b2
[]
no_license
kamleshm/intern_fuzzy
c2dd079bf08bede6bca79af898036d7a538ab4e2
aaef3c9dc9edf3759ef0b981597746d411d05d34
refs/heads/master
2021-01-23T06:25:46.162332
2017-07-12T07:12:25
2017-07-12T07:12:25
93,021,923
0
0
null
null
null
null
UTF-8
Scilab
false
false
30,583
tst
FLEigenSystemUdt-NZ-01.tst
-- Fuzzy Logix, LLC: Functional Testing Script for DB Lytix functions on Netezza -- -- Copyright (c): 2014 Fuzzy Logix, LLC -- -- NOTICE: All information contained herein is, and remains the property of Fuzzy Logix, LLC. -- The intellectual and technical concepts contained herein are proprietary to Fuzzy Logix, LLC. -- and may be covered by U.S. and Foreign Patents, patents in process, and are protected by trade -- secret or copyright law. Dissemination of this information or reproduction of this material is -- strictly forbidden unless prior written permission is obtained from Fuzzy Logix, LLC. -- -- -- Functional Test Specifications: -- -- Test Category: Matrix Operation Functions -- -- Test Unit Number: FLEigenValue-NZ-01 -- -- Name(s): FLEigenValue -- -- Description: Calculates the eigenvalues, eigenvectors of a square matrix (n x n) -- -- Applications: -- -- Signature: FLEigenValue (Row_ID, Col_ID, Cell_Val) -- FLEigenVector (Row_ID, Col_ID, Cell_Val) -- -- Parameters: See Documentation -- -- Return value: Double Precision -- -- Last Updated: 01-26-2014 -- -- Author: <Tammy Weng: [email protected]>, <[email protected]> -- -- CAUTION: This test is the same as FLEigenVector - they are computed simultaneously -- Depending on future test scenarios, eventually, the two files may be merged. -- -- BEGIN: TEST SCRIPT --.run file=../PulsarLogOn.sql CREATE TABLE tblEigenValues (MatrixID INTEGER, row_id INTEGER, col_id INTEGER, cell_val FLOAT) DISTRIBUTE ON(row_id ,col_id); CREATE TABLE tblEigenVectors (MatrixID INTEGER, row_id INTEGER, col_id INTEGER, cell_val FLOAT) DISTRIBUTE ON(row_id ,col_id); CREATE TABLE tblEigenSystemTest (MatrixID INTEGER, row_id INTEGER, col_id INTEGER, cell_val FLOAT) DISTRIBUTE ON(row_id ,col_id); CREATE TABLE tblEigenValueOutput ( OutputMatrixID BIGINT, OutputRowNum BIGINT, OutputColNum BIGINT, OutputEigenVal DOUBLE PRECISION) DISTRIBUTE ON(OutputMatrixID, OutputRowNum, OutputColNum); CREATE TABLE tblEigenVectorOutput ( OutputMatrixID BIGINT, OutputRowNum BIGINT, OutputColNum BIGINT, OutputEigenVec DOUBLE PRECISION) DISTRIBUTE ON(OutputMatrixID, OutputRowNum, OutputColNum); -- BEGIN: POSITIVE TEST(s) ---- P1 Test with a 10 * 10 Non-Symmetric Matrix ---- Simulate X DELETE FROM tblEigenValues ; INSERT INTO tblEigenValues SELECT c.SerialVal AS MatrixID, a.SerialVal AS Row_id, b.SerialVal AS Col_id, CASE WHEN Row_ID = Col_ID THEN FLSimNormal(RANDOM(), RANDOM(), RANDOM()+1) ELSE 0 END AS Cell_Val FROM fzzlSerial AS a, fzzlSerial As b, fzzlSerial AS c WHERE Row_id <= 10 AND Col_id <= 10 AND MatrixID <= 10; DELETE FROM tblEigenVectors ; INSERT INTO tblEigenVectors SELECT c.SerialVal AS MatrixID, a.SerialVal AS Row_id, b.SerialVal AS Col_id, FLSimNormal(RANDOM(), RANDOM(), RANDOM()+1) AS Cell_Val FROM fzzlSerial AS a, fzzlSerial As b, fzzlSerial AS c WHERE Row_id <= 10 AND Col_id <= 10 AND MatrixID <= 10; DELETE FROM tblEigenSystemTest ; INSERT INTO tblEigenSystemTest SELECT b.MatrixID AS MatrixID, b.Row_ID, a.Col AS Col_ID, FLSumProd(a.Value, b.Num_Val) as Cell_Val FROM (SELECT *, NVL(LAG(0) OVER (PARTITION BY 1 ORDER BY row_id, col_id), 1) AS begin_flag, NVL(LEAD(0) OVER (PARTITION BY 1 ORDER BY row_id, col_id), 1) AS end_flag FROM tblEigenVectors WHERE MatrixID = 1 ) AS t, TABLE (FLMtxInvUdt(t.row_id, t.col_id, t.cell_val, t.begin_flag, t.end_flag)) AS a, (SELECT b.MatrixID, b.Row_ID, a.Col_ID, FLSumProd(a.Cell_Val, b.Cell_Val) AS Num_Val FROM tblEigenValues AS a, tblEigenVectors AS b WHERE b.MatrixID = a.MatrixID AND a.MatrixID = 1 AND b.Col_ID = a.Row_ID GROUP BY 1, 2, 3 ) AS b WHERE b.MatrixID = t.MatrixID AND b.Col_ID = a.Row GROUP BY 1, 2, 3; ---- Calculate Eigenvalues DELETE FROM tblEigenValueOutput ; INSERT INTO tblEigenValueOutput SELECT t.MatrixID, t.row_id, t.col_id, FLEigenValue(t.row_id, t.col_id, t.cell_val) OVER (PARTITION BY 1) AS EigenValue FROM tblEigenSystemTest AS t WHERE t.MatrixID = 1 ORDER BY t.Row_ID, t.Col_ID; ---- Calculate Eigen Vectors DELETE FROM tblEigenVectorOutput ; INSERT INTO tblEigenVectorOutput SELECT t.MatrixID, t.row_id, t.col_id, FLEigenVector(t.row_id, t.col_id, t.cell_val) OVER (PARTITION BY 1) AS EigenVector FROM tblEigenSystemTest AS t WHERE t.MatrixID = 1 ORDER BY t.Row_ID, t.Col_ID; ---- Check if Eigenvalues match with simulated eigenvalues SELECT a.MatrixID, CASE WHEN SUM(a.Num_Val) = 0 THEN 'Matrix-FT-FLEigenValue-NZ-01P1a: PASSED' ELSE 'Matrix-FT-FLEigenValue-NZ-01P1a: FAILED' END AS Msg FROM (SELECT b.MatrixID, CASE WHEN ABS(a.Cell_Val - b.Cell_Val)/(ABS(b.Cell_Val) + 1) < 1e-3 THEN 0 ELSE 1 END AS Num_Val FROM (SELECT a.OutputMatrixID AS MatrixID, ROW_NUMBER() OVER (PARTITION BY OutputMatrixID ORDER BY OutputEigenVal) AS ROW_ID, OutputEigenVal AS Cell_Val FROM tblEigenValueOutput AS a WHERE a.OutputRowNum = a.OutputColNum ) AS a, (SELECT a.MatrixID, ROW_NUMBER() OVER (PARTITION BY MatrixID ORDER BY Cell_Val) AS ROW_ID, a.Cell_Val FROM tblEigenValues AS a WHERE a.Row_ID = a.Col_ID ) AS b WHERE b.MatrixID = a.MatrixID AND b.Row_ID = a.Row_ID ) AS a GROUP BY 1 ORDER BY 1; ---- Check Eigen Vectors SELECT a.MatrixID, CASE WHEN SUM(a.Num_Val) = 0 THEN 'Matrix-FT-FLEigenVector-NZ-01P1b: PASSED' ELSE 'Matrix-FT-FLEigenVector-NZ-01P1b: FAILED' END AS Msg FROM (SELECT a.MatrixID, a.Row_ID, a.Col_ID, CASE WHEN ABS(a.Num_Val - b.Num_Val)/(ABS(b.Num_Val) + 1) <= 1e-3 THEN 0 ELSE 1 END AS Num_Val FROM ( SELECT a.OutputMatrixID AS MatrixID, b.Row_ID, a.OutputColNum AS Col_ID, FLSumprod(a.OutputEigenVec, b.Cell_Val) AS Num_Val FROM tblEigenVectorOutput AS a, tblEigenSystemTest AS b WHERE b.MatrixID = a.OutputMatrixID AND b.Col_ID = a.OutputRowNum GROUP BY 1, 2, 3 ) AS a, ( SELECT a.OutputMatrixID AS MatrixID, b.OutputRowNum AS Row_ID, a.OutputColNum AS Col_ID, FLSumProd(b.OutputEigenVec, a.OutputEigenVal) AS Num_Val FROM tblEigenValueOutput AS a, tblEigenVectorOutput AS b WHERE b.OutputMatrixID = a.OutputMatrixID AND b.OutputColNum = a.OutputRowNum GROUP BY 1, 2, 3 ) AS b WHERE b.MatrixID = a.MatrixID AND b.Row_ID = a.Row_ID AND b.Col_ID = a.Col_ID) AS a GROUP BY 1 ORDER BY 1; ---- P2 Test with a 10 * 10 Symmetric Matrix ---- Simulate X DELETE FROM tblEigenSystemTest ; INSERT INTO tblEigenSystemTest WITH tblX (MatrixID, Row_ID, Col_ID, Cell_Val) AS ( SELECT c.SerialVal AS MatrixID, a.SerialVal AS Row_id, b.SerialVal AS Col_id, FLSimNormal(a.SerialVal,b.SerialVal, 3) AS Cell_Val FROM fzzlSerial AS a, fzzlSerial As b, fzzlSerial AS c WHERE Row_id <= 10 AND Col_id <= 10 AND MatrixID <= 10 ) SELECT a.MatrixID, a.Col_ID AS Row_ID, b.Col_ID, FLSumProd(a.Cell_Val, b.Cell_Val) AS Cell_Val FROM tblX AS a, tblX AS b WHERE b.MatrixID = a.MatrixID AND b.Row_ID = a.Row_ID GROUP BY 1, 2, 3; ---- Calculate eigenvalues and eigenvectors DELETE FROM tblEigenValueOutput ; INSERT INTO tblEigenValueOutput SELECT t.MatrixID, t.row_id, t.col_id, FLEigenValue(t.row_id, t.col_id, t.cell_val) OVER (PARTITION BY 1) AS EigenValue FROM tblEigenSystemTest AS t WHERE t.MatrixID = 1 ORDER BY t.Row_ID, t.Col_ID; DELETE FROM tblEigenVectorOutput ; INSERT INTO tblEigenVectorOutput SELECT t.MatrixID, t.row_id, t.col_id, FLEigenVector(t.row_id, t.col_id, t.cell_val) OVER (PARTITION BY 1) AS EigenVector FROM tblEigenSystemTest AS t WHERE t.MatrixID = 1 ORDER BY t.Row_ID, t.Col_ID; ---- Check Eigen Vectors and Eigenvalues SELECT a.MatrixID, CASE WHEN SUM(a.Num_Val) = 0 THEN 'Matrix-FT-FLEigenValueUdt-NZ-01P2: PASSED' ELSE 'Matrix-FT-FLEigenValueUdt-NZ-01P2: FAILED' END AS Msg FROM (SELECT a.MatrixID, a.Row_ID, a.Col_ID, CASE WHEN ABS(a.Num_Val - b.Num_Val) <= 1e-8 THEN 0 ELSE 1 END AS Num_Val FROM ( SELECT a.OutputMatrixID AS MatrixID, b.Row_ID, a.OutputColNum AS Col_ID, FLSumprod(a.OutputEigenVec, b.Cell_Val) AS Num_Val FROM tblEigenVectorOutput AS a, tblEigenSystemTest AS b WHERE b.MatrixID = a.OutputMatrixID AND b.Col_ID = a.OutputRowNum GROUP BY 1, 2, 3 ) AS a, ( SELECT a.OutputMatrixID AS MatrixID, b.OutputRowNum AS Row_ID, a.OutputColNum AS Col_ID, FLSumprod(b.OutputEigenVec, a.OutputEigenVal) AS Num_Val FROM tblEigenValueOutput AS a, tblEigenVectorOutput AS b WHERE b.OutputMatrixID = a.OutputMatrixID AND b.OutputColNum = a.OutputRowNum GROUP BY 1, 2, 3 ) AS b WHERE b.MatrixID = a.MatrixID AND b.Row_ID = a.Row_ID AND b.Col_ID = a.Col_ID) AS a GROUP BY 1 ORDER BY 1; ---- P3 Test with a 10 * 10 Non-Symmetric Singular Matrix ---- Simulate X DELETE FROM tblEigenValues ; INSERT INTO tblEigenValues SELECT c.SerialVal AS MatrixID, a.SerialVal AS Row_id, b.SerialVal AS Col_id, CASE WHEN Row_ID = Col_ID AND ROW_ID < 10 THEN FLSimNormal(RANDOM()* 100000, RANDOM()*10, RANDOM()*1000) ELSE 0 END AS Cell_Val FROM fzzlSerial AS a, fzzlSerial As b, fzzlSerial AS c WHERE Row_id <= 10 AND Col_id <= 10 AND MatrixID <= 10; DELETE FROM tblEigenVectors ; INSERT INTO tblEigenVectors SELECT c.SerialVal AS MatrixID, a.SerialVal AS Row_id, b.SerialVal AS Col_id, FLSimNormal(RANDOM()*100000, RANDOM()*10, RANDOM()*1000) AS Cell_Val FROM fzzlSerial AS a, fzzlSerial As b, fzzlSerial AS c WHERE Row_id <= 10 AND Col_id <= 10 AND MatrixID <= 10; -- some trivial problem where z doesnt exist. DELETE FROM tblEigenSystemTest ; INSERT INTO tblEigenSystemTest WITH z (MatrixID, Row_ID, Col_ID, Cell_Val) AS ( SELECT a.* FROM tblEigenVectors AS a ) SELECT b.MatrixID AS MatrixID, b.Row_ID, a.OutputColNum AS Col_ID, FLSumProd(a.OutputVal, b.Num_Val) as Cell_Val FROM (SELECT a.* FROM TABLE (FLMatrixInv(z.Row_ID, z.Col_ID, z.Cell_Val) OVER (PARTITION BY z.MatrixID) ) AS a ) AS a, (SELECT b.MatrixID, b.Row_ID, a.Col_ID, FLSumProd(a.Cell_Val, b.Cell_Val) AS Num_Val FROM tblEigenValues AS a, tblEigenVectors AS b WHERE b.MatrixID = a.MatrixID AND b.Col_ID = a.Row_ID GROUP BY 1, 2, 3 ) AS b WHERE b.MatrixID = a.OutputMatrixID AND b.Col_ID = a.OutputRowNum GROUP BY 1, 2, 3; ---- Calculate Eigenvalues and Eigen Vectors DELETE FROM tblEigenSystemOutput ; INSERT INTO tblEigenSystemOutput WITH z (Matrix_ID, Row_ID, Col_ID, NumVal) AS ( SELECT * FROM tblEigenSystemTest AS a ) SELECT a.* FROM TABLE ( FLEigenSystemUdt(z.Matrix_ID, z.Row_ID, z.Col_ID, z.NumVal, Begin_flag, End_flag) HASH BY z.Matrix_ID LOCAL ORDER BY z.Matrix_ID, z.Row_ID, z.Col_ID ) AS a; ---- Check if Eigenvalues match with simulated eigenvalues SELECT a.MatrixID, CASE WHEN SUM(a.Num_Val) = 0 THEN 'Matrix-FT-FLEigenSystemUdt-TD-01P3a: PASSED' ELSE 'Matrix-FT-FLEigenSystemUdt-TD-01P3a: FAILED' END AS Msg FROM (SELECT b.MatrixID, CASE WHEN ABS(a.Cell_Val - b.Cell_Val)/(ABS(b.Cell_Val) + 1) < 1e-3 THEN 0 ELSE 1 END AS Num_Val FROM (SELECT a.OutputMatrixID AS MatrixID, ROW_NUMBER() OVER (PARTITION BY OutputMatrixID ORDER BY OutputEigenVal) AS ROW_ID, OutputEigenVal AS Cell_Val FROM tblEigenSystemOutput AS a WHERE a.OutputRowNum = a.OutputColNum ) AS a, (SELECT a.MatrixID, ROW_NUMBER() OVER (PARTITION BY MatrixID ORDER BY Cell_Val) AS ROW_ID, a.Cell_Val FROM tblEigenValues AS a WHERE a.Row_ID = a.Col_ID ) AS b WHERE b.MatrixID = a.MatrixID AND b.Row_ID = a.Row_ID ) AS a GROUP BY 1 ORDER BY 1; ---- Check Eigen Vectors SELECT a.MatrixID, CASE WHEN SUM(a.Num_Val) = 0 THEN 'Matrix-FT-FLEigenSystemUdt-TD-01P3b: PASSED' ELSE 'Matrix-FT-FLEigenSystemUdt-TD-01P3b: FAILED' END AS Msg FROM (SELECT a.MatrixID, a.Row_ID, a.Col_ID, CASE WHEN ABS(a.Num_Val - b.Num_Val)/(ABS(b.Num_Val) + 1) <= 1e-3 THEN 0 ELSE 1 END AS Num_Val FROM ( SELECT a.OutputMatrixID AS MatrixID, b.Row_ID, a.OutputColNum AS Col_ID, FLSumprod(a.OutputEigenVec, b.Cell_Val) AS Num_Val FROM tblEigenSystemOutput AS a, tblEigenSystemTest AS b WHERE b.MatrixID = a.OutputMatrixID AND b.Col_ID = a.OutputRowNum GROUP BY 1, 2, 3 ) AS a, ( SELECT a.OutputMatrixID AS MatrixID, b.OutputRowNum AS Row_ID, a.OutputColNum AS Col_ID, FLSumprod(b.OutputEigenVec, a.OutputEigenVal) AS Num_Val FROM tblEigenSystemOutput AS a, tblEigenSystemOutput AS b WHERE b.OutputMatrixID = a.OutputMatrixID AND b.OutputColNum = a.OutputRowNum GROUP BY 1, 2, 3 ) AS b WHERE b.MatrixID = a.MatrixID AND b.Row_ID = a.Row_ID AND b.Col_ID = a.Col_ID) AS a GROUP BY 1 ORDER BY 1; ---- P4 Test with a 10 * 10 Symmetric Singular Matrix ---- Simulate X DELETE FROM tblEigenSystemTest ; INSERT INTO tblEigenSystemTest WITH tblX (MatrixID, Row_ID, Col_ID, Cell_Val) AS ( SELECT c.SerialVal AS MatrixID, a.SerialVal AS Row_id, b.SerialVal AS Col_id, CASE WHEN Row_ID < 10 THEN FLSimNormal(RANDOM(0, 100000), RANDOM(0,10), RANDOM(1,10)) ELSE 0 END AS Cell_Val FROM fzzlSerial AS a, fzzlSerial As b, fzzlSerial AS c WHERE Row_id <= 10 AND Col_id <= 10 AND MatrixID <= 10 ) SELECT a.MatrixID, a.Col_ID AS Row_ID, b.Col_ID, FLSumProd(a.Cell_Val, b.Cell_Val) AS Cell_Val FROM tblX AS a, tblX AS b WHERE b.MatrixID = a.MatrixID AND b.Row_ID = a.Row_ID GROUP BY 1, 2, 3; ---- Calculate eigenvalues and eigen vectors DELETE FROM tblEigenSystemOutput ; INSERT INTO tblEigenSystemOutput WITH z (Matrix_ID, Row_ID, Col_ID, NumVal) AS ( SELECT * FROM tblEigenSystemTest AS a ) SELECT a.* FROM TABLE ( FLEigenSystemUdt(z.Matrix_ID, z.Row_ID, z.Col_ID, z.NumVal) PARTITION BY z.Matrix_ID ORDER BY z.Matrix_ID, z.Row_ID, z.Col_ID ) AS a; ---- Check Eigen Vectors and Eigenvalues SELECT a.MatrixID, CASE WHEN SUM(a.Num_Val) = 0 THEN 'Matrix-FT-FLEigenSystemUdt-TD-01P4: PASSED' ELSE 'Matrix-FT-FLEigenSystemUdt-TD-01P4: FAILED' END AS Msg FROM (SELECT a.MatrixID, a.Row_ID, a.Col_ID, CASE WHEN ABS(a.Num_Val - b.Num_Val) <= 1e-8 THEN 0 ELSE 1 END AS Num_Val FROM ( SELECT a.OutputMatrixID AS MatrixID, b.Row_ID, a.OutputColNum AS Col_ID, FLSumprod(a.OutputEigenVec, b.Cell_Val) AS Num_Val FROM tblEigenSystemOutput AS a, tblEigenSystemTest AS b WHERE b.MatrixID = a.OutputMatrixID AND b.Col_ID = a.OutputRowNum GROUP BY 1, 2, 3 ) AS a, ( SELECT a.OutputMatrixID AS MatrixID, b.OutputRowNum AS Row_ID, a.OutputColNum AS Col_ID, FLSumprod(b.OutputEigenVec, a.OutputEigenVal) AS Num_Val FROM tblEigenSystemOutput AS a, tblEigenSystemOutput AS b WHERE b.OutputMatrixID = a.OutputMatrixID AND b.OutputColNum = a.OutputRowNum GROUP BY 1, 2, 3 ) AS b WHERE b.MatrixID = a.MatrixID AND b.Row_ID = a.Row_ID AND b.Col_ID = a.Col_ID) AS a GROUP BY 1 ORDER BY 1; ---- P5 Test with a 100 * 100 Non-Symmetric Matrix ---- Simulate X /* DELETE FROM tblEigenValues ; INSERT INTO tblEigenValues SELECT c.SerialVal AS MatrixID, a.SerialVal AS Row_id, b.SerialVal AS Col_id, CASE WHEN Row_ID = Col_ID THEN FLSimNormal(RANDOM(0, 100000), RANDOM(0,10), RANDOM(1,1000)) ELSE 0 END AS Cell_Val FROM fzzlSerial AS a, fzzlSerial As b, fzzlSerial AS c WHERE Row_id <= 100 AND Col_id <= 100 AND MatrixID <= 10; DELETE FROM tblEigenVectors ; INSERT INTO tblEigenVectors SELECT c.SerialVal AS MatrixID, a.SerialVal AS Row_id, b.SerialVal AS Col_id, FLSimNormal(RANDOM(0, 100000), RANDOM(0,10), RANDOM(1,1000)) AS Cell_Val FROM fzzlSerial AS a, fzzlSerial As b, fzzlSerial AS c WHERE Row_id <= 100 AND Col_id <= 100 AND MatrixID <= 2; DELETE FROM tblEigenSystemTest ; INSERT INTO tblEigenSystemTest WITH z (Matrix_ID, Row_ID, Col_ID, NumVal) AS ( SELECT * FROM tblEigenVectors AS a ) SELECT b.MatrixID AS MatrixID, b.Row_ID, a.OutputColNum AS Col_ID, FLSumProd(a.OutputVal, b.Num_Val) as Cell_Val FROM (SELECT a.* FROM TABLE (FLMatrixInvUdt(z.Matrix_ID, z.Row_ID, z.Col_ID, z.NumVal) PARTITION BY z.Matrix_ID ORDER BY z.Matrix_ID, z.Row_ID, z.Col_ID ) AS a ) AS a, (SELECT b.MatrixID, b.Row_ID, a.Col_ID, FLSumProd(a.Cell_Val, b.Cell_Val) AS Num_Val FROM tblEigenValues AS a, tblEigenVectors AS b WHERE b.MatrixID = a.MatrixID AND b.Col_ID = a.Row_ID GROUP BY 1, 2, 3 ) AS b WHERE b.MatrixID = a.OutputMatrixID AND b.Col_ID = a.OutputRowNum GROUP BY 1, 2, 3; ---- Calculate Eigenvalues and Eigen Vectors DELETE FROM tblEigenSystemOutput ; INSERT INTO tblEigenSystemOutput WITH z (Matrix_ID, Row_ID, Col_ID, NumVal) AS ( SELECT * FROM tblEigenSystemTest AS a ) SELECT a.* FROM TABLE ( FLEigenSystemUdt(z.Matrix_ID, z.Row_ID, z.Col_ID, z.NumVal) PARTITION BY z.Matrix_ID ORDER BY z.Matrix_ID, z.Row_ID, z.Col_ID ) AS a; ---- Check if Eigenvalues match with simulated eigenvalues SELECT a.MatrixID, CASE WHEN SUM(a.Num_Val) = 0 THEN 'Matrix-FT-FLEigenSystemUdt-TD-01P5a: PASSED' ELSE 'Matrix-FT-FLEigenSystemUdt-TD-01P5a: FAILED' END AS Msg FROM (SELECT b.MatrixID, CASE WHEN ABS(a.Cell_Val - b.Cell_Val) < 1e-8 THEN 0 ELSE 1 END AS Num_Val FROM (SELECT a.OutputMatrixID AS MatrixID, ROW_NUMBER() OVER (PARTITION BY OutputMatrixID ORDER BY OutputEigenVal) AS ROW_ID, OutputEigenVal AS Cell_Val FROM tblEigenSystemOutput AS a WHERE a.OutputRowNum = a.OutputColNum ) AS a, (SELECT a.MatrixID, ROW_NUMBER() OVER (PARTITION BY MatrixID ORDER BY Cell_Val) AS ROW_ID, a.Cell_Val FROM tblEigenValues AS a WHERE a.Row_ID = a.Col_ID ) AS b WHERE b.MatrixID = a.MatrixID AND b.Row_ID = a.Row_ID ) AS a GROUP BY 1 ORDER BY 1; ---- Check Eigen Vectors SELECT a.MatrixID, CASE WHEN SUM(a.Num_Val) = 0 THEN 'Matrix-FT-FLEigenSystemUdt-TD-01P5b: PASSED' ELSE 'Matrix-FT-FLEigenSystemUdt-TD-01P5b: FAILED' END AS Msg FROM (SELECT a.MatrixID, a.Row_ID, a.Col_ID, CASE WHEN ABS(a.Num_Val - b.Num_Val) <= 1e-8 THEN 0 ELSE 1 END AS Num_Val FROM ( SELECT a.OutputMatrixID AS MatrixID, b.Row_ID, a.OutputColNum AS Col_ID, FLSumprod(a.OutputEigenVec, b.Cell_Val) AS Num_Val FROM tblEigenSystemOutput AS a, tblEigenSystemTest AS b WHERE b.MatrixID = a.OutputMatrixID AND b.Col_ID = a.OutputRowNum GROUP BY 1, 2, 3 ) AS a, ( SELECT a.OutputMatrixID AS MatrixID, b.OutputRowNum AS Row_ID, a.OutputColNum AS Col_ID, FLSumprod(b.OutputEigenVec, a.OutputEigenVal) AS Num_Val FROM tblEigenSystemOutput AS a, tblEigenSystemOutput AS b WHERE b.OutputMatrixID = a.OutputMatrixID AND b.OutputColNum = a.OutputRowNum GROUP BY 1, 2, 3 ) AS b WHERE b.MatrixID = a.MatrixID AND b.Row_ID = a.Row_ID AND b.Col_ID = a.Col_ID) AS a GROUP BY 1 ORDER BY 1; //*/ ---- P6 Test with a 100 * 100 Symmetric Matrix ---- Simulate X DELETE FROM tblEigenSystemTest ; INSERT INTO tblEigenSystemTest WITH tblX (MatrixID, Row_ID, Col_ID, Cell_Val) AS ( SELECT c.SerialVal AS MatrixID, a.SerialVal AS Row_id, b.SerialVal AS Col_id, FLSimNormal(RANDOM(0, 100000), RANDOM(0,10), RANDOM(1,10)) AS Cell_Val FROM fzzlSerial AS a, fzzlSerial As b, fzzlSerial AS c WHERE Row_id <= 100 AND Col_id <= 100 AND MatrixID <= 2 ) SELECT a.MatrixID, a.Col_ID AS Row_ID, b.Col_ID, FLSumProd(a.Cell_Val, b.Cell_Val) AS Cell_Val FROM tblX AS a, tblX AS b WHERE b.MatrixID = a.MatrixID AND b.Row_ID = a.Row_ID GROUP BY 1, 2, 3; ---- Calculate eigenvalues and eigen vectors DELETE FROM tblEigenSystemOutput ; INSERT INTO tblEigenSystemOutput WITH z (Matrix_ID, Row_ID, Col_ID, NumVal) AS ( SELECT * FROM tblEigenSystemTest AS a ) SELECT a.* FROM TABLE ( FLEigenSystemUdt(z.Matrix_ID, z.Row_ID, z.Col_ID, z.NumVal) PARTITION BY z.Matrix_ID ORDER BY z.Matrix_ID, z.Row_ID, z.Col_ID ) AS a; ---- Check Eigen Vectors and Eigenvalues SELECT a.MatrixID, CASE WHEN SUM(a.Num_Val) = 0 THEN 'Matrix-FT-FLEigenSystemUdt-TD-01P6: PASSED' ELSE 'Matrix-FT-FLEigenSystemUdt-TD-01P6: FAILED' END AS Msg FROM (SELECT a.MatrixID, a.Row_ID, a.Col_ID, CASE WHEN ABS(a.Num_Val - b.Num_Val) <= 1e-6 THEN 0 ELSE 1 END AS Num_Val FROM ( SELECT a.OutputMatrixID AS MatrixID, b.Row_ID, a.OutputColNum AS Col_ID, FLSumprod(a.OutputEigenVec, b.Cell_Val) AS Num_Val FROM tblEigenSystemOutput AS a, tblEigenSystemTest AS b WHERE b.MatrixID = a.OutputMatrixID AND b.Col_ID = a.OutputRowNum GROUP BY 1, 2, 3 ) AS a, ( SELECT a.OutputMatrixID AS MatrixID, b.OutputRowNum AS Row_ID, a.OutputColNum AS Col_ID, FLSumprod(b.OutputEigenVec, a.OutputEigenVal) AS Num_Val FROM tblEigenSystemOutput AS a, tblEigenSystemOutput AS b WHERE b.OutputMatrixID = a.OutputMatrixID AND b.OutputColNum = a.OutputRowNum GROUP BY 1, 2, 3 ) AS b WHERE b.MatrixID = a.MatrixID AND b.Row_ID = a.Row_ID AND b.Col_ID = a.Col_ID) AS a GROUP BY 1 ORDER BY 1; -- END: POSITIVE TEST(s) -- BEGIN: NEGATIVE TEST(s) ---- N1 Test with non-square matrix ---- N1.1 Test Number of Rows > Number of Cols DELETE FROM tblEigenSystemTest ; INSERT INTO tblEigenSystemTest SELECT c.SerialVal AS MatrixID, a.SerialVal AS Row_id, b.SerialVal AS Col_id, FLSimNormal(RANDOM(), RANDOM(), RANDOM()+1) AS Cell_Val FROM fzzlSerial AS a, fzzlSerial As b, fzzlSerial AS c WHERE Row_id <= 10 AND Col_id <= 9 AND MatrixID <= 2; ---- Calculate Eigenvalues DELETE FROM tblEigenValueOutput ; INSERT INTO tblEigenValueOutput SELECT t.MatrixID, t.row_id, t.col_id, FLEigenValue(t.row_id, t.col_id, t.cell_val) OVER (PARTITION BY 1) AS EigenValue FROM tblEigenSystemTest AS t WHERE t.MatrixID = 1 ORDER BY t.Row_ID, t.Col_ID; ---- Calculate Eigen Vectors DELETE FROM tblEigenVectorOutput ; INSERT INTO tblEigenVectorOutput SELECT t.MatrixID, t.row_id, t.col_id, FLEigenVector(t.row_id, t.col_id, t.cell_val) OVER (PARTITION BY 1) AS EigenVector FROM tblEigenSystemTest AS t WHERE t.MatrixID = 1 ORDER BY t.Row_ID, t.Col_ID; ---- N1.2 Test Number of Rows > Number of Cols DELETE FROM tblEigenSystemTest ; INSERT INTO tblEigenSystemTest SELECT c.SerialVal AS MatrixID, a.SerialVal AS Row_id, b.SerialVal AS Col_id, FLSimNormal(RANDOM(), RANDOM(), RANDOM()+1) AS Cell_Val FROM fzzlSerial AS a, fzzlSerial As b, fzzlSerial AS c WHERE Row_id <= 9 AND Col_id <= 10 AND MatrixID <= 2; ---- Calculate Eigenvalues DELETE FROM tblEigenValueOutput ; INSERT INTO tblEigenValueOutput SELECT t.MatrixID, t.row_id, t.col_id, FLEigenValue(t.row_id, t.col_id, t.cell_val) OVER (PARTITION BY 1) AS EigenValue FROM tblEigenSystemTest AS t WHERE t.MatrixID = 1 ORDER BY t.Row_ID, t.Col_ID; ---- Calculate Eigen Vectors DELETE FROM tblEigenVectorOutput ; INSERT INTO tblEigenVectorOutput SELECT t.MatrixID, t.row_id, t.col_id, FLEigenVector(t.row_id, t.col_id, t.cell_val) OVER (PARTITION BY 1) AS EigenVector FROM tblEigenSystemTest AS t WHERE t.MatrixID = 1 ORDER BY t.Row_ID, t.Col_ID; ---- N2 Test with complex eigenvalues ---- No error message is thrown. The results have to be checked. DELETE FROM tblEigenSystemTest ; INSERT INTO tblEigenSystemTest (MatrixID, Row_ID, Col_ID, Cell_Val) VALUES (1, 1, 1, 3); INSERT INTO tblEigenSystemTest (MatrixID, Row_ID, Col_ID, Cell_Val) VALUES (1, 1, 2, -2); INSERT INTO tblEigenSystemTest (MatrixID, Row_ID, Col_ID, Cell_Val) VALUES (1, 2, 1, 4); INSERT INTO tblEigenSystemTest (MatrixID, Row_ID, Col_ID, Cell_Val) VALUES (1, 2, 2 , -1); ---- Calculate Eigenvalues DELETE FROM tblEigenValueOutput ; INSERT INTO tblEigenValueOutput SELECT t.MatrixID, t.row_id, t.col_id, FLEigenValue(t.row_id, t.col_id, t.cell_val) OVER (PARTITION BY 1) AS EigenValue FROM tblEigenSystemTest AS t WHERE t.MatrixID = 1 ORDER BY t.Row_ID, t.Col_ID; ---- Calculate Eigen Vectors DELETE FROM tblEigenVectorOutput ; INSERT INTO tblEigenVectorOutput SELECT t.MatrixID, t.row_id, t.col_id, FLEigenVector(t.row_id, t.col_id, t.cell_val) OVER (PARTITION BY 1) AS EigenVector FROM tblEigenSystemTest AS t WHERE t.MatrixID = 1 ORDER BY t.Row_ID, t.Col_ID; -- END: NEGATIVE TEST(s) -- Drop schema/indexes by cing associated drop script(s) (OPTIONAL) DROP TABLE tblEigenValues; DROP TABLE tblEigenVectors; DROP TABLE tblEigenSystemTest; DROP TABLE tblEigenValueOutput; DROP TABLE tblEigenVectorOutput; -- END: TEST SCRIPT
413898c364b1753889d90b0f81870ddb1efc8325
449d555969bfd7befe906877abab098c6e63a0e8
/137/CH2/EX2.3b/prob_2_3b.sce
e0f538b757f0f5e189fa4d26d4d7a90ca141b21e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
351
sce
prob_2_3b.sce
// page no.26 //exa no.2.3b t=[-3:.0082:1]; m1=(0-1)/(-3-(-1));//slope for -3<t<-1 c1=(0-m1*(-3));//intercept for pt(-3,0) u(t<=-1)=[(m1*t(t<=-1))+c1]' m2=(1-0)/(-1-1);//slope for -1<t<1 c2=(0-m2*1)//intercept for pt(1,0) u(t>-1)=[(m2*t(t>-1))+c2]'; subplot(221) plot2d(t,u)//original signal subplot(222) plot2d(2*t,u)//expansion of signal
8241d8124ee8b2bcc1167ea5700e22b8379ea5c5
4b3c8d2302d37ad5981adb6f68fae3db1d9820c8
/add_Blocks.sce
8169998d8138b4341ca7dbaf2cab49a1344504b7
[]
no_license
mayank1513/littleBird_RD_ResourceManagementSystem
002d19579b3b55a314450ec75d2874131741564b
090d016248164580defc9b4629ba54c9dc362949
refs/heads/master
2020-03-15T04:48:31.637752
2018-05-03T09:46:53
2018-05-03T09:46:53
131,970,842
0
0
null
null
null
null
UTF-8
Scilab
false
false
899
sce
add_Blocks.sce
str = get(get('edit_blockList'),"String"); for i = 1:size(str,2)-1 str(i) = stripblanks(part(str(i),1:$-1)); end str($) = stripblanks(str($)); addblk_msgStr = []; for i = 1:size(str,2) if isempty(str(i)) then continue; end if ~isempty(find(blocks(1)==str(i))) then addblk_msgStr($+1) = str(i); continue; end //blocks(1 or 2)(block ind)(1 or 2)(vill ind) [blocks(1), ind] = insertName(blocks(1),str(i)); for i1 = size(blocks(1),2):-1:ind+1 blocks(2)(i1) = blocks(2)(i1-1); end blocks(2)(ind) = list([],list([])); end set(get('blockList'),'String',blocks(1)); set(get('villageList'),'String',''); set(get('hemletList'),'String',''); if ~isempty(addblk_msgStr) then messagebox(addblk_msgStr + " already exists in the list!", "littleBird: Duplicate entries ignored!!!","info"); end set(get('edit_blockList'),"String","");
c2c36f4e987e77104c5e53f3283b03ef524ddfd4
b68ae1fc3cd37c85031f69e42d92903b7f1a90ab
/projects/07/StackArithmetic/SimpleAdd/SimpleAddVME.tst
b8a9a9126544a52190bbf25273160136c7892eda
[]
no_license
bricef/The-Elements-of-Computing-Systems
fb3aa100c18176ccfc876e9d30319c0b8a5c7635
6be81eacaa30ad57b06f018c0aecbcf7e04841bc
refs/heads/master
2021-01-18T13:43:02.653913
2011-04-06T19:23:52
2011-04-06T19:23:52
1,578,790
5
1
null
null
null
null
UTF-8
Scilab
false
false
420
tst
SimpleAddVME.tst
// This file is part of the materials accompanying the book // "The Elements of Computing Systems" by Nisan and Schocken, // MIT Press. Book site: www.idc.ac.il/tecs // File name: projects/07/StackArithmetic/SimpleAdd/SimpleAddVME.tst load SimpleAdd.vm, output-file SimpleAdd.out, compare-to SimpleAdd.cmp, output-list RAM[0]%D2.6.2 RAM[256]%D2.6.2; set RAM[0] 256, repeat 3 { vmstep; } output;
03a04f9d5f5487aece67fb823b713f1d2a816bb0
8aadf599f8aab148e92661d729bdd436529b3824
/poster/Scrapbookposter/Copy of g3827.sce
c01245c6dcb8225ca85b2a7325b413c162bd0557
[]
no_license
schrfr/osp.work.spion
8e7fdd66ed65fed7dd019247b1ce5d939250361d
b3c71ab8cbaf69a5c52ee808af1c0b9bb0c13f9d
refs/heads/master
2020-05-30T11:28:05.326941
2013-08-07T20:40:34
2013-08-07T20:41:24
11,801,464
0
0
null
null
null
null
UTF-8
Scilab
false
false
12,341
sce
Copy of g3827.sce
<SCRIBUSELEMUTF8 W="312.449135417335" H="443.809681380351" previewData="iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAOxAAADsQBlSsOGwAAACBJREFUaIHtwQEBAAAAgiD/r25IQAEAAAAAAAAAAMCjASdCAAFkjjE+AAAAAElFTkSuQmCC" YP="432.807960372795" XP="2573.56233847769" COUNT="6" Version="1.4.0.rc3"> <FONT NAME="Alfphabet IV"/> <COLOR Spot="0" Register="0" NAME="Black" CMYK="#000000ff"/> <COLOR Spot="0" RGB="#000000" Register="0" NAME="FromSVG#000000"/> <COLOR Spot="0" RGB="#ff3481" Register="0" NAME="FromSVG#ff3481"/> <COLOR Spot="0" RGB="#ffffff" Register="0" NAME="FromSVG#ffffff"/> <COLOR Spot="1" Register="0" NAME="Pantone 812U" CMYK="#00c40000"/> <ITEM TXTULW="-0.1" POCOOR="0 0 0 0 312.449 0 312.449 0 312.449 0 312.449 0 312.449 443.81 312.449 443.81 312.449 443.81 312.449 443.81 0 443.81 0 443.81 0 443.81 0 443.81 0 0 0 0 " ANNAME="Copy of g3827" RADRECT="0" TXTSTP="-0.1" GRTYP="0" PCOLOR="None" TXTSTW="-0.1" ALIGN="0" BACKITEM="-1" WIDTH="312.449135417335" XPOS="2573.56233847769" EXTRA="0" TopLine="0" NEXTITEM="-1" PRINTABLE="1" HEIGHT="443.809681380351" groupsLastItem="5" BASEOF="0" isTableItem="0" LANGUAGE="English" BACKPAGE="-1" TEXTFLOWMODE="0" TransBlendS="0" IFONT="Alfphabet IV" TXTSCALEV="100" textPathFlipped="0" BottomLine="0" PLINEEND="0" BEXTRA="0" GROUPS="31 " TransBlend="0" NAMEDLST="" TXTOUT="1" AUTOTEXT="0" startArrowIndex="0" PICART="1" YPOS="432.807960372795" NEXTPAGE="-1" isGroupControl="1" NUMCO="16" ISIZE="12" LOCALSCX="1" TXTSCALE="100" LOCK="0" LOCALSCY="1" PRFILE="" TransValueS="0" doOverprint="0" TXTBASE="0" IRENDER="1" fillRule="1" TEXTRA="0" FLOP="0" LINESPMode="0" ROT="0" textPathType="0" RATIO="1" PLINEART="1" TXTSTYLE="0" PCOLOR2="None" COLUMNS="1" TXTSHX="5" TXTKERN="0" TXTSHY="-5" PTYPE="6" LINESP="15" TXTSTROKE="Black" ANNOTATION="0" PLTSHOW="0" DASHS="" BOOKMARK="0" REXTRA="0" LOCKR="0" DASHOFF="0" LOCALX="0" CLIPEDIT="0" ImageClip="" LOCALY="0" EPROF="" FLIPPEDH="0" SHADE2="100" LeftLine="0" PLINEJOIN="0" NUMDASH="0" PFILE2="" PFILE3="" TXTFILLSH="100" TXTFILL="Black" TXTSTRSH="100" PWIDTH="0" COCOOR="0 0 0 0 1 0 1 0 1 0 1 0 1 1 1 1 1 1 1 1 0 1 0 1 0 1 0 1 0 0 0 0 " FLIPPEDV="0" RightLine="0" TEXTFLOW="0" SHADE="100" NUMGROUP="1" endArrowIndex="0" COLGAP="0" SCALETYPE="1" EMBEDDED="1" TEXTFLOW2="0" TEXTFLOW3="0" TransValue="0" TXTULP="-0.1" REVERS="0" FRTYPE="0" NUMPO="16"/> <ITEM TXTULW="-0.1" POCOOR="0 0 0 0 310.714 0 310.714 0 310.714 0 310.714 0 310.714 441.76 310.714 441.76 310.714 441.76 310.714 441.76 0 441.76 0 441.76 0 441.76 0 441.76 0 0 0 0 " ANNAME="Copy of g3767-3" RADRECT="0" TXTSTP="-0.1" GRTYP="0" PCOLOR="None" TXTSTW="-0.1" ALIGN="0" BACKITEM="-1" WIDTH="310.713938562835" XPOS="2573.56233847769" EXTRA="0" TopLine="0" NEXTITEM="-1" PRINTABLE="1" HEIGHT="441.7602917748" groupsLastItem="2" BASEOF="0" isTableItem="0" LANGUAGE="English" BACKPAGE="-1" TEXTFLOWMODE="0" TransBlendS="0" IFONT="Alfphabet IV" TXTSCALEV="100" textPathFlipped="0" BottomLine="0" PLINEEND="0" BEXTRA="0" GROUPS="32 31 " TransBlend="0" NAMEDLST="" TXTOUT="1" AUTOTEXT="0" startArrowIndex="0" PICART="1" YPOS="434.857349978345" NEXTPAGE="-1" isGroupControl="1" NUMCO="16" ISIZE="12" LOCALSCX="1" TXTSCALE="100" LOCK="0" LOCALSCY="1" PRFILE="" TransValueS="0" doOverprint="0" TXTBASE="0" IRENDER="1" fillRule="1" TEXTRA="0" FLOP="0" LINESPMode="0" ROT="0" textPathType="0" RATIO="1" PLINEART="1" TXTSTYLE="0" PCOLOR2="None" COLUMNS="1" TXTSHX="5" TXTKERN="0" TXTSHY="-5" PTYPE="6" LINESP="15" TXTSTROKE="Black" ANNOTATION="0" PLTSHOW="0" DASHS="" BOOKMARK="0" REXTRA="0" LOCKR="0" DASHOFF="0" LOCALX="0" CLIPEDIT="0" ImageClip="" LOCALY="0" EPROF="" FLIPPEDH="0" SHADE2="100" LeftLine="0" PLINEJOIN="0" NUMDASH="0" PFILE2="" PFILE3="" TXTFILLSH="100" TXTFILL="Black" TXTSTRSH="100" PWIDTH="0" COCOOR="0 0 0 0 1 0 1 0 1 0 1 0 1 1 1 1 1 1 1 1 0 1 0 1 0 1 0 1 0 0 0 0 " FLIPPEDV="0" RightLine="0" TEXTFLOW="0" SHADE="100" NUMGROUP="2" endArrowIndex="0" COLGAP="0" SCALETYPE="1" EMBEDDED="1" TEXTFLOW2="0" TEXTFLOW3="0" TransValue="0" TXTULP="-0.1" REVERS="0" FRTYPE="0" NUMPO="16"/> <ITEM TXTULW="-0.1" POCOOR="20.2711 0 20.2711 0 289.212 0 289.212 0 289.212 0 300.407 0 309.483 20.2711 309.483 9.07568 309.483 20.2711 309.483 20.2711 309.483 420.653 309.483 420.653 309.483 420.653 309.483 431.848 289.212 440.924 300.407 440.924 289.212 440.924 289.212 440.924 20.2711 440.924 20.2711 440.924 20.2711 440.924 9.07568 440.924 0 420.653 0 431.848 0 420.653 0 420.653 0 20.2711 0 20.2711 0 20.2711 0 9.07568 20.2711 0 9.07568 0 " ANNAME="Copy of rect2985-9" RADRECT="48.469906" TXTSTP="-0.1" GRTYP="0" PCOLOR="FromSVG#ffffff" TXTSTW="-0.1" ALIGN="0" BACKITEM="-1" WIDTH="309.48317" XPOS="2574.02835321643" EXTRA="0" TopLine="0" NEXTITEM="-1" PRINTABLE="1" HEIGHT="440.9238507748" BASEOF="0" isTableItem="0" LANGUAGE="English" BACKPAGE="-1" TEXTFLOWMODE="1" TransBlendS="0" IFONT="Alfphabet IV" TXTSCALEV="100" textPathFlipped="0" BottomLine="0" PLINEEND="0" BEXTRA="0" GROUPS="32 31 " TransBlend="0" NAMEDLST="" TXTOUT="1" AUTOTEXT="0" startArrowIndex="0" PICART="1" YPOS="435.275570478346" NEXTPAGE="-1" isGroupControl="0" NUMCO="16" ISIZE="12" LOCALSCX="1" TXTSCALE="100" LOCK="0" LOCALSCY="1" PRFILE="" TransValueS="0" doOverprint="0" TXTBASE="0" IRENDER="1" fillRule="1" TEXTRA="0" FLOP="0" LINESPMode="0" ROT="0" textPathType="0" RATIO="1" PLINEART="1" TXTSTYLE="0" PCOLOR2="FromSVG#000000" COLUMNS="1" TXTSHX="5" TXTKERN="0" TXTSHY="-5" PTYPE="6" LINESP="15" TXTSTROKE="Black" ANNOTATION="0" PLTSHOW="0" DASHS="" BOOKMARK="0" REXTRA="0" LOCKR="0" DASHOFF="21.59999854" LOCALX="0" CLIPEDIT="1" ImageClip="" LOCALY="0" EPROF="" FLIPPEDH="0" SHADE2="100" LeftLine="0" PLINEJOIN="0" NUMDASH="0" PFILE2="" PFILE3="" TXTFILLSH="100" TXTFILL="Black" TXTSTRSH="100" PWIDTH="0.836441" COCOOR="0 0 0 0 740 0 740 0 740 0 740 0 740 1054.29 740 1054.29 740 1054.29 740 1054.29 0 1054.29 0 1054.29 0 1054.29 0 1054.29 0 0 0 0 " FLIPPEDV="0" RightLine="0" TEXTFLOW="1" SHADE="100" NUMGROUP="2" endArrowIndex="0" COLGAP="0" SCALETYPE="1" EMBEDDED="1" TEXTFLOW2="0" TEXTFLOW3="0" TransValue="0" TXTULP="-0.1" REVERS="0" FRTYPE="3" NUMPO="32"/> <ITEM TXTULW="-0.1" POCOOR="0 0 0 0 310.379 0 310.379 0 " ANNAME="Copy of path3765-9" RADRECT="0" TXTSTP="-0.1" GRTYP="0" PCOLOR="FromSVG#ffffff" TXTSTW="-0.1" ALIGN="0" BACKITEM="-1" WIDTH="310.379362162835" XPOS="2573.72962667769" EXTRA="0" TopLine="0" NEXTITEM="-1" PRINTABLE="1" HEIGHT="0" BASEOF="0" isTableItem="0" LANGUAGE="English" BACKPAGE="-1" TEXTFLOWMODE="1" TransBlendS="0" IFONT="Alfphabet IV" TXTSCALEV="100" textPathFlipped="0" BottomLine="0" PLINEEND="0" BEXTRA="0" GROUPS="32 31 " TransBlend="0" NAMEDLST="" TXTOUT="1" AUTOTEXT="0" startArrowIndex="0" PICART="1" YPOS="459.578958442897" NEXTPAGE="-1" isGroupControl="0" NUMCO="4" ISIZE="12" LOCALSCX="1" TXTSCALE="100" LOCK="0" LOCALSCY="1" PRFILE="" TransValueS="0" doOverprint="0" TXTBASE="0" IRENDER="1" fillRule="0" TEXTRA="0" FLOP="0" LINESPMode="0" ROT="0" textPathType="0" RATIO="1" PLINEART="1" TXTSTYLE="0" PCOLOR2="FromSVG#000000" COLUMNS="1" TXTSHX="5" TXTKERN="0" TXTSHY="-5" PTYPE="7" LINESP="15" TXTSTROKE="Black" ANNOTATION="0" PLTSHOW="0" DASHS="" BOOKMARK="0" REXTRA="0" LOCKR="0" DASHOFF="0" LOCALX="0" CLIPEDIT="1" ImageClip="" LOCALY="0" EPROF="" FLIPPEDH="0" SHADE2="100" LeftLine="0" PLINEJOIN="0" NUMDASH="0" PFILE2="" PFILE3="" TXTFILLSH="100" TXTFILL="Black" TXTSTRSH="100" PWIDTH="0.3345764" COCOOR="0 0 0 0 310.379 0 310.379 0 " FLIPPEDV="0" RightLine="0" TEXTFLOW="1" SHADE="100" NUMGROUP="2" endArrowIndex="0" COLGAP="0" SCALETYPE="1" EMBEDDED="1" TEXTFLOW2="0" TEXTFLOW3="0" TransValue="0" TXTULP="-0.1" REVERS="0" FRTYPE="3" NUMPO="4"/> <ITEM TXTULW="-0.1" POCOOR="0 26.6154 0 26.6154 309.245 26.1929 309.245 26.1929 309.245 26.1929 309.245 26.1929 286.432 2.5348 311.78 2.95727 286.432 2.5348 261.084 2.11234 23.2357 2.5348 23.2357 2.5348 23.2357 2.5348 23.2357 2.5348 0 26.6154 0 0 " ANNAME="Copy of path3815" RADRECT="0" TXTSTP="-0.1" GRTYP="0" PCOLOR="FromSVG#ff3481" TXTSTW="-0.1" ALIGN="0" BACKITEM="-1" WIDTH="311.7802879183" XPOS="2574.06389777672" EXTRA="0" TopLine="0" NEXTITEM="-1" PRINTABLE="1" HEIGHT="26.61539369621" BASEOF="0" isTableItem="0" LANGUAGE="English" BACKPAGE="-1" TEXTFLOWMODE="1" TransBlendS="0" IFONT="Alfphabet IV" TXTSCALEV="100" textPathFlipped="0" BottomLine="0" PLINEEND="0" BEXTRA="0" GROUPS="31 " TransBlend="0" NAMEDLST="" TXTOUT="1" AUTOTEXT="0" startArrowIndex="0" PICART="1" YPOS="432.975248572794" NEXTPAGE="-1" isGroupControl="0" NUMCO="16" ISIZE="12" LOCALSCX="1" TXTSCALE="100" LOCK="0" LOCALSCY="1" PRFILE="" TransValueS="0" doOverprint="0" TXTBASE="0" IRENDER="1" fillRule="0" TEXTRA="0" FLOP="0" LINESPMode="0" ROT="0" textPathType="0" RATIO="1" PLINEART="1" TXTSTYLE="0" PCOLOR2="FromSVG#000000" COLUMNS="1" TXTSHX="5" TXTKERN="0" TXTSHY="-5" PTYPE="6" LINESP="15" TXTSTROKE="Black" ANNOTATION="0" PLTSHOW="0" DASHS="" BOOKMARK="0" REXTRA="0" LOCKR="0" DASHOFF="0" LOCALX="0" CLIPEDIT="1" ImageClip="" LOCALY="0" EPROF="" FLIPPEDH="0" SHADE2="100" LeftLine="0" PLINEJOIN="0" NUMDASH="0" PFILE2="" PFILE3="" TXTFILLSH="100" TXTFILL="Black" TXTSTRSH="100" PWIDTH="0.3345764" COCOOR="0 26.6154 0 26.6154 309.245 26.1929 309.245 26.1929 309.245 26.1929 309.245 26.1929 286.432 2.5348 311.78 2.95727 286.432 2.5348 261.084 2.11234 23.2357 2.5348 23.2357 2.5348 23.2357 2.5348 23.2357 2.5348 0 26.6154 0 0 " FLIPPEDV="0" RightLine="0" TEXTFLOW="1" SHADE="100" NUMGROUP="1" endArrowIndex="0" COLGAP="0" SCALETYPE="1" EMBEDDED="1" TEXTFLOW2="0" TEXTFLOW3="0" TransValue="0" TXTULP="-0.1" REVERS="0" FRTYPE="3" NUMPO="16"/> <ITEM TXTULW="-0.1" POCOOR="9.27927 0 9.27927 0 5.75053 4.75072 5.75053 4.75072 5.75053 4.75072 5.75053 4.75072 9.46224 9.76283 9.46224 9.76283 9.46224 9.76283 9.46224 9.76283 7.57371 9.76283 7.57371 9.76283 7.57371 9.76283 7.57371 9.76283 4.73112 5.92697 4.73112 5.92697 4.73112 5.92697 4.73112 5.92697 1.88853 9.76283 1.88853 9.76283 1.88853 9.76283 1.88853 9.76283 0 9.76283 0 9.76283 0 9.76283 0 9.76283 3.79012 4.6527 3.79012 4.6527 3.79012 4.6527 3.79012 4.6527 0.3202 0 0.3202 0 0.3202 0 0.3202 0 2.21526 0 2.21526 0 2.21526 0 2.21526 0 4.803 3.47646 4.803 3.47646 4.803 3.47646 4.803 3.47646 7.39074 0 7.39074 0 7.39074 0 7.39074 0 9.27927 0 9.27927 0 " ANNAME="" RADRECT="0" TXTSTP="-0.1" GRTYP="0" PCOLOR="FromSVG#000000" TXTSTW="-0.1" ALIGN="0" BACKITEM="-1" WIDTH="9.4622388125" XPOS="2858.60221195461" EXTRA="0" TopLine="0" NEXTITEM="-1" PRINTABLE="1" HEIGHT="9.76283479687498" BASEOF="0" isTableItem="0" LANGUAGE="English" BACKPAGE="-1" TEXTFLOWMODE="1" TransBlendS="0" IFONT="Alfphabet IV" TXTSCALEV="100" textPathFlipped="0" BottomLine="0" PLINEEND="0" BEXTRA="0" GROUPS="31 " TransBlend="0" NAMEDLST="" TXTOUT="1" AUTOTEXT="0" startArrowIndex="0" PICART="1" YPOS="442.273043084695" NEXTPAGE="-1" isGroupControl="0" NUMCO="48" ISIZE="12" LOCALSCX="1" TXTSCALE="100" LOCK="0" LOCALSCY="1" PRFILE="" TransValueS="0" doOverprint="0" TXTBASE="0" IRENDER="1" fillRule="1" TEXTRA="0" FLOP="0" LINESPMode="0" ROT="0" textPathType="0" RATIO="1" PLINEART="1" TXTSTYLE="0" PCOLOR2="None" COLUMNS="1" TXTSHX="5" TXTKERN="0" TXTSHY="-5" PTYPE="6" LINESP="15" TXTSTROKE="Black" ANNOTATION="0" PLTSHOW="0" DASHS="" BOOKMARK="0" REXTRA="0" LOCKR="0" DASHOFF="0" LOCALX="0" CLIPEDIT="1" ImageClip="" LOCALY="0" EPROF="" FLIPPEDH="0" SHADE2="100" LeftLine="0" PLINEJOIN="0" NUMDASH="0" PFILE2="" PFILE3="" TXTFILLSH="100" TXTFILL="Black" TXTSTRSH="100" PWIDTH="0.4182205" COCOOR="9.27927 0 9.27927 0 5.75053 4.75072 5.75053 4.75072 5.75053 4.75072 5.75053 4.75072 9.46224 9.76283 9.46224 9.76283 9.46224 9.76283 9.46224 9.76283 7.57371 9.76283 7.57371 9.76283 7.57371 9.76283 7.57371 9.76283 4.73112 5.92697 4.73112 5.92697 4.73112 5.92697 4.73112 5.92697 1.88853 9.76283 1.88853 9.76283 1.88853 9.76283 1.88853 9.76283 0 9.76283 0 9.76283 0 9.76283 0 9.76283 3.79012 4.6527 3.79012 4.6527 3.79012 4.6527 3.79012 4.6527 0.3202 0 0.3202 0 0.3202 0 0.3202 0 2.21526 0 2.21526 0 2.21526 0 2.21526 0 4.803 3.47646 4.803 3.47646 4.803 3.47646 4.803 3.47646 7.39074 0 7.39074 0 7.39074 0 7.39074 0 9.27927 0 9.27927 0 " FLIPPEDV="0" RightLine="0" TEXTFLOW="1" SHADE="100" NUMGROUP="1" endArrowIndex="0" COLGAP="0" SCALETYPE="1" EMBEDDED="1" TEXTFLOW2="0" TEXTFLOW3="0" TransValue="0" TXTULP="-0.1" REVERS="0" FRTYPE="3" NUMPO="48"/> </SCRIBUSELEMUTF8>
99fd4268b53b5e654a33ef934fa1519818ed4d04
449d555969bfd7befe906877abab098c6e63a0e8
/1991/CH4/EX4.3/3.sce
41e2d6623320142f934b85ce2670bbe177d105d6
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
303
sce
3.sce
clc clear //INPUT DATA f=520 //frequency t2=293 //air temperature to produce fundamental +273 t1=273// 0deg C v1=330//speed of sound waves //calculation v2=330*(293/273)^0.5 //speed at 20 deg C l=v2/f//wavelength len=l/4 - 0.01 //length //output printf("the length of tube is %3.3f m",len)
38a340d0844da51690f2cb55e1aa55beb9b65080
449d555969bfd7befe906877abab098c6e63a0e8
/2084/CH6/EX6.1/6_1.sce
1326e06eb69fc8933e100d36246fafed71801e00
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
617
sce
6_1.sce
//developed in windows XP operating system 32bit //platform Scilab 5.4.1 clc;clear; //example 6.1 //calculation of the angle made by the contact force with the vertical and the magnitude of contact force //given data M=.4//mass(in kg) of the body f=3//frictional force(in N) g=10//gravitational acceleration(in m/s^2) of the earth //calculation N=M*g//formula of normal force theta=atand(f/N)//angle made by the contact force with the vertical F=sqrt((N*N)+(f*f)) printf('the angle made by the contact force with the vertical is %3.2f degree \n the magnitude of contact force is %3.2f N',theta,F)
1f13cfb489fdddb7cf1680633f094dbefdc22229
449d555969bfd7befe906877abab098c6e63a0e8
/1106/CH6/EX6.8/ex6_8.sce
fc181e72341ebc97c1e90a203d868432d1f46cba
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
236
sce
ex6_8.sce
// Example 6.8, Page No-282 clear clc R2=16*10^3 R3=16*10^3 Rf=15.8*10^3 Ri=27*10^3 C2=0.01*10^-6 C3=0.01*10^-6 fL=1/(2*%pi*sqrt(R2*R3*C2*C3)) fL=fL/1000 printf('\nfL= %.1f kHz', fL) A=1+Rf/Ri printf('\nA= %.3f', A)
57282378223862d78324124ac631c8bb30c6ef69
449d555969bfd7befe906877abab098c6e63a0e8
/2021/CH3/EX3.2/EX3_2.sce
2311392a3747d5691f4342aad1a48d23872a04b1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
224
sce
EX3_2.sce
//Finding of Total Pressure //Given d=1.5; y1=2; rho=1000; g=9.81; //To Find Ig=(%pi*d^4)/64; Ay=(%pi/4)*d^2; P=Ay*rho*g*y1; Ycp=(Ig/Ay)+y1; disp("P= "+string(P)+" Newtons"); disp("Ycp ="+string(Ycp)+" meter");
9c8367c7d8a475cd676df662e48f4fb650132fd7
449d555969bfd7befe906877abab098c6e63a0e8
/3574/CH1/EX1.9/EX1_9.sce
dc3a99e76f6e367d5827e77d905c1005f41aeeb1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
694
sce
EX1_9.sce
// Example 1.9 // Computation of (a) Frequency of the generated emf (b) Speed of the rotor //Page No. 31 clc; clear all; close; // Given data Erms=100; // Voltage generated in armature coil N=15; // Number of turns in armature coil phimax=0.012; // Flux per pole P=4; // Number of poles // (a) frequency of the generated emf f=Erms/(4.44*N*phimax); // (b) speed of the rotor n=2*f/P; nmin=n*60; //Display result on command window printf("\n Frequency of the generated emf = %0.0f Hz ",f); printf("\n Speed of the rotor = %0.2f r/s",n); printf("\n Speed of the rotor = %0.0f r/min",nmin);
245f3d0ee46933df04e5f403d69886bec0eba9b0
449d555969bfd7befe906877abab098c6e63a0e8
/998/CH29/EX29.4/Ex4.sce
39e7b7d2bc405422e42eebf1fd51b7273d6bf190
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
294
sce
Ex4.sce
//Ex:4 clc; clear; close; h_p=1000;//perigee height in km h_a=4000;//apogee height in km R_E=6378.14;// radius of earth in km a=(2*R_E+h_p+h_a)/2;//Semi major axis in km u=3.986*10^5//km^3 per sec^2 T_P=(4*%pi^2*a^3/u)^(1/2);//Orbit period in sec printf("Orbital period =%f sec",T_P);
404cf8caa2dd7614815030c3bd8bf62719288877
15d3702a1f4402ab16e6b4cfc725ff7e996843ef
/predictions/linzen-swap/wsj-23-naive/parses.tst
bfd855df837c6255f4aff20547995c7648e8bbb1
[]
no_license
viking-sudo-rm/industrial-stacknns
2ecb36a6c5da2e295b91f854dc96d6bc4c2e4b6a
f08da2dcc27f2688eb99e10934ad89e41b879de8
refs/heads/master
2020-04-26T03:36:50.038626
2019-12-26T16:51:52
2019-12-26T16:51:52
173,272,681
14
3
null
2019-04-13T19:51:25
2019-03-01T09:22:01
Jupyter Notebook
UTF-8
Scilab
false
false
751,699
tst
parses.tst
(X (X no) (X (X ,) (X (X it) (X (X was) (X (X n't) (X (X Black) (X (X Monday) (X .)))))))) (X (X but) (X (X while) (X (X the) (X (X New) (X (X York) (X (X Stock) (X (X Exchange) (X (X did) (X (X n't) (X (X fall) (X (X apart) (X (X Friday) (X (X as) (X (X the) (X (X Dow) (X (X Jones) (X (X Industrial) (X (X Average) (X (X plunged) (X (X 190.58) (X (X points) (X (X --) (X (X most) (X (X of) (X (X it) (X (X in) (X (X the) (X (X final) (X (X hour) (X (X --) (X (X it) (X (X barely) (X (X managed) (X (X to) (X (X stay) (X (X this) (X (X side) (X (X of) (X (X chaos) (X .)))))))))))))))))))))))))))))))))))))))) (X (X some) (X (X ``) (X (X circuit) (X (X breakers) (X (X '') (X (X installed) (X (X after) (X (X the) (X (X October) (X (X 1987) (X (X crash) (X (X failed) (X (X their) (X (X first) (X (X test) (X (X ,) (X (X traders) (X (X say) (X (X ,) (X (X unable) (X (X to) (X (X cool) (X (X the) (X (X selling) (X (X panic) (X (X in) (X (X both) (X (X stocks) (X (X and) (X (X futures) (X .))))))))))))))))))))))))))))))) (X (X the) (X (X 49) (X (X stock) (X (X specialist) (X (X firms) (X (X on) (X (X the) (X (X Big) (X (X Board) (X (X floor) (X (X --) (X (X the) (X (X buyers) (X (X and) (X (X sellers) (X (X of) (X (X last) (X (X resort) (X (X who) (X (X were) (X (X criticized) (X (X after) (X (X the) (X (X 1987) (X (X crash) (X (X --) (X (X once) (X (X again) (X (X could) (X (X n't) (X (X handle) (X (X the) (X (X selling) (X (X pressure) (X .))))))))))))))))))))))))))))))))))) (X (X big) (X (X investment) (X (X banks) (X (X refused) (X (X to) (X (X step) (X (X up) (X (X to) (X (X the) (X (X plate) (X (X to) (X (X support) (X (X the) (X (X beleaguered) (X (X floor) (X (X traders) (X (X by) (X (X buying) (X (X big) (X (X blocks) (X (X of) (X (X stock) (X (X ,) (X (X traders) (X (X say) (X .)))))))))))))))))))))))))) (X (X heavy) (X (X selling) (X (X of) (X (X Standard) (X (X &) (X (X Poor) (X (X 's) (X (X 500-stock) (X (X index) (X (X futures) (X (X in) (X (X Chicago) (X (X relentlessly) (X (X beat) (X (X stocks) (X (X downward) (X .))))))))))))))))) (X (X seven) (X (X Big) (X (X Board) (X (X stocks) (X (X --) (X (X UAL) (X (X ,) (X (X AMR) (X (X ,) (X (X BankAmerica) (X (X ,) (X (X Walt) (X (X Disney) (X (X ,) (X (X Capital) (X (X Cities\/ABC) (X (X ,) (X (X Philip) (X (X Morris) (X (X and) (X (X Pacific) (X (X Telesis) (X (X Group) (X (X --) (X (X stopped) (X (X trading) (X (X and) (X (X never) (X (X resumed) (X .)))))))))))))))))))))))))))))) (X (X the) (X (X finger-pointing) (X (X has) (X (X already) (X (X begun) (X .)))))) (X (X ``) (X (X The) (X (X equity) (X (X market) (X (X was) (X (X illiquid) (X .))))))) (X (X once) (X (X again) (X (X -LCB-) (X (X the) (X (X specialists) (X (X -RCB-) (X (X were) (X (X not) (X (X able) (X (X to) (X (X handle) (X (X the) (X (X imbalances) (X (X on) (X (X the) (X (X floor) (X (X of) (X (X the) (X (X New) (X (X York) (X (X Stock) (X (X Exchange) (X (X ,) (X (X '') (X (X said) (X (X Christopher) (X (X Pedersen) (X (X ,) (X (X senior) (X (X vice) (X (X president) (X (X at) (X (X Twenty-First) (X (X Securities) (X (X Corp) (X .)))))))))))))))))))))))))))))))))))) (X (X countered) (X (X James) (X (X Maguire) (X (X ,) (X (X chairman) (X (X of) (X (X specialists) (X (X Henderson) (X (X Brothers) (X (X Inc.) (X (X :) (X (X ``) (X (X It) (X (X is) (X (X easy) (X (X to) (X (X say) (X (X the) (X (X specialist) (X (X is) (X (X n't) (X (X doing) (X (X his) (X (X job) (X .))))))))))))))))))))))))) (X (X when) (X (X the) (X (X dollar) (X (X is) (X (X in) (X (X a) (X (X free-fall) (X (X ,) (X (X even) (X (X central) (X (X banks) (X (X ca) (X (X n't) (X (X stop) (X (X it) (X .)))))))))))))))) (X (X speculators) (X (X are) (X (X calling) (X (X for) (X (X a) (X (X degree) (X (X of) (X (X liquidity) (X (X that) (X (X is) (X (X not) (X (X there) (X (X in) (X (X the) (X (X market) (X (X .) (X ''))))))))))))))))) (X (X many) (X (X money) (X (X managers) (X (X and) (X (X some) (X (X traders) (X (X had) (X (X already) (X (X left) (X (X their) (X (X offices) (X (X early) (X (X Friday) (X (X afternoon) (X (X on) (X (X a) (X (X warm) (X (X autumn) (X (X day) (X (X --) (X (X because) (X (X the) (X (X stock) (X (X market) (X (X was) (X (X so) (X (X quiet) (X .)))))))))))))))))))))))))))) (X (X then) (X (X in) (X (X a) (X (X lightning) (X (X plunge) (X (X ,) (X (X the) (X (X Dow) (X (X Jones) (X (X industrials) (X (X in) (X (X barely) (X (X an) (X (X hour) (X (X surrendered) (X (X about) (X (X a) (X (X third) (X (X of) (X (X their) (X (X gains) (X (X this) (X (X year) (X (X ,) (X (X chalking) (X (X up) (X (X a) (X (X 190.58-point) (X (X ,) (X (X or) (X (X 6.9) (X (X %) (X (X ,) (X (X loss) (X (X on) (X (X the) (X (X day) (X (X in) (X (X gargantuan) (X (X trading) (X (X volume) (X .)))))))))))))))))))))))))))))))))))))))))) (X (X final-hour) (X (X trading) (X (X accelerated) (X (X to) (X (X 108.1) (X (X million) (X (X shares) (X (X ,) (X (X a) (X (X record) (X (X for) (X (X the) (X (X Big) (X (X Board) (X .))))))))))))))) (X (X at) (X (X the) (X (X end) (X (X of) (X (X the) (X (X day) (X (X ,) (X (X 251.2) (X (X million) (X (X shares) (X (X were) (X (X traded) (X .))))))))))))) (X (X the) (X (X Dow) (X (X Jones) (X (X industrials) (X (X closed) (X (X at) (X (X 2569.26) (X .)))))))) (X (X the) (X (X Dow) (X (X 's) (X (X decline) (X (X was) (X (X second) (X (X in) (X (X point) (X (X terms) (X (X only) (X (X to) (X (X the) (X (X 508-point) (X (X Black) (X (X Monday) (X (X crash) (X (X that) (X (X occurred) (X (X Oct.) (X (X 19) (X (X ,) (X (X 1987) (X .))))))))))))))))))))))) (X (X in) (X (X percentage) (X (X terms) (X (X ,) (X (X however) (X (X ,) (X (X the) (X (X Dow) (X (X 's) (X (X dive) (X (X was) (X (X the) (X (X 12th-worst) (X (X ever) (X (X and) (X (X the) (X (X sharpest) (X (X since) (X (X the) (X (X market) (X (X fell) (X (X 156.83) (X (X ,) (X (X or) (X (X 8) (X (X %) (X (X ,) (X (X a) (X (X week) (X (X after) (X (X Black) (X (X Monday) (X .))))))))))))))))))))))))))))))))) (X (X the) (X (X Dow) (X (X fell) (X (X 22.6) (X (X %) (X (X on) (X (X Black) (X (X Monday) (X .))))))))) (X (X shares) (X (X of) (X (X UAL) (X (X ,) (X (X the) (X (X parent) (X (X of) (X (X United) (X (X Airlines) (X (X ,) (X (X were) (X (X extremely) (X (X active) (X (X all) (X (X day) (X (X Friday) (X (X ,) (X (X reacting) (X (X to) (X (X news) (X (X and) (X (X rumors) (X (X about) (X (X the) (X (X proposed) (X (X $) (X (X 6.79) (X (X billion) (X (X buy-out) (X (X of) (X (X the) (X (X airline) (X (X by) (X (X an) (X (X employee-management) (X (X group) (X .))))))))))))))))))))))))))))))))))))) (X (X wall) (X (X Street) (X (X 's) (X (X takeover-stock) (X (X speculators) (X (X ,) (X (X or) (X (X ``) (X (X risk) (X (X arbitragers) (X (X ,) (X (X '') (X (X had) (X (X placed) (X (X unusually) (X (X large) (X (X bets) (X (X that) (X (X a) (X (X takeover) (X (X would) (X (X succeed) (X (X and) (X (X UAL) (X (X stock) (X (X would) (X (X rise) (X .)))))))))))))))))))))))))))) (X (X at) (X (X 2:43) (X (X p.m.) (X (X EDT) (X (X ,) (X (X came) (X (X the) (X (X sickening) (X (X news) (X (X :) (X (X The) (X (X Big) (X (X Board) (X (X was) (X (X halting) (X (X trading) (X (X in) (X (X UAL) (X (X ,) (X (X ``) (X (X pending) (X (X news) (X (X .) (X '')))))))))))))))))))))))) (X (X on) (X (X the) (X (X exchange) (X (X floor) (X (X ,) (X (X ``) (X (X as) (X (X soon) (X (X as) (X (X UAL) (X (X stopped) (X (X trading) (X (X ,) (X (X we) (X (X braced) (X (X for) (X (X a) (X (X panic) (X (X ,) (X (X '') (X (X said) (X (X one) (X (X top) (X (X floor) (X (X trader) (X .)))))))))))))))))))))))))) (X (X several) (X (X traders) (X (X could) (X (X be) (X (X seen) (X (X shaking) (X (X their) (X (X heads) (X (X when) (X (X the) (X (X news) (X (X flashed) (X .))))))))))))) (X (X for) (X (X weeks) (X (X ,) (X (X the) (X (X market) (X (X had) (X (X been) (X (X nervous) (X (X about) (X (X takeovers) (X (X ,) (X (X after) (X (X Campeau) (X (X Corp.) (X (X 's) (X (X cash) (X (X crunch) (X (X spurred) (X (X concern) (X (X about) (X (X the) (X (X prospects) (X (X for) (X (X future) (X (X highly) (X (X leveraged) (X (X takeovers) (X .)))))))))))))))))))))))))))) (X (X and) (X (X 10) (X (X minutes) (X (X after) (X (X the) (X (X UAL) (X (X trading) (X (X halt) (X (X came) (X (X news) (X (X that) (X (X the) (X (X UAL) (X (X group) (X (X could) (X (X n't) (X (X get) (X (X financing) (X (X for) (X (X its) (X (X bid) (X .)))))))))))))))))))))) (X (X at) (X (X this) (X (X point) (X (X ,) (X (X the) (X (X Dow) (X (X was) (X (X down) (X (X about) (X (X 35) (X (X points) (X .)))))))))))) (X (X the) (X (X market) (X (X crumbled) (X .)))) (X (X arbitragers) (X (X could) (X (X n't) (X (X dump) (X (X their) (X (X UAL) (X (X stock) (X (X --) (X (X but) (X (X they) (X (X rid) (X (X themselves) (X (X of) (X (X nearly) (X (X every) (X (X ``) (X (X rumor) (X (X '') (X (X stock) (X (X they) (X (X had) (X .)))))))))))))))))))))) (X (X for) (X (X example) (X (X ,) (X (X their) (X (X selling) (X (X caused) (X (X trading) (X (X halts) (X (X to) (X (X be) (X (X declared) (X (X in) (X (X USAir) (X (X Group) (X (X ,) (X (X which) (X (X closed) (X (X down) (X (X 3) (X (X 7\/8) (X (X to) (X (X 41) (X (X 1\/2) (X (X ,) (X (X Delta) (X (X Air) (X (X Lines) (X (X ,) (X (X which) (X (X fell) (X (X 7) (X (X 3\/4) (X (X to) (X (X 69) (X (X 1\/4) (X (X ,) (X (X and) (X (X Philips) (X (X Industries) (X (X ,) (X (X which) (X (X sank) (X (X 3) (X (X to) (X (X 21) (X (X 1\/2) (X .))))))))))))))))))))))))))))))))))))))))))))))) (X (X these) (X (X stocks) (X (X eventually) (X (X reopened) (X .))))) (X (X but) (X (X as) (X (X panic) (X (X spread) (X (X ,) (X (X speculators) (X (X began) (X (X to) (X (X sell) (X (X blue-chip) (X (X stocks) (X (X such) (X (X as) (X (X Philip) (X (X Morris) (X (X and) (X (X International) (X (X Business) (X (X Machines) (X (X to) (X (X offset) (X (X their) (X (X losses) (X .)))))))))))))))))))))))) (X (X when) (X (X trading) (X (X was) (X (X halted) (X (X in) (X (X Philip) (X (X Morris) (X (X ,) (X (X the) (X (X stock) (X (X was) (X (X trading) (X (X at) (X (X 41) (X (X ,) (X (X down) (X (X 3) (X (X 3\/8) (X (X ,) (X (X while) (X (X IBM) (X (X closed) (X (X 5) (X (X 5\/8) (X (X lower) (X (X at) (X (X 102) (X .)))))))))))))))))))))))))))) (X (X selling) (X (X snowballed) (X (X because) (X (X of) (X (X waves) (X (X of) (X (X automatic) (X (X ``) (X (X stop-loss) (X (X '') (X (X orders) (X (X ,) (X (X which) (X (X are) (X (X triggered) (X (X by) (X (X computer) (X (X when) (X (X prices) (X (X fall) (X (X to) (X (X certain) (X (X levels) (X .)))))))))))))))))))))))) (X (X most) (X (X of) (X (X the) (X (X stock) (X (X selling) (X (X pressure) (X (X came) (X (X from) (X (X Wall) (X (X Street) (X (X professionals) (X (X ,) (X (X including) (X (X computer-guided) (X (X program) (X (X traders) (X .))))))))))))))))) (X (X traders) (X (X said) (X (X most) (X (X of) (X (X their) (X (X major) (X (X institutional) (X (X investors) (X (X ,) (X (X on) (X (X the) (X (X other) (X (X hand) (X (X ,) (X (X sat) (X (X tight) (X .))))))))))))))))) (X (X now) (X (X ,) (X (X at) (X (X 3:07) (X (X ,) (X (X one) (X (X of) (X (X the) (X (X market) (X (X 's) (X (X post-crash) (X (X ``) (X (X reforms) (X (X '') (X (X took) (X (X hold) (X (X as) (X (X the) (X (X S&P) (X (X 500) (X (X futures) (X (X contract) (X (X had) (X (X plunged) (X (X 12) (X (X points) (X (X ,) (X (X equivalent) (X (X to) (X (X around) (X (X a) (X (X 100-point) (X (X drop) (X (X in) (X (X the) (X (X Dow) (X (X industrials) (X .)))))))))))))))))))))))))))))))))))))) (X (X under) (X (X an) (X (X agreement) (X (X signed) (X (X by) (X (X the) (X (X Big) (X (X Board) (X (X and) (X (X the) (X (X Chicago) (X (X Mercantile) (X (X Exchange) (X (X ,) (X (X trading) (X (X was) (X (X temporarily) (X (X halted) (X (X in) (X (X Chicago) (X .))))))))))))))))))))) (X (X after) (X (X the) (X (X trading) (X (X halt) (X (X in) (X (X the) (X (X S&P) (X (X 500) (X (X pit) (X (X in) (X (X Chicago) (X (X ,) (X (X waves) (X (X of) (X (X selling) (X (X continued) (X (X to) (X (X hit) (X (X stocks) (X (X themselves) (X (X on) (X (X the) (X (X Big) (X (X Board) (X (X ,) (X (X and) (X (X specialists) (X (X continued) (X (X to) (X (X notch) (X (X prices) (X (X down) (X .))))))))))))))))))))))))))))))))) (X (X as) (X (X a) (X (X result) (X (X ,) (X (X the) (X (X link) (X (X between) (X (X the) (X (X futures) (X (X and) (X (X stock) (X (X markets) (X (X ripped) (X (X apart) (X .))))))))))))))) (X (X without) (X (X the) (X (X guidepost) (X (X of) (X (X stock-index) (X (X futures) (X (X --) (X (X the) (X (X barometer) (X (X of) (X (X where) (X (X traders) (X (X think) (X (X the) (X (X overall) (X (X stock) (X (X market) (X (X is) (X (X headed) (X (X --) (X (X many) (X (X traders) (X (X were) (X (X afraid) (X (X to) (X (X trust) (X (X stock) (X (X prices) (X (X quoted) (X (X on) (X (X the) (X (X Big) (X (X Board) (X .)))))))))))))))))))))))))))))))))) (X (X the) (X (X futures) (X (X halt) (X (X was) (X (X even) (X (X assailed) (X (X by) (X (X Big) (X (X Board) (X (X floor) (X (X traders) (X .)))))))))))) (X (X ``) (X (X It) (X (X screwed) (X (X things) (X (X up) (X (X ,) (X (X '') (X (X said) (X (X one) (X (X major) (X (X specialist) (X .)))))))))))) (X (X this) (X (X confusion) (X (X effectively) (X (X halted) (X (X one) (X (X form) (X (X of) (X (X program) (X (X trading) (X (X ,) (X (X stock) (X (X index) (X (X arbitrage) (X (X ,) (X (X that) (X (X closely) (X (X links) (X (X the) (X (X futures) (X (X and) (X (X stock) (X (X markets) (X (X ,) (X (X and) (X (X has) (X (X been) (X (X blamed) (X (X by) (X (X some) (X (X for) (X (X the) (X (X market) (X (X 's) (X (X big) (X (X swings) (X .)))))))))))))))))))))))))))))))))))) (X (X -lrb-) (X (X In) (X (X a) (X (X stock-index) (X (X arbitrage) (X (X sell) (X (X program) (X (X ,) (X (X traders) (X (X buy) (X (X or) (X (X sell) (X (X big) (X (X baskets) (X (X of) (X (X stocks) (X (X and) (X (X offset) (X (X the) (X (X trade) (X (X in) (X (X futures) (X (X to) (X (X lock) (X (X in) (X (X a) (X (X price) (X (X difference) (X (X .) (X -RRB-)))))))))))))))))))))))))))))) (X (X ``) (X (X When) (X (X the) (X (X airline) (X (X information) (X (X came) (X (X through) (X (X ,) (X (X it) (X (X cracked) (X (X every) (X (X model) (X (X we) (X (X had) (X (X for) (X (X the) (X (X marketplace) (X (X ,) (X (X '') (X (X said) (X (X a) (X (X managing) (X (X director) (X (X at) (X (X one) (X (X of) (X (X the) (X (X largest) (X (X program-trading) (X (X firms) (X .))))))))))))))))))))))))))))))) (X (X ``) (X (X We) (X (X did) (X (X n't) (X (X even) (X (X get) (X (X a) (X (X chance) (X (X to) (X (X do) (X (X the) (X (X programs) (X (X we) (X (X wanted) (X (X to) (X (X do) (X (X .) (X '')))))))))))))))))) (X (X but) (X (X stocks) (X (X kept) (X (X falling) (X .))))) (X (X the) (X (X Dow) (X (X industrials) (X (X were) (X (X down) (X (X 55) (X (X points) (X (X at) (X (X 3) (X (X p.m.) (X (X before) (X (X the) (X (X futures-trading) (X (X halt) (X .))))))))))))))) (X (X at) (X (X 3:30) (X (X p.m.) (X (X ,) (X (X at) (X (X the) (X (X end) (X (X of) (X (X the) (X (X ``) (X (X cooling) (X (X off) (X (X '') (X (X period) (X (X ,) (X (X the) (X (X average) (X (X was) (X (X down) (X (X 114.76) (X (X points) (X .)))))))))))))))))))))) (X (X meanwhile) (X (X ,) (X (X during) (X (X the) (X (X the) (X (X S&P) (X (X trading) (X (X halt) (X (X ,) (X (X S&P) (X (X futures) (X (X sell) (X (X orders) (X (X began) (X (X piling) (X (X up) (X (X ,) (X (X while) (X (X stocks) (X (X in) (X (X New) (X (X York) (X (X kept) (X (X falling) (X (X sharply) (X .)))))))))))))))))))))))))) (X (X big) (X (X Board) (X (X Chairman) (X (X John) (X (X J.) (X (X Phelan) (X (X said) (X (X yesterday) (X (X the) (X (X circuit) (X (X breaker) (X (X ``) (X (X worked) (X (X well) (X (X mechanically) (X .)))))))))))))))) (X (X i) (X (X just) (X (X think) (X (X it) (X (X 's) (X (X nonproductive) (X (X at) (X (X this) (X (X point) (X (X to) (X (X get) (X (X into) (X (X a) (X (X debate) (X (X if) (X (X index) (X (X arbitrage) (X (X would) (X (X have) (X (X helped) (X (X or) (X (X hurt) (X (X things) (X (X .) (X ''))))))))))))))))))))))))) (X (X under) (X (X another) (X (X post-crash) (X (X system) (X (X ,) (X (X Big) (X (X Board) (X (X President) (X (X Richard) (X (X Grasso) (X (X -LRB-) (X (X Mr.) (X (X Phelan) (X (X was) (X (X flying) (X (X to) (X (X Bangkok) (X (X as) (X (X the) (X (X market) (X (X was) (X (X falling) (X (X -RRB-) (X (X was) (X (X talking) (X (X on) (X (X an) (X (X ``) (X (X inter-exchange) (X (X hot) (X (X line) (X (X '') (X (X to) (X (X the) (X (X other) (X (X exchanges) (X (X ,) (X (X the) (X (X Securities) (X (X and) (X (X Exchange) (X (X Commission) (X (X and) (X (X the) (X (X Federal) (X (X Reserve) (X (X Board) (X .)))))))))))))))))))))))))))))))))))))))))))))))) (X (X he) (X (X camped) (X (X out) (X (X at) (X (X a) (X (X high-tech) (X (X nerve) (X (X center) (X (X on) (X (X the) (X (X floor) (X (X of) (X (X the) (X (X Big) (X (X Board) (X (X ,) (X (X where) (X (X he) (X (X could) (X (X watch) (X (X updates) (X (X on) (X (X prices) (X (X and) (X (X pending) (X (X stock) (X (X orders) (X .)))))))))))))))))))))))))))) (X (X at) (X (X about) (X (X 3:30) (X (X p.m.) (X (X EDT) (X (X ,) (X (X S&P) (X (X futures) (X (X resumed) (X (X trading) (X (X ,) (X (X and) (X (X for) (X (X a) (X (X brief) (X (X time) (X (X the) (X (X futures) (X (X and) (X (X stock) (X (X markets) (X (X started) (X (X to) (X (X come) (X (X back) (X (X in) (X (X line) (X .)))))))))))))))))))))))))))) (X (X buyers) (X (X stepped) (X (X in) (X (X to) (X (X the) (X (X futures) (X (X pit) (X .)))))))) (X (X but) (X (X the) (X (X build-up) (X (X of) (X (X S&P) (X (X futures) (X (X sell) (X (X orders) (X (X weighed) (X (X on) (X (X the) (X (X market) (X (X ,) (X (X and) (X (X the) (X (X link) (X (X with) (X (X stocks) (X (X began) (X (X to) (X (X fray) (X (X again) (X .))))))))))))))))))))))) (X (X at) (X (X about) (X (X 3:45) (X (X ,) (X (X the) (X (X S&P) (X (X market) (X (X careened) (X (X to) (X (X still) (X (X another) (X (X limit) (X (X ,) (X (X of) (X (X 30) (X (X points) (X (X down) (X (X ,) (X (X and) (X (X trading) (X (X was) (X (X locked) (X (X again) (X .)))))))))))))))))))))))) (X (X futures) (X (X traders) (X (X say) (X (X the) (X (X S&P) (X (X was) (X (X signaling) (X (X that) (X (X the) (X (X Dow) (X (X could) (X (X fall) (X (X as) (X (X much) (X (X as) (X (X 200) (X (X points) (X .)))))))))))))))))) (X (X during) (X (X this) (X (X time) (X (X ,) (X (X small) (X (X investors) (X (X began) (X (X ringing) (X (X their) (X (X brokers) (X (X ,) (X (X wondering) (X (X whether) (X (X another) (X (X crash) (X (X had) (X (X begun) (X .)))))))))))))))))) (X (X at) (X (X Prudential-Bache) (X (X Securities) (X (X Inc.) (X (X ,) (X (X which) (X (X is) (X (X trying) (X (X to) (X (X cater) (X (X to) (X (X small) (X (X investors) (X (X ,) (X (X some) (X (X demoralized) (X (X brokers) (X (X thought) (X (X this) (X (X would) (X (X be) (X (X the) (X (X final) (X (X confidence-crusher) (X .))))))))))))))))))))))))) (X (X that) (X (X 's) (X (X when) (X (X George) (X (X L.) (X (X Ball) (X (X ,) (X (X chairman) (X (X of) (X (X the) (X (X Prudential) (X (X Insurance) (X (X Co.) (X (X of) (X (X America) (X (X unit) (X (X ,) (X (X took) (X (X to) (X (X the) (X (X internal) (X (X intercom) (X (X system) (X (X to) (X (X declare) (X (X that) (X (X the) (X (X plunge) (X (X was) (X (X only) (X (X ``) (X (X mechanical) (X (X .) (X '')))))))))))))))))))))))))))))))))) (X (X ``) (X (X I) (X (X have) (X (X a) (X (X hunch) (X (X that) (X (X this) (X (X particular) (X (X decline) (X (X today) (X (X is) (X (X something) (X (X `) (X (X more) (X (X ado) (X (X about) (X (X less) (X (X .) (X '))))))))))))))))))) (X (X it) (X (X would) (X (X be) (X (X my) (X (X inclination) (X (X to) (X (X advise) (X (X clients) (X (X not) (X (X to) (X (X sell) (X (X ,) (X (X to) (X (X look) (X (X for) (X (X an) (X (X opportunity) (X (X to) (X (X buy) (X (X ,) (X (X '') (X (X Mr.) (X (X Ball) (X (X told) (X (X the) (X (X brokers) (X .))))))))))))))))))))))))))) (X (X at) (X (X Merrill) (X (X Lynch) (X (X &) (X (X Co.) (X (X ,) (X (X the) (X (X nation) (X (X 's) (X (X biggest) (X (X brokerage) (X (X firm) (X (X ,) (X (X a) (X (X news) (X (X release) (X (X was) (X (X prepared) (X (X headlined) (X (X ``) (X (X Merrill) (X (X Lynch) (X (X Comments) (X (X on) (X (X Market) (X (X Drop) (X (X .) (X '')))))))))))))))))))))))))))) (X (X the) (X (X release) (X (X cautioned) (X (X that) (X (X ``) (X (X there) (X (X are) (X (X significant) (X (X differences) (X (X between) (X (X the) (X (X current) (X (X environment) (X (X and) (X (X that) (X (X of) (X (X October) (X (X 1987) (X (X '') (X (X and) (X (X that) (X (X there) (X (X are) (X (X still) (X (X ``) (X (X attractive) (X (X investment) (X (X opportunities) (X (X '') (X (X in) (X (X the) (X (X stock) (X (X market) (X .)))))))))))))))))))))))))))))))))) (X (X however) (X (X ,) (X (X Jeffrey) (X (X B.) (X (X Lane) (X (X ,) (X (X president) (X (X of) (X (X Shearson) (X (X Lehman) (X (X Hutton) (X (X Inc.) (X (X ,) (X (X said) (X (X that) (X (X Friday) (X (X 's) (X (X plunge) (X (X is) (X (X ``) (X (X going) (X (X to) (X (X set) (X (X back) (X (X '') (X (X relations) (X (X with) (X (X customers) (X (X ,) (X (X ``) (X (X because) (X (X it) (X (X reinforces) (X (X the) (X (X concern) (X (X of) (X (X volatility) (X .)))))))))))))))))))))))))))))))))))))) (X (X and) (X (X I) (X (X think) (X (X a) (X (X lot) (X (X of) (X (X people) (X (X will) (X (X harp) (X (X on) (X (X program) (X (X trading) (X .))))))))))))) (X (X it) (X (X 's) (X (X going) (X (X to) (X (X bring) (X (X the) (X (X debate) (X (X right) (X (X back) (X (X to) (X (X the) (X (X forefront) (X (X .) (X '')))))))))))))) (X (X as) (X (X the) (X (X Dow) (X (X average) (X (X ground) (X (X to) (X (X its) (X (X final) (X (X 190.58) (X (X loss) (X (X Friday) (X (X ,) (X (X the) (X (X S&P) (X (X pit) (X (X stayed) (X (X locked) (X (X at) (X (X its) (X (X 30-point) (X (X trading) (X (X limit) (X .))))))))))))))))))))))) (X (X jeffrey) (X (X Yass) (X (X of) (X (X program) (X (X trader) (X (X Susquehanna) (X (X Investment) (X (X Group) (X (X said) (X (X 2,000) (X (X S&P) (X (X contracts) (X (X were) (X (X for) (X (X sale) (X (X on) (X (X the) (X (X close) (X (X ,) (X (X the) (X (X equivalent) (X (X of) (X (X $) (X (X 330) (X (X million) (X (X in) (X (X stock) (X .)))))))))))))))))))))))))))) (X (X but) (X (X there) (X (X were) (X (X no) (X (X buyers) (X .)))))) (X (X while) (X (X Friday) (X (X 's) (X (X debacle) (X (X involved) (X (X mainly) (X (X professional) (X (X traders) (X (X rather) (X (X than) (X (X investors) (X (X ,) (X (X it) (X (X left) (X (X the) (X (X market) (X (X vulnerable) (X (X to) (X (X continued) (X (X selling) (X (X this) (X (X morning) (X (X ,) (X (X traders) (X (X said) (X .)))))))))))))))))))))))))) (X (X stock-index) (X (X futures) (X (X contracts) (X (X settled) (X (X at) (X (X much) (X (X lower) (X (X prices) (X (X than) (X (X indexes) (X (X of) (X (X the) (X (X stock) (X (X market) (X (X itself) (X .)))))))))))))))) (X (X at) (X (X those) (X (X levels) (X (X ,) (X (X stocks) (X (X are) (X (X set) (X (X up) (X (X to) (X (X be) (X (X hammered) (X (X by) (X (X index) (X (X arbitragers) (X (X ,) (X (X who) (X (X lock) (X (X in) (X (X profits) (X (X by) (X (X buying) (X (X futures) (X (X when) (X (X futures) (X (X prices) (X (X fall) (X (X ,) (X (X and) (X (X simultaneously) (X (X sell) (X (X off) (X (X stocks) (X .))))))))))))))))))))))))))))))))) (X (X but) (X (X nobody) (X (X knows) (X (X at) (X (X what) (X (X level) (X (X the) (X (X futures) (X (X and) (X (X stocks) (X (X will) (X (X open) (X (X today) (X .)))))))))))))) (X (X the) (X (X de-linkage) (X (X between) (X (X the) (X (X stock) (X (X and) (X (X futures) (X (X markets) (X (X Friday) (X (X will) (X (X undoubtedly) (X (X cause) (X (X renewed) (X (X debate) (X (X about) (X (X whether) (X (X Wall) (X (X Street) (X (X is) (X (X properly) (X (X prepared) (X (X for) (X (X another) (X (X crash) (X (X situation) (X .)))))))))))))))))))))))))) (X (X the) (X (X Big) (X (X Board) (X (X 's) (X (X Mr.) (X (X Grasso) (X (X said) (X (X ,) (X (X ``) (X (X Our) (X (X systemic) (X (X performance) (X (X was) (X (X good) (X (X .) (X '')))))))))))))))) (X (X but) (X (X the) (X (X exchange) (X (X will) (X (X ``) (X (X look) (X (X at) (X (X the) (X (X performance) (X (X of) (X (X all) (X (X specialists) (X (X in) (X (X all) (X (X stocks) (X .)))))))))))))))) (X (X obviously) (X (X we) (X (X 'll) (X (X take) (X (X a) (X (X close) (X (X look) (X (X at) (X (X any) (X (X situation) (X (X in) (X (X which) (X (X we) (X (X think) (X (X the) (X (X dealer-community) (X (X obligations) (X (X were) (X (X n't) (X (X met) (X (X ,) (X (X '') (X (X he) (X (X said) (X .))))))))))))))))))))))))) (X (X -lrb-) (X (X See) (X (X related) (X (X story) (X (X :) (X (X ``) (X (X Fed) (X (X Ready) (X (X to) (X (X Inject) (X (X Big) (X (X Funds) (X (X '') (X (X --) (X (X WSJ) (X (X Oct.) (X (X 16) (X (X ,) (X (X 1989) (X -RRB-)))))))))))))))))))) (X (X but) (X (X specialists) (X (X complain) (X (X privately) (X (X that) (X (X just) (X (X as) (X (X in) (X (X the) (X (X 1987) (X (X crash) (X (X ,) (X (X the) (X (X ``) (X (X upstairs) (X (X '') (X (X firms) (X (X --) (X (X big) (X (X investment) (X (X banks) (X (X that) (X (X support) (X (X the) (X (X market) (X (X by) (X (X trading) (X (X big) (X (X blocks) (X (X of) (X (X stock) (X (X --) (X (X stayed) (X (X on) (X (X the) (X (X sidelines) (X (X during) (X (X Friday) (X (X 's) (X (X blood-letting) (X .))))))))))))))))))))))))))))))))))))))))) (X (X mr.) (X (X Phelan) (X (X said) (X (X ,) (X (X ``) (X (X It) (X (X will) (X (X take) (X (X another) (X (X day) (X (X or) (X (X two) (X (X '') (X (X to) (X (X analyze) (X (X who) (X (X was) (X (X buying) (X (X and) (X (X selling) (X (X Friday) (X .)))))))))))))))))))))) (X (X concerning) (X (X your) (X (X Sept.) (X (X 21) (X (X page-one) (X (X article) (X (X on) (X (X Prince) (X (X Charles) (X (X and) (X (X the) (X (X leeches) (X (X :) (X (X It) (X (X 's) (X (X a) (X (X few) (X (X hundred) (X (X years) (X (X since) (X (X England) (X (X has) (X (X been) (X (X a) (X (X kingdom) (X .)))))))))))))))))))))))))) (X (X it) (X (X 's) (X (X now) (X (X the) (X (X United) (X (X Kingdom) (X (X of) (X (X Great) (X (X Britain) (X (X and) (X (X Northern) (X (X Ireland) (X (X ,) (X (X comprising) (X (X Wales) (X (X ,) (X (X Northern) (X (X Ireland) (X (X ,) (X (X Scotland) (X (X ,) (X (X and) (X (X ...) (X (X oh) (X (X yes) (X (X ,) (X (X England) (X (X ,) (X (X too) (X .)))))))))))))))))))))))))))))) (X (X just) (X (X thought) (X (X you) (X (X 'd) (X (X like) (X (X to) (X (X know) (X .)))))))) (X (X george) (X Morton)) (X (X ports) (X (X of) (X (X Call) (X (X Inc.) (X (X reached) (X (X agreements) (X (X to) (X (X sell) (X (X its) (X (X remaining) (X (X seven) (X (X aircraft) (X (X to) (X (X buyers) (X (X that) (X (X were) (X (X n't) (X (X disclosed) (X .))))))))))))))))))) (X (X the) (X (X agreements) (X (X bring) (X (X to) (X (X a) (X (X total) (X (X of) (X (X nine) (X (X the) (X (X number) (X (X of) (X (X planes) (X (X the) (X (X travel) (X (X company) (X (X has) (X (X sold) (X (X this) (X (X year) (X (X as) (X (X part) (X (X of) (X (X a) (X (X restructuring) (X .))))))))))))))))))))))))) (X (X the) (X (X company) (X (X said) (X (X a) (X (X portion) (X (X of) (X (X the) (X (X $) (X (X 32) (X (X million) (X (X realized) (X (X from) (X (X the) (X (X sales) (X (X will) (X (X be) (X (X used) (X (X to) (X (X repay) (X (X its) (X (X bank) (X (X debt) (X (X and) (X (X other) (X (X obligations) (X (X resulting) (X (X from) (X (X the) (X (X currently) (X (X suspended) (X (X air-charter) (X (X operations) (X .))))))))))))))))))))))))))))))))) (X (X earlier) (X (X the) (X (X company) (X (X announced) (X (X it) (X (X would) (X (X sell) (X (X its) (X (X aging) (X (X fleet) (X (X of) (X (X Boeing) (X (X Co.) (X (X 707s) (X (X because) (X (X of) (X (X increasing) (X (X maintenance) (X (X costs) (X .)))))))))))))))))))) (X (X a) (X (X consortium) (X (X of) (X (X private) (X (X investors) (X (X operating) (X (X as) (X (X LJH) (X (X Funding) (X (X Co.) (X (X said) (X (X it) (X (X has) (X (X made) (X (X a) (X (X $) (X (X 409) (X (X million) (X (X cash) (X (X bid) (X (X for) (X (X most) (X (X of) (X (X L.J.) (X (X Hooker) (X (X Corp.) (X (X 's) (X (X real-estate) (X (X and) (X (X shopping-center) (X (X holdings) (X .)))))))))))))))))))))))))))))))) (X (X the) (X (X $) (X (X 409) (X (X million) (X (X bid) (X (X includes) (X (X the) (X (X assumption) (X (X of) (X (X an) (X (X estimated) (X (X $) (X (X 300) (X (X million) (X (X in) (X (X secured) (X (X liabilities) (X (X on) (X (X those) (X (X properties) (X (X ,) (X (X according) (X (X to) (X (X those) (X (X making) (X (X the) (X (X bid) (X .)))))))))))))))))))))))))))) (X (X the) (X (X group) (X (X is) (X (X led) (X (X by) (X (X Jay) (X (X Shidler) (X (X ,) (X (X chief) (X (X executive) (X (X officer) (X (X of) (X (X Shidler) (X (X Investment) (X (X Corp.) (X (X in) (X (X Honolulu) (X (X ,) (X (X and) (X (X A.) (X (X Boyd) (X (X Simpson) (X (X ,) (X (X chief) (X (X executive) (X (X of) (X (X the) (X (X Atlanta-based) (X (X Simpson) (X (X Organization) (X (X Inc) (X .)))))))))))))))))))))))))))))))) (X (X mr.) (X (X Shidler) (X (X 's) (X (X company) (X (X specializes) (X (X in) (X (X commercial) (X (X real-estate) (X (X investment) (X (X and) (X (X claims) (X (X to) (X (X have) (X (X $) (X (X 1) (X (X billion) (X (X in) (X (X assets) (X (X ;) (X (X Mr.) (X (X Simpson) (X (X is) (X (X a) (X (X developer) (X (X and) (X (X a) (X (X former) (X (X senior) (X (X executive) (X (X of) (X (X L.J.) (X (X Hooker) (X .))))))))))))))))))))))))))))))))) (X (X ``) (X (X The) (X (X assets) (X (X are) (X (X good) (X (X ,) (X (X but) (X (X they) (X (X require) (X (X more) (X (X money) (X (X and) (X (X management) (X (X '') (X (X than) (X (X can) (X (X be) (X (X provided) (X (X in) (X (X L.J.) (X (X Hooker) (X (X 's) (X (X current) (X (X situation) (X (X ,) (X (X said) (X (X Mr.) (X (X Simpson) (X (X in) (X (X an) (X (X interview) (X (X .) (X ``))))))))))))))))))))))))))))))))) (X (X hooker) (X (X 's) (X (X philosophy) (X (X was) (X (X to) (X (X build) (X (X and) (X (X sell) (X .))))))))) (X (X we) (X (X want) (X (X to) (X (X build) (X (X and) (X (X hold) (X (X .) (X '')))))))) (X (X l.j.) (X (X Hooker) (X (X ,) (X (X based) (X (X in) (X (X Atlanta) (X (X ,) (X (X is) (X (X operating) (X (X with) (X (X protection) (X (X from) (X (X its) (X (X creditors) (X (X under) (X (X Chapter) (X (X 11) (X (X of) (X (X the) (X (X U.S.) (X (X Bankruptcy) (X (X Code) (X .))))))))))))))))))))))) (X (X its) (X (X parent) (X (X company) (X (X ,) (X (X Hooker) (X (X Corp.) (X (X of) (X (X Sydney) (X (X ,) (X (X Australia) (X (X ,) (X (X is) (X (X currently) (X (X being) (X (X managed) (X (X by) (X (X a) (X (X court-appointed) (X (X provisional) (X (X liquidator) (X .))))))))))))))))))))) (X (X sanford) (X (X Sigoloff) (X (X ,) (X (X chief) (X (X executive) (X (X of) (X (X L.J.) (X (X Hooker) (X (X ,) (X (X said) (X (X yesterday) (X (X in) (X (X a) (X (X statement) (X (X that) (X (X he) (X (X has) (X (X not) (X (X yet) (X (X seen) (X (X the) (X (X bid) (X (X but) (X (X that) (X (X he) (X (X would) (X (X review) (X (X it) (X (X and) (X (X bring) (X (X it) (X (X to) (X (X the) (X (X attention) (X (X of) (X (X the) (X (X creditors) (X (X committee) (X .))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X $) (X (X 409) (X (X million) (X (X bid) (X (X is) (X (X estimated) (X (X by) (X (X Mr.) (X (X Simpson) (X (X as) (X (X representing) (X (X 75) (X (X %) (X (X of) (X (X the) (X (X value) (X (X of) (X (X all) (X (X Hooker) (X (X real-estate) (X (X holdings) (X (X in) (X (X the) (X (X U.S.) (X .)))))))))))))))))))))))))) (X (X not) (X (X included) (X (X in) (X (X the) (X (X bid) (X (X are) (X (X Bonwit) (X (X Teller) (X (X or) (X (X B.) (X (X Altman) (X (X &) (X (X Co.) (X (X ,) (X (X L.J.) (X (X Hooker) (X (X 's) (X (X department-store) (X (X chains) (X .)))))))))))))))))))) (X (X the) (X (X offer) (X (X covers) (X (X the) (X (X massive) (X (X 1.8) (X (X million-square-foot) (X (X Forest) (X (X Fair) (X (X Mall) (X (X in) (X (X Cincinnati) (X (X ,) (X (X the) (X (X 800,000) (X (X square-foot) (X (X Richland) (X (X Fashion) (X (X Mall) (X (X in) (X (X Columbia) (X (X ,) (X (X S.C.) (X (X ,) (X (X and) (X (X the) (X (X 700,000) (X (X square-foot) (X (X Thornton) (X (X Town) (X (X Center) (X (X mall) (X (X in) (X (X Thornton) (X (X ,) (X (X Colo) (X .))))))))))))))))))))))))))))))))))))) (X (X the) (X (X Thornton) (X (X mall) (X (X opened) (X (X Sept.) (X (X 19) (X (X with) (X (X a) (X (X Bigg) (X (X 's) (X (X hypermarket) (X (X as) (X (X its) (X (X anchor) (X (X ;) (X (X the) (X (X Columbia) (X (X mall) (X (X is) (X (X expected) (X (X to) (X (X open) (X (X Nov.) (X (X 15) (X .))))))))))))))))))))))))) (X (X other) (X (X Hooker) (X (X properties) (X (X included) (X (X are) (X (X a) (X (X 20-story) (X (X office) (X (X tower) (X (X in) (X (X midtown) (X (X Atlanta) (X (X ,) (X (X expected) (X (X to) (X (X be) (X (X completed) (X (X next) (X (X February) (X (X ;) (X (X vacant) (X (X land) (X (X sites) (X (X in) (X (X Florida) (X (X and) (X (X Ohio) (X (X ;) (X (X L.J.) (X (X Hooker) (X (X International) (X (X ,) (X (X the) (X (X commercial) (X (X real-estate) (X (X brokerage) (X (X company) (X (X that) (X (X once) (X (X did) (X (X business) (X (X as) (X (X Merrill) (X (X Lynch) (X (X Commercial) (X (X Real) (X (X Estate) (X (X ,) (X (X plus) (X (X other) (X (X shopping) (X (X centers) (X .))))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X consortium) (X (X was) (X (X put) (X (X together) (X (X by) (X (X Hoare) (X (X Govett) (X (X ,) (X (X the) (X (X London-based) (X (X investment) (X (X banking) (X (X company) (X (X that) (X (X is) (X (X a) (X (X subsidiary) (X (X of) (X (X Security) (X (X Pacific) (X (X Corp) (X .))))))))))))))))))))))) (X (X ``) (X (X We) (X (X do) (X (X n't) (X (X anticipate) (X (X any) (X (X problems) (X (X in) (X (X raising) (X (X the) (X (X funding) (X (X for) (X (X the) (X (X bid) (X (X ,) (X (X '') (X (X said) (X (X Allan) (X (X Campbell) (X (X ,) (X (X the) (X (X head) (X (X of) (X (X mergers) (X (X and) (X (X acquisitions) (X (X at) (X (X Hoare) (X (X Govett) (X (X ,) (X (X in) (X (X an) (X (X interview) (X .)))))))))))))))))))))))))))))))))) (X (X hoare) (X (X Govett) (X (X is) (X (X acting) (X (X as) (X (X the) (X (X consortium) (X (X 's) (X (X investment) (X (X bankers) (X .))))))))))) (X (X according) (X (X to) (X (X people) (X (X familiar) (X (X with) (X (X the) (X (X consortium) (X (X ,) (X (X the) (X (X bid) (X (X was) (X (X code-named) (X (X Project) (X (X Klute) (X (X ,) (X (X a) (X (X reference) (X (X to) (X (X the) (X (X film) (X (X ``) (X (X Klute) (X (X '') (X (X in) (X (X which) (X (X a) (X (X prostitute) (X (X played) (X (X by) (X (X actress) (X (X Jane) (X (X Fonda) (X (X is) (X (X saved) (X (X from) (X (X a) (X (X psychotic) (X (X businessman) (X (X by) (X (X a) (X (X police) (X (X officer) (X (X named) (X (X John) (X (X Klute) (X .)))))))))))))))))))))))))))))))))))))))))))))) (X (X l.j.) (X (X Hooker) (X (X was) (X (X a) (X (X small) (X (X home-building) (X (X company) (X (X based) (X (X in) (X (X Atlanta) (X (X in) (X (X 1979) (X (X when) (X (X Mr.) (X (X Simpson) (X (X was) (X (X hired) (X (X to) (X (X push) (X (X it) (X (X into) (X (X commercial) (X (X development) (X .)))))))))))))))))))))))) (X (X the) (X (X company) (X (X grew) (X (X modestly) (X (X until) (X (X 1986) (X (X ,) (X (X when) (X (X a) (X (X majority) (X (X position) (X (X in) (X (X Hooker) (X (X Corp.) (X (X was) (X (X acquired) (X (X by) (X (X Australian) (X (X developer) (X (X George) (X (X Herscu) (X (X ,) (X (X currently) (X (X Hooker) (X (X 's) (X (X chairman) (X .))))))))))))))))))))))))))) (X (X mr.) (X (X Herscu) (X (X proceeded) (X (X to) (X (X launch) (X (X an) (X (X ambitious) (X (X ,) (X (X but) (X (X ill-fated) (X (X ,) (X (X $) (X (X 1) (X (X billion) (X (X acquisition) (X (X binge) (X (X that) (X (X included) (X (X Bonwit) (X (X Teller) (X (X and) (X (X B.) (X (X Altman) (X (X &) (X (X Co.) (X (X ,) (X (X as) (X (X well) (X (X as) (X (X majority) (X (X positions) (X (X in) (X (X Merksamer) (X (X Jewelers) (X (X ,) (X (X a) (X (X Sacramento) (X (X chain) (X (X ;) (X (X Sakowitz) (X (X Inc.) (X (X ,) (X (X the) (X (X Houston-based) (X (X retailer) (X (X ,) (X (X and) (X (X Parisian) (X (X Inc.) (X (X ,) (X (X the) (X (X Southeast) (X (X department-store) (X (X chain) (X .))))))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X eventually) (X (X Mr.) (X (X Simpson) (X (X and) (X (X Mr.) (X (X Herscu) (X (X had) (X (X a) (X (X falling) (X (X out) (X (X over) (X (X the) (X (X direction) (X (X of) (X (X the) (X (X company) (X (X ,) (X (X and) (X (X Mr.) (X (X Simpson) (X (X said) (X (X he) (X (X resigned) (X (X in) (X (X 1988) (X .)))))))))))))))))))))))))) (X (X since) (X (X then) (X (X ,) (X (X Hooker) (X (X Corp.) (X (X has) (X (X sold) (X (X its) (X (X interest) (X (X in) (X (X the) (X (X Parisian) (X (X chain) (X (X back) (X (X to) (X (X Parisian) (X (X 's) (X (X management) (X (X and) (X (X is) (X (X currently) (X (X attempting) (X (X to) (X (X sell) (X (X the) (X (X B.) (X (X Altman) (X (X &) (X (X Co.) (X (X chain) (X .))))))))))))))))))))))))))))))) (X (X in) (X (X addition) (X (X ,) (X (X Robert) (X (X Sakowitz) (X (X ,) (X (X chief) (X (X executive) (X (X of) (X (X the) (X (X Sakowitz) (X (X chain) (X (X ,) (X (X is) (X (X seeking) (X (X funds) (X (X to) (X (X buy) (X (X out) (X (X the) (X (X Hooker) (X (X interest) (X (X in) (X (X his) (X (X company) (X .)))))))))))))))))))))))))) (X (X the) (X (X Merksamer) (X (X chain) (X (X is) (X (X currently) (X (X being) (X (X offered) (X (X for) (X (X sale) (X (X by) (X (X First) (X (X Boston) (X (X Corp) (X .)))))))))))))) (X (X reached) (X (X in) (X (X Honolulu) (X (X ,) (X (X Mr.) (X (X Shidler) (X (X said) (X (X that) (X (X he) (X (X believes) (X (X the) (X (X various) (X (X Hooker) (X (X malls) (X (X can) (X (X become) (X (X profitable) (X (X with) (X (X new) (X (X management) (X .))))))))))))))))))))) (X (X ``) (X (X These) (X (X are) (X (X n't) (X (X mature) (X (X assets) (X (X ,) (X (X but) (X (X they) (X (X have) (X (X the) (X (X potential) (X (X to) (X (X be) (X (X so) (X (X ,) (X (X '') (X (X said) (X (X Mr.) (X (X Shidler) (X .))))))))))))))))))))) (X (X ``) (X (X Managed) (X (X properly) (X (X ,) (X (X and) (X (X with) (X (X a) (X (X long-term) (X (X outlook) (X (X ,) (X (X these) (X (X can) (X (X become) (X (X investment-grade) (X (X quality) (X (X properties) (X .))))))))))))))))) (X (X canadian) (X (X steel-ingot) (X (X production) (X (X totaled) (X (X 291,890) (X (X metric) (X (X tons) (X (X in) (X (X the) (X (X week) (X (X ended) (X (X Oct.) (X (X 7) (X (X ,) (X (X up) (X (X 14.8) (X (X %) (X (X from) (X (X the) (X (X preceding) (X (X week) (X (X 's) (X (X total) (X (X of) (X (X 254,280) (X (X tons) (X (X ,) (X (X Statistics) (X (X Canada) (X (X ,) (X (X a) (X (X federal) (X (X agency) (X (X ,) (X (X said) (X .)))))))))))))))))))))))))))))))))))) (X (X the) (X (X week) (X (X 's) (X (X total) (X (X was) (X (X up) (X (X 6.2) (X (X %) (X (X from) (X (X 274,963) (X (X tons) (X (X a) (X (X year) (X (X earlier) (X .))))))))))))))) (X (X the) (X (X year-to-date) (X (X total) (X (X was) (X (X 12,006,883) (X (X tons) (X (X ,) (X (X up) (X (X 7.8) (X (X %) (X (X from) (X (X 11,141,711) (X (X tons) (X (X a) (X (X year) (X (X earlier) (X .))))))))))))))))) (X (X the) (X (X Treasury) (X (X plans) (X (X to) (X (X raise) (X (X $) (X (X 175) (X (X million) (X (X in) (X (X new) (X (X cash) (X (X Thursday) (X (X by) (X (X selling) (X (X about) (X (X $) (X (X 9.75) (X (X billion) (X (X of) (X (X 52-week) (X (X bills) (X (X and) (X (X redeeming) (X (X $) (X (X 9.58) (X (X billion) (X (X of) (X (X maturing) (X (X bills) (X .)))))))))))))))))))))))))))))) (X (X the) (X (X bills) (X (X will) (X (X be) (X (X dated) (X (X Oct.) (X (X 26) (X (X and) (X (X will) (X (X mature) (X (X Oct.) (X (X 25) (X (X ,) (X (X 1990) (X .))))))))))))))) (X (X they) (X (X will) (X (X be) (X (X available) (X (X in) (X (X minimum) (X (X denominations) (X (X of) (X (X $) (X (X 10,000) (X .))))))))))) (X (X bids) (X (X must) (X (X be) (X (X received) (X (X by) (X (X 1) (X (X p.m.) (X (X EDT) (X (X Thursday) (X (X at) (X (X the) (X (X Treasury) (X (X or) (X (X at) (X (X Federal) (X (X Reserve) (X (X banks) (X (X or) (X (X branches) (X .)))))))))))))))))))) (X (X as) (X (X small) (X (X investors) (X (X peppered) (X (X their) (X (X mutual) (X (X funds) (X (X with) (X (X phone) (X (X calls) (X (X over) (X (X the) (X (X weekend) (X (X ,) (X (X big) (X (X fund) (X (X managers) (X (X said) (X (X they) (X (X have) (X (X a) (X (X strong) (X (X defense) (X (X against) (X (X any) (X (X wave) (X (X of) (X (X withdrawals) (X (X :) (X (X cash) (X .))))))))))))))))))))))))))))))) (X (X unlike) (X (X the) (X (X weekend) (X (X before) (X (X Black) (X (X Monday) (X (X ,) (X (X the) (X (X funds) (X (X were) (X (X n't) (X (X swamped) (X (X with) (X (X heavy) (X (X withdrawal) (X (X requests) (X .))))))))))))))))) (X (X and) (X (X many) (X (X fund) (X (X managers) (X (X have) (X (X built) (X (X up) (X (X cash) (X (X levels) (X (X and) (X (X say) (X (X they) (X (X will) (X (X be) (X (X buying) (X (X stock) (X (X this) (X (X week) (X .))))))))))))))))))) (X (X at) (X (X Fidelity) (X (X Investments) (X (X ,) (X (X the) (X (X nation) (X (X 's) (X (X largest) (X (X fund) (X (X company) (X (X ,) (X (X telephone) (X (X volume) (X (X was) (X (X up) (X (X sharply) (X (X ,) (X (X but) (X (X it) (X (X was) (X (X still) (X (X at) (X (X just) (X (X half) (X (X the) (X (X level) (X (X of) (X (X the) (X (X weekend) (X (X preceding) (X (X Black) (X (X Monday) (X (X in) (X (X 1987) (X .))))))))))))))))))))))))))))))))))) (X (X the) (X (X Boston) (X (X firm) (X (X said) (X (X stock-fund) (X (X redemptions) (X (X were) (X (X running) (X (X at) (X (X less) (X (X than) (X (X one-third) (X (X the) (X (X level) (X (X two) (X (X years) (X (X ago) (X .)))))))))))))))))) (X (X as) (X (X of) (X (X yesterday) (X (X afternoon) (X (X ,) (X (X the) (X (X redemptions) (X (X represented) (X (X less) (X (X than) (X (X 15) (X (X %) (X (X of) (X (X the) (X (X total) (X (X cash) (X (X position) (X (X of) (X (X about) (X (X $) (X (X 2) (X (X billion) (X (X of) (X (X Fidelity) (X (X 's) (X (X stock) (X (X funds) (X .)))))))))))))))))))))))))))) (X (X ``) (X (X Two) (X (X years) (X (X ago) (X (X there) (X (X were) (X (X massive) (X (X redemption) (X (X levels) (X (X over) (X (X the) (X (X weekend) (X (X and) (X (X a) (X (X lot) (X (X of) (X (X fear) (X (X around) (X (X ,) (X (X '') (X (X said) (X (X C.) (X (X Bruce) (X (X Johnstone) (X (X ,) (X (X who) (X (X runs) (X (X Fidelity) (X (X Investments) (X (X ') (X (X $) (X (X 5) (X (X billion) (X (X Equity-Income) (X (X Fund) (X .)))))))))))))))))))))))))))))))))))) (X (X ``) (X (X This) (X (X feels) (X (X more) (X (X like) (X (X a) (X (X one-shot) (X (X deal) (X .))))))))) (X (X people) (X (X are) (X (X n't) (X (X panicking) (X (X .) (X '')))))) (X (X the) (X (X test) (X (X may) (X (X come) (X (X today) (X .)))))) (X (X friday) (X (X 's) (X (X stock) (X (X market) (X (X sell-off) (X (X came) (X (X too) (X (X late) (X (X for) (X (X many) (X (X investors) (X (X to) (X (X act) (X .)))))))))))))) (X (X some) (X (X shareholders) (X (X have) (X (X held) (X (X off) (X (X until) (X (X today) (X (X because) (X (X any) (X (X fund) (X (X exchanges) (X (X made) (X (X after) (X (X Friday) (X (X 's) (X (X close) (X (X would) (X (X take) (X (X place) (X (X at) (X (X today) (X (X 's) (X (X closing) (X (X prices) (X .))))))))))))))))))))))))) (X (X stock) (X (X fund) (X (X redemptions) (X (X during) (X (X the) (X (X 1987) (X (X debacle) (X (X did) (X (X n't) (X (X begin) (X (X to) (X (X snowball) (X (X until) (X (X after) (X (X the) (X (X market) (X (X opened) (X (X on) (X (X Black) (X (X Monday) (X .))))))))))))))))))))) (X (X but) (X (X fund) (X (X managers) (X (X say) (X (X they) (X (X 're) (X (X ready) (X .)))))))) (X (X many) (X (X have) (X (X raised) (X (X cash) (X (X levels) (X (X ,) (X (X which) (X (X act) (X (X as) (X (X a) (X (X buffer) (X (X against) (X (X steep) (X (X market) (X (X declines) (X .)))))))))))))))) (X (X mario) (X (X Gabelli) (X (X ,) (X (X for) (X (X instance) (X (X ,) (X (X holds) (X (X cash) (X (X positions) (X (X well) (X (X above) (X (X 20) (X (X %) (X (X in) (X (X several) (X (X of) (X (X his) (X (X funds) (X .))))))))))))))))))) (X (X windsor) (X (X Fund) (X (X 's) (X (X John) (X (X Neff) (X (X and) (X (X Mutual) (X (X Series) (X (X ') (X (X Michael) (X (X Price) (X (X said) (X (X they) (X (X had) (X (X raised) (X (X their) (X (X cash) (X (X levels) (X (X to) (X (X more) (X (X than) (X (X 20) (X (X %) (X (X and) (X (X 30) (X (X %) (X (X ,) (X (X respectively) (X (X ,) (X (X this) (X (X year) (X .)))))))))))))))))))))))))))))))) (X (X even) (X (X Peter) (X (X Lynch) (X (X ,) (X (X manager) (X (X of) (X (X Fidelity) (X (X 's) (X (X $) (X (X 12.7) (X (X billion) (X (X Magellan) (X (X Fund) (X (X ,) (X (X the) (X (X nation) (X (X 's) (X (X largest) (X (X stock) (X (X fund) (X (X ,) (X (X built) (X (X up) (X (X cash) (X (X to) (X (X 7) (X (X %) (X (X or) (X (X $) (X (X 850) (X (X million) (X .)))))))))))))))))))))))))))))))) (X (X one) (X (X reason) (X (X is) (X (X that) (X (X after) (X (X two) (X (X years) (X (X of) (X (X monthly) (X (X net) (X (X redemptions) (X (X ,) (X (X the) (X (X fund) (X (X posted) (X (X net) (X (X inflows) (X (X of) (X (X money) (X (X from) (X (X investors) (X (X in) (X (X August) (X (X and) (X (X September) (X .)))))))))))))))))))))))))) (X (X ``) (X (X I) (X (X 've) (X (X let) (X (X the) (X (X money) (X (X build) (X (X up) (X (X ,) (X (X '') (X (X Mr.) (X (X Lynch) (X (X said) (X (X ,) (X (X who) (X (X added) (X (X that) (X (X he) (X (X has) (X (X had) (X (X trouble) (X (X finding) (X (X stocks) (X (X he) (X (X likes) (X .)))))))))))))))))))))))))) (X (X not) (X (X all) (X (X funds) (X (X have) (X (X raised) (X (X cash) (X (X levels) (X (X ,) (X (X of) (X (X course) (X .))))))))))) (X (X as) (X (X a) (X (X group) (X (X ,) (X (X stock) (X (X funds) (X (X held) (X (X 10.2) (X (X %) (X (X of) (X (X assets) (X (X in) (X (X cash) (X (X as) (X (X of) (X (X August) (X (X ,) (X (X the) (X (X latest) (X (X figures) (X (X available) (X (X from) (X (X the) (X (X Investment) (X (X Company) (X (X Institute) (X .))))))))))))))))))))))))))) (X (X that) (X (X was) (X (X modestly) (X (X higher) (X (X than) (X (X the) (X (X 8.8) (X (X %) (X (X and) (X (X 9.2) (X (X %) (X (X levels) (X (X in) (X (X August) (X (X and) (X (X September) (X (X of) (X (X 1987) (X .))))))))))))))))))) (X (X also) (X (X ,) (X (X persistent) (X (X redemptions) (X (X would) (X (X force) (X (X some) (X (X fund) (X (X managers) (X (X to) (X (X dump) (X (X stocks) (X (X to) (X (X raise) (X (X cash) (X .)))))))))))))))) (X (X but) (X (X a) (X (X strong) (X (X level) (X (X of) (X (X investor) (X (X withdrawals) (X (X is) (X (X much) (X (X more) (X (X unlikely) (X (X this) (X (X time) (X (X around) (X (X ,) (X (X fund) (X (X managers) (X (X said) (X .))))))))))))))))))) (X (X a) (X (X major) (X (X reason) (X (X is) (X (X that) (X (X investors) (X (X already) (X (X have) (X (X sharply) (X (X scaled) (X (X back) (X (X their) (X (X purchases) (X (X of) (X (X stock) (X (X funds) (X (X since) (X (X Black) (X (X Monday) (X .)))))))))))))))))))) (X (X stock-fund) (X (X sales) (X (X have) (X (X rebounded) (X (X in) (X (X recent) (X (X months) (X (X ,) (X (X but) (X (X monthly) (X (X net) (X (X purchases) (X (X are) (X (X still) (X (X running) (X (X at) (X (X less) (X (X than) (X (X half) (X (X 1987) (X (X levels) (X .)))))))))))))))))))))) (X (X ``) (X (X There) (X (X 's) (X (X not) (X (X nearly) (X (X as) (X (X much) (X (X froth) (X (X ,) (X (X '') (X (X said) (X (X John) (X (X Bogle) (X (X ,) (X (X chairman) (X (X of) (X (X Vanguard) (X (X Group) (X (X Inc.) (X (X ,) (X (X a) (X (X big) (X (X Valley) (X (X Forge) (X (X ,) (X (X Pa.) (X (X ,) (X (X fund) (X (X company) (X .)))))))))))))))))))))))))))))) (X (X many) (X (X fund) (X (X managers) (X (X argue) (X (X that) (X (X now) (X (X 's) (X (X the) (X (X time) (X (X to) (X (X buy) (X .)))))))))))) (X (X vincent) (X (X Bajakian) (X (X ,) (X (X manager) (X (X of) (X (X the) (X (X $) (X (X 1.8) (X (X billion) (X (X Wellington) (X (X Fund) (X (X ,) (X (X added) (X (X to) (X (X his) (X (X positions) (X (X in) (X (X Bristol-Myers) (X (X Squibb) (X (X ,) (X (X Woolworth) (X (X and) (X (X Dun) (X (X &) (X (X Bradstreet) (X (X Friday) (X .))))))))))))))))))))))))))) (X (X and) (X (X today) (X (X he) (X (X 'll) (X (X be) (X (X looking) (X (X to) (X (X buy) (X (X drug) (X (X stocks) (X (X like) (X (X Eli) (X (X Lilly) (X (X ,) (X (X Pfizer) (X (X and) (X (X American) (X (X Home) (X (X Products) (X (X whose) (X (X dividend) (X (X yields) (X (X have) (X (X been) (X (X bolstered) (X (X by) (X (X stock) (X (X declines) (X .))))))))))))))))))))))))))))) (X (X fidelity) (X (X 's) (X (X Mr.) (X (X Lynch) (X (X ,) (X (X for) (X (X his) (X (X part) (X (X ,) (X (X snapped) (X (X up) (X (X Southern) (X (X Co.) (X (X shares) (X (X Friday) (X (X after) (X (X the) (X (X stock) (X (X got) (X (X hammered) (X .))))))))))))))))))))) (X (X if) (X (X the) (X (X market) (X (X drops) (X (X further) (X (X today) (X (X ,) (X (X he) (X (X said) (X (X he) (X (X 'll) (X (X be) (X (X buying) (X (X blue) (X (X chips) (X (X such) (X (X as) (X (X Bristol-Myers) (X (X and) (X (X Kellogg) (X .))))))))))))))))))))) (X (X ``) (X (X If) (X (X they) (X (X croak) (X (X stocks) (X (X like) (X (X that) (X (X ,) (X (X '') (X (X he) (X (X said) (X (X ,) (X (X it) (X (X presents) (X (X an) (X (X opportunity) (X (X that) (X (X is) (X (X ``) (X (X the) (X (X kind) (X (X of) (X (X thing) (X (X you) (X (X dream) (X (X about) (X (X .) (X '')))))))))))))))))))))))))))) (X (X major) (X (X mutual-fund) (X (X groups) (X (X said) (X (X phone) (X (X calls) (X (X were) (X (X arriving) (X (X at) (X (X twice) (X (X the) (X (X normal) (X (X weekend) (X (X pace) (X (X yesterday) (X .)))))))))))))))) (X (X but) (X (X most) (X (X investors) (X (X were) (X (X seeking) (X (X share) (X (X prices) (X (X and) (X (X other) (X (X information) (X .))))))))))) (X (X trading) (X (X volume) (X (X was) (X (X only) (X (X modestly) (X (X higher) (X (X than) (X (X normal) (X .))))))))) (X (X still) (X (X ,) (X (X fund) (X (X groups) (X (X are) (X (X n't) (X (X taking) (X (X any) (X (X chances) (X .)))))))))) (X (X they) (X (X hope) (X (X to) (X (X avoid) (X (X the) (X (X jammed) (X (X phone) (X (X lines) (X (X and) (X (X other) (X (X snags) (X (X that) (X (X infuriated) (X (X some) (X (X fund) (X (X investors) (X (X in) (X (X October) (X (X 1987) (X .)))))))))))))))))))) (X (X fidelity) (X (X on) (X (X Saturday) (X (X opened) (X (X its) (X (X 54) (X (X walk-in) (X (X investor) (X (X centers) (X (X across) (X (X the) (X (X country) (X .))))))))))))) (X (X the) (X (X centers) (X (X normally) (X (X are) (X (X closed) (X (X through) (X (X the) (X (X weekend) (X .))))))))) (X (X in) (X (X addition) (X (X ,) (X (X East) (X (X Coast) (X (X centers) (X (X will) (X (X open) (X (X at) (X (X 7:30) (X (X EDT) (X (X this) (X (X morning) (X (X ,) (X (X instead) (X (X of) (X (X the) (X (X normal) (X (X 8:30) (X .)))))))))))))))))))) (X (X t.) (X (X Rowe) (X (X Price) (X (X Associates) (X (X Inc.) (X (X increased) (X (X its) (X (X staff) (X (X of) (X (X phone) (X (X representatives) (X (X to) (X (X handle) (X (X investor) (X (X requests) (X .)))))))))))))))) (X (X the) (X (X Baltimore-based) (X (X group) (X (X noted) (X (X that) (X (X some) (X (X investors) (X (X moved) (X (X money) (X (X from) (X (X stock) (X (X funds) (X (X to) (X (X money-market) (X (X funds) (X .)))))))))))))))) (X (X but) (X (X most) (X (X investors) (X (X seemed) (X (X to) (X (X be) (X (X ``) (X (X in) (X (X an) (X (X information) (X (X mode) (X (X rather) (X (X than) (X (X in) (X (X a) (X (X transaction) (X (X mode) (X (X ,) (X (X '') (X (X said) (X (X Steven) (X (X Norwitz) (X (X ,) (X (X a) (X (X vice) (X (X president) (X .))))))))))))))))))))))))))) (X (X and) (X (X Vanguard) (X (X ,) (X (X among) (X (X other) (X (X groups) (X (X ,) (X (X said) (X (X it) (X (X was) (X (X adding) (X (X more) (X (X phone) (X (X representatives) (X (X today) (X (X to) (X (X help) (X (X investors) (X (X get) (X (X through) (X .))))))))))))))))))))) (X (X in) (X (X an) (X (X unusual) (X (X move) (X (X ,) (X (X several) (X (X funds) (X (X moved) (X (X to) (X (X calm) (X (X investors) (X (X with) (X (X recordings) (X (X on) (X (X their) (X (X toll-free) (X (X phone) (X (X lines) (X .))))))))))))))))))) (X (X ``) (X (X We) (X (X view) (X (X -LCB-) (X (X Friday) (X (X 's) (X (X -RCB-) (X (X market) (X (X decline) (X (X as) (X (X offering) (X (X us) (X (X a) (X (X buying) (X (X opportunity) (X (X as) (X (X long-term) (X (X investors) (X (X ,) (X (X '') (X (X a) (X (X recording) (X (X at) (X (X Gabelli) (X (X &) (X (X Co.) (X (X funds) (X (X said) (X (X over) (X (X the) (X (X weekend) (X .)))))))))))))))))))))))))))))))) (X (X the) (X (X Janus) (X (X Group) (X (X had) (X (X a) (X (X similar) (X (X recording) (X (X for) (X (X investors) (X .)))))))))) (X (X several) (X (X fund) (X (X managers) (X (X expect) (X (X a) (X (X rough) (X (X market) (X (X this) (X (X morning) (X (X before) (X (X prices) (X (X stabilize) (X .))))))))))))) (X (X some) (X (X early) (X (X selling) (X (X is) (X (X likely) (X (X to) (X (X stem) (X (X from) (X (X investors) (X (X and) (X (X portfolio) (X (X managers) (X (X who) (X (X want) (X (X to) (X (X lock) (X (X in) (X (X this) (X (X year) (X (X 's) (X (X fat) (X (X profits) (X .))))))))))))))))))))))) (X (X stock) (X (X funds) (X (X have) (X (X averaged) (X (X a) (X (X staggering) (X (X gain) (X (X of) (X (X 25) (X (X %) (X (X through) (X (X September) (X (X ,) (X (X according) (X (X to) (X (X Lipper) (X (X Analytical) (X (X Services) (X (X Inc) (X .)))))))))))))))))))) (X (X elaine) (X (X Garzarelli) (X (X ,) (X (X who) (X (X runs) (X (X Shearson) (X (X Lehman) (X (X Hutton) (X (X Inc.) (X (X 's) (X (X $) (X (X 335) (X (X million) (X (X Sector) (X (X Analysis) (X (X Portfolio) (X (X ,) (X (X predicts) (X (X the) (X (X market) (X (X will) (X (X open) (X (X down) (X (X at) (X (X least) (X (X 50) (X (X points) (X (X on) (X (X technical) (X (X factors) (X (X and) (X (X ``) (X (X some) (X (X panic) (X (X selling) (X (X .) (X ''))))))))))))))))))))))))))))))))))))) (X (X but) (X (X she) (X (X expects) (X (X prices) (X (X to) (X (X rebound) (X (X soon) (X (X and) (X (X is) (X (X telling) (X (X investors) (X (X she) (X (X expects) (X (X the) (X (X stock) (X (X market) (X (X wo) (X (X n't) (X (X decline) (X (X more) (X (X than) (X (X 10) (X (X %) (X (X to) (X (X 15) (X (X %) (X (X from) (X (X recent) (X (X highs) (X .)))))))))))))))))))))))))))))) (X (X ``) (X (X This) (X (X is) (X (X not) (X (X a) (X (X major) (X (X crash) (X (X ,) (X (X '') (X (X she) (X (X said) (X .)))))))))))) (X (X nevertheless) (X (X ,) (X (X Ms.) (X (X Garzarelli) (X (X said) (X (X she) (X (X was) (X (X swamped) (X (X with) (X (X phone) (X (X calls) (X (X over) (X (X the) (X (X weekend) (X (X from) (X (X nervous) (X (X shareholders) (X .)))))))))))))))))) (X (X ``) (X (X Half) (X (X of) (X (X them) (X (X are) (X (X really) (X (X scared) (X (X and) (X (X want) (X (X to) (X (X sell) (X (X ,) (X (X '') (X (X she) (X (X said) (X (X ,) (X (X ``) (X (X but) (X (X I) (X (X 'm) (X (X trying) (X (X to) (X (X talk) (X (X them) (X (X out) (X (X of) (X (X it) (X (X .) (X ''))))))))))))))))))))))))))))) (X (X she) (X (X added) (X (X ,) (X (X ``) (X (X If) (X (X they) (X (X all) (X (X were) (X (X bullish) (X (X ,) (X (X I) (X (X 'd) (X (X really) (X (X be) (X (X upset) (X (X .) (X ''))))))))))))))))) (X (X the) (X (X backdrop) (X (X to) (X (X Friday) (X (X 's) (X (X slide) (X (X was) (X (X markedly) (X (X different) (X (X from) (X (X that) (X (X of) (X (X the) (X (X October) (X (X 1987) (X (X crash) (X (X ,) (X (X fund) (X (X managers) (X (X argue) (X .))))))))))))))))))))) (X (X two) (X (X years) (X (X ago) (X (X ,) (X (X unlike) (X (X today) (X (X ,) (X (X the) (X (X dollar) (X (X was) (X (X weak) (X (X ,) (X (X interest) (X (X rates) (X (X were) (X (X rising) (X (X and) (X (X the) (X (X market) (X (X was) (X (X very) (X (X overvalued) (X (X ,) (X (X they) (X (X say) (X .)))))))))))))))))))))))))) (X (X ``) (X (X From) (X (X the) (X (X investors) (X (X ') (X (X standpoint) (X (X ,) (X (X institutions) (X (X and) (X (X individuals) (X (X learned) (X (X a) (X (X painful) (X (X lesson) (X (X ...) (X (X by) (X (X selling) (X (X at) (X (X the) (X (X lows) (X (X '') (X (X on) (X (X Black) (X (X Monday) (X (X ,) (X (X said) (X (X Stephen) (X (X Boesel) (X (X ,) (X (X manager) (X (X of) (X (X the) (X (X $) (X (X 580) (X (X million) (X (X T.) (X (X Rowe) (X (X Price) (X (X Growth) (X (X and) (X (X Income) (X (X Fund) (X .))))))))))))))))))))))))))))))))))))))))))) (X (X this) (X (X time) (X (X ,) (X (X ``) (X (X I) (X (X do) (X (X n't) (X (X think) (X (X we) (X (X 'll) (X (X get) (X (X a) (X (X panic) (X (X reaction) (X .))))))))))))))) (X (X newport) (X (X Corp.) (X (X said) (X (X it) (X (X expects) (X (X to) (X (X report) (X (X fiscal-first-quarter) (X (X earnings) (X (X of) (X (X between) (X (X 15) (X (X cents) (X (X and) (X (X 19) (X (X cents) (X (X a) (X (X share) (X (X ,) (X (X somewhat) (X (X below) (X (X analysts) (X (X ') (X (X estimates) (X (X of) (X (X 19) (X (X cents) (X (X to) (X (X 23) (X (X cents) (X .))))))))))))))))))))))))))))))) (X (X the) (X (X maker) (X (X of) (X (X scientific) (X (X instruments) (X (X and) (X (X laser) (X (X parts) (X (X said) (X (X orders) (X (X fell) (X (X below) (X (X expectations) (X (X in) (X (X recent) (X (X months) (X .))))))))))))))))) (X (X a) (X (X spokesman) (X (X added) (X (X that) (X (X sales) (X (X in) (X (X the) (X (X current) (X (X quarter) (X (X will) (X (X about) (X (X equal) (X (X the) (X (X yearearlier) (X (X quarter) (X (X 's) (X (X figure) (X (X ,) (X (X when) (X (X Newport) (X (X reported) (X (X net) (X (X income) (X (X of) (X (X $) (X (X 1.7) (X (X million) (X (X ,) (X (X or) (X (X 21) (X (X cents) (X (X a) (X (X share) (X (X ,) (X (X on) (X (X $) (X (X 14.1) (X (X million) (X (X in) (X (X sales) (X .))))))))))))))))))))))))))))))))))))))))) (X (X ripples) (X (X from) (X (X the) (X (X strike) (X (X by) (X (X 55,000) (X (X Machinists) (X (X union) (X (X members) (X (X against) (X (X Boeing) (X (X Co.) (X (X reached) (X (X air) (X (X carriers) (X (X Friday) (X (X as) (X (X America) (X (X West) (X (X Airlines) (X (X announced) (X (X it) (X (X will) (X (X postpone) (X (X its) (X (X new) (X (X service) (X (X out) (X (X of) (X (X Houston) (X (X because) (X (X of) (X (X delays) (X (X in) (X (X receiving) (X (X aircraft) (X (X from) (X (X the) (X (X Seattle) (X (X jet) (X (X maker) (X .)))))))))))))))))))))))))))))))))))))))))) (X (X peter) (X (X Otradovec) (X (X ,) (X (X vice) (X (X president) (X (X for) (X (X planning) (X (X at) (X (X the) (X (X Phoenix) (X (X ,) (X (X Ariz.) (X (X ,) (X (X carrier) (X (X ,) (X (X said) (X (X in) (X (X an) (X (X interview) (X (X that) (X (X the) (X (X work) (X (X stoppage) (X (X at) (X (X Boeing) (X (X ,) (X (X now) (X (X entering) (X (X its) (X (X 13th) (X (X day) (X (X ,) (X (X ``) (X (X has) (X (X caused) (X (X some) (X (X turmoil) (X (X in) (X (X our) (X (X scheduling) (X (X '') (X (X and) (X (X that) (X (X more) (X (X than) (X (X 500) (X (X passengers) (X (X who) (X (X were) (X (X booked) (X (X to) (X (X fly) (X (X out) (X (X of) (X (X Houston) (X (X on) (X (X America) (X (X West) (X (X would) (X (X now) (X (X be) (X (X put) (X (X on) (X (X other) (X (X airlines) (X .)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X mr.) (X (X Otradovec) (X (X said) (X (X Boeing) (X (X told) (X (X America) (X (X West) (X (X that) (X (X the) (X (X 757) (X (X it) (X (X was) (X (X supposed) (X (X to) (X (X get) (X (X this) (X (X Thursday) (X (X would) (X (X n't) (X (X be) (X (X delivered) (X (X until) (X (X Nov.) (X (X 7) (X (X --) (X (X the) (X (X day) (X (X after) (X (X the) (X (X airline) (X (X had) (X (X been) (X (X planning) (X (X to) (X (X initiate) (X (X service) (X (X at) (X (X Houston) (X (X with) (X (X four) (X (X daily) (X (X flights) (X (X ,) (X (X including) (X (X three) (X (X nonstops) (X (X to) (X (X Phoenix) (X (X and) (X (X one) (X (X nonstop) (X (X to) (X (X Las) (X (X Vegas) (X .))))))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X now) (X (X ,) (X (X those) (X (X routes) (X (X are) (X (X n't) (X (X expected) (X (X to) (X (X begin) (X (X until) (X (X Jan) (X .)))))))))))) (X (X boeing) (X (X is) (X (X also) (X (X supposed) (X (X to) (X (X send) (X (X to) (X (X America) (X (X West) (X (X another) (X (X 757) (X (X twin-engine) (X (X aircraft) (X (X as) (X (X well) (X (X as) (X (X a) (X (X 737) (X (X by) (X (X year) (X (X 's) (X (X end) (X .))))))))))))))))))))))) (X (X those) (X (X ,) (X (X too) (X (X ,) (X (X are) (X (X almost) (X (X certain) (X (X to) (X (X arrive) (X (X late) (X .))))))))))) (X (X at) (X (X this) (X (X point) (X (X ,) (X (X no) (X (X other) (X (X America) (X (X West) (X (X flights) (X (X --) (X (X including) (X (X its) (X (X new) (X (X service) (X (X at) (X (X San) (X (X Antonio) (X (X ,) (X (X Texas) (X (X ;) (X (X Newark) (X (X ,) (X (X N.J.) (X (X ;) (X (X and) (X (X Palmdale) (X (X ,) (X (X Calif.) (X (X --) (X (X have) (X (X been) (X (X affected) (X (X by) (X (X the) (X (X delays) (X (X in) (X (X Boeing) (X (X deliveries) (X .))))))))))))))))))))))))))))))))))))))) (X (X nevertheless) (X (X ,) (X (X the) (X (X company) (X (X 's) (X (X reaction) (X (X underscores) (X (X the) (X (X domino) (X (X effect) (X (X that) (X (X a) (X (X huge) (X (X manufacturer) (X (X such) (X (X as) (X (X Boeing) (X (X can) (X (X have) (X (X on) (X (X other) (X (X parts) (X (X of) (X (X the) (X (X economy) (X .)))))))))))))))))))))))))) (X (X it) (X (X also) (X (X is) (X (X sure) (X (X to) (X (X help) (X (X the) (X (X machinists) (X (X put) (X (X added) (X (X pressure) (X (X on) (X (X the) (X (X company) (X .))))))))))))))) (X (X ``) (X (X I) (X (X just) (X (X do) (X (X n't) (X (X feel) (X (X that) (X (X the) (X (X company) (X (X can) (X (X really) (X (X stand) (X (X or) (X (X would) (X (X want) (X (X a) (X (X prolonged) (X (X walkout) (X (X ,) (X (X '') (X (X Tom) (X (X Baker) (X (X ,) (X (X president) (X (X of) (X (X Machinists) (X (X ') (X (X District) (X (X 751) (X (X ,) (X (X said) (X (X in) (X (X an) (X (X interview) (X (X yesterday) (X .)))))))))))))))))))))))))))))))))))) (X (X ``) (X (X I) (X (X do) (X (X n't) (X (X think) (X (X their) (X (X customers) (X (X would) (X (X like) (X (X it) (X (X very) (X (X much) (X (X .) (X '')))))))))))))) (X (X america) (X (X West) (X (X ,) (X (X though) (X (X ,) (X (X is) (X (X a) (X (X smaller) (X (X airline) (X (X and) (X (X therefore) (X (X more) (X (X affected) (X (X by) (X (X the) (X (X delayed) (X (X delivery) (X (X of) (X (X a) (X (X single) (X (X plane) (X (X than) (X (X many) (X (X of) (X (X its) (X (X competitors) (X (X would) (X (X be) (X .))))))))))))))))))))))))))))) (X (X ``) (X (X I) (X (X figure) (X (X that) (X (X American) (X (X and) (X (X United) (X (X probably) (X (X have) (X (X such) (X (X a) (X (X hard) (X (X time) (X (X counting) (X (X all) (X (X the) (X (X planes) (X (X in) (X (X their) (X (X fleets) (X (X ,) (X (X they) (X (X might) (X (X not) (X (X miss) (X (X one) (X (X at) (X (X all) (X (X ,) (X (X '') (X (X Mr.) (X (X Otradovec) (X (X said) (X .)))))))))))))))))))))))))))))))))) (X (X indeed) (X (X ,) (X (X a) (X (X random) (X (X check) (X (X Friday) (X (X did) (X (X n't) (X (X seem) (X (X to) (X (X indicate) (X (X that) (X (X the) (X (X strike) (X (X was) (X (X having) (X (X much) (X (X of) (X (X an) (X (X effect) (X (X on) (X (X other) (X (X airline) (X (X operations) (X .))))))))))))))))))))))))) (X (X southwest) (X (X Airlines) (X (X has) (X (X a) (X (X Boeing) (X (X 737-300) (X (X set) (X (X for) (X (X delivery) (X (X at) (X (X the) (X (X end) (X (X of) (X (X this) (X (X month) (X (X and) (X (X expects) (X (X to) (X (X have) (X (X the) (X (X plane) (X (X on) (X (X time) (X .)))))))))))))))))))))))) (X (X ``) (X (X It) (X (X 's) (X (X so) (X (X close) (X (X to) (X (X completion) (X (X ,) (X (X Boeing) (X (X 's) (X (X told) (X (X us) (X (X there) (X (X wo) (X (X n't) (X (X be) (X (X a) (X (X problem) (X (X ,) (X (X '') (X (X said) (X (X a) (X (X Southwest) (X (X spokesman) (X .))))))))))))))))))))))))) (X (X a) (X (X spokesman) (X (X for) (X (X AMR) (X (X Corp.) (X (X said) (X (X Boeing) (X (X has) (X (X assured) (X (X American) (X (X Airlines) (X (X it) (X (X will) (X (X deliver) (X (X a) (X (X 757) (X (X on) (X (X time) (X (X later) (X (X this) (X (X month) (X .)))))))))))))))))))))) (X (X american) (X (X is) (X (X preparing) (X (X to) (X (X take) (X (X delivery) (X (X of) (X (X another) (X (X 757) (X (X in) (X (X early) (X (X December) (X (X and) (X (X 20) (X (X more) (X (X next) (X (X year) (X (X and) (X (X is) (X (X n't) (X (X anticipating) (X (X any) (X (X changes) (X (X in) (X (X that) (X (X timetable) (X .))))))))))))))))))))))))))) (X (X in) (X (X Seattle) (X (X ,) (X (X a) (X (X Boeing) (X (X spokesman) (X (X explained) (X (X that) (X (X the) (X (X company) (X (X has) (X (X been) (X (X in) (X (X constant) (X (X communication) (X (X with) (X (X all) (X (X of) (X (X its) (X (X customers) (X (X and) (X (X that) (X (X it) (X (X was) (X (X impossible) (X (X to) (X (X predict) (X (X what) (X (X further) (X (X disruptions) (X (X might) (X (X be) (X (X triggered) (X (X by) (X (X the) (X (X strike) (X .))))))))))))))))))))))))))))))))))))) (X (X meanwhile) (X (X ,) (X (X supervisors) (X (X and) (X (X non-striking) (X (X employees) (X (X have) (X (X been) (X (X trying) (X (X to) (X (X finish) (X (X some) (X (X 40) (X (X aircraft) (X (X --) (X (X mostly) (X (X 747) (X (X and) (X (X 767) (X (X jumbo) (X (X jets) (X (X at) (X (X the) (X (X company) (X (X 's) (X (X Everett) (X (X ,) (X (X Wash.) (X (X ,) (X (X plant) (X (X --) (X (X that) (X (X were) (X (X all) (X (X but) (X (X completed) (X (X before) (X (X the) (X (X walkout) (X .)))))))))))))))))))))))))))))))))))))))) (X (X as) (X (X of) (X (X Friday) (X (X ,) (X (X four) (X (X had) (X (X been) (X (X delivered) (X (X and) (X (X a) (X (X fifth) (X (X plane) (X (X ,) (X (X a) (X (X 747-400) (X (X ,) (X (X was) (X (X supposed) (X (X to) (X (X be) (X (X flown) (X (X out) (X (X over) (X (X the) (X (X weekend) (X (X to) (X (X Air) (X (X China) (X .))))))))))))))))))))))))))))) (X (X no) (X (X date) (X (X has) (X (X yet) (X (X been) (X (X set) (X (X to) (X (X get) (X (X back) (X (X to) (X (X the) (X (X bargaining) (X (X table) (X .)))))))))))))) (X (X ``) (X (X We) (X (X want) (X (X to) (X (X make) (X (X sure) (X (X they) (X (X know) (X (X what) (X (X they) (X (X want) (X (X before) (X (X they) (X (X come) (X (X back) (X (X ,) (X (X '') (X (X said) (X (X Doug) (X (X Hammond) (X (X ,) (X (X the) (X (X federal) (X (X mediator) (X (X who) (X (X has) (X (X been) (X (X in) (X (X contact) (X (X with) (X (X both) (X (X sides) (X (X since) (X (X the) (X (X strike) (X (X began) (X .))))))))))))))))))))))))))))))))))))) (X (X the) (X (X investment) (X (X community) (X (X ,) (X (X for) (X (X one) (X (X ,) (X (X has) (X (X been) (X (X anticipating) (X (X a) (X (X speedy) (X (X resolution) (X .)))))))))))))) (X (X though) (X (X Boeing) (X (X 's) (X (X stock) (X (X price) (X (X was) (X (X battered) (X (X along) (X (X with) (X (X the) (X (X rest) (X (X of) (X (X the) (X (X market) (X (X Friday) (X (X ,) (X (X it) (X (X actually) (X (X has) (X (X risen) (X (X over) (X (X the) (X (X last) (X (X two) (X (X weeks) (X (X on) (X (X the) (X (X strength) (X (X of) (X (X new) (X (X orders) (X .)))))))))))))))))))))))))))))))) (X (X ``) (X (X The) (X (X market) (X (X has) (X (X taken) (X (X two) (X (X views) (X (X :) (X (X that) (X (X the) (X (X labor) (X (X situation) (X (X will) (X (X get) (X (X settled) (X (X in) (X (X the) (X (X short) (X (X term) (X (X and) (X (X that) (X (X things) (X (X look) (X (X very) (X (X rosy) (X (X for) (X (X Boeing) (X (X in) (X (X the) (X (X long) (X (X term) (X (X ,) (X (X '') (X (X said) (X (X Howard) (X (X Rubel) (X (X ,) (X (X an) (X (X analyst) (X (X at) (X (X Cyrus) (X (X J.) (X (X Lawrence) (X (X Inc) (X .))))))))))))))))))))))))))))))))))))))))))))) (X (X boeing) (X (X 's) (X (X shares) (X (X fell) (X (X $) (X (X 4) (X (X Friday) (X (X to) (X (X close) (X (X at) (X (X $) (X (X 57.375) (X (X in) (X (X composite) (X (X trading) (X (X on) (X (X the) (X (X New) (X (X York) (X (X Stock) (X (X Exchange) (X .)))))))))))))))))))))) (X (X but) (X (X Mr.) (X (X Baker) (X (X said) (X (X he) (X (X thinks) (X (X the) (X (X earliest) (X (X a) (X (X pact) (X (X could) (X (X be) (X (X struck) (X (X would) (X (X be) (X (X the) (X (X end) (X (X of) (X (X this) (X (X month) (X (X ,) (X (X hinting) (X (X that) (X (X the) (X (X company) (X (X and) (X (X union) (X (X may) (X (X resume) (X (X negotiations) (X (X as) (X (X early) (X (X as) (X (X this) (X (X week) (X .)))))))))))))))))))))))))))))))))))) (X (X still) (X (X ,) (X (X he) (X (X said) (X (X ,) (X (X it) (X (X 's) (X (X possible) (X (X that) (X (X the) (X (X strike) (X (X could) (X (X last) (X (X considerably) (X (X longer) (X .)))))))))))))))) (X (X ``) (X (X I) (X (X would) (X (X n't) (X (X expect) (X (X an) (X (X immediate) (X (X resolution) (X (X to) (X (X anything) (X (X .) (X '')))))))))))) (X (X last) (X (X week) (X (X ,) (X (X Boeing) (X (X Chairman) (X (X Frank) (X (X Shrontz) (X (X sent) (X (X striking) (X (X workers) (X (X a) (X (X letter) (X (X ,) (X (X saying) (X (X that) (X (X ``) (X (X to) (X (X my) (X (X knowledge) (X (X ,) (X (X Boeing) (X (X 's) (X (X offer) (X (X represents) (X (X the) (X (X best) (X (X overall) (X (X three-year) (X (X contract) (X (X of) (X (X any) (X (X major) (X (X U.S.) (X (X industrial) (X (X firm) (X (X in) (X (X recent) (X (X history) (X (X .) (X '')))))))))))))))))))))))))))))))))))))))) (X (X but) (X (X Mr.) (X (X Baker) (X (X called) (X (X the) (X (X letter) (X (X --) (X (X and) (X (X the) (X (X company) (X (X 's) (X (X offer) (X (X of) (X (X a) (X (X 10) (X (X %) (X (X wage) (X (X increase) (X (X over) (X (X the) (X (X life) (X (X of) (X (X the) (X (X pact) (X (X ,) (X (X plus) (X (X bonuses) (X (X --) (X (X ``) (X (X very) (X (X weak) (X (X .) (X ''))))))))))))))))))))))))))))))))) (X (X he) (X (X added) (X (X that) (X (X the) (X (X company) (X (X miscalculated) (X (X the) (X (X union) (X (X 's) (X (X resolve) (X (X and) (X (X the) (X (X workers) (X (X ') (X (X disgust) (X (X with) (X (X being) (X (X forced) (X (X to) (X (X work) (X (X many) (X (X hours) (X (X overtime) (X .)))))))))))))))))))))))) (X (X in) (X (X separate) (X (X developments) (X (X :) (X (X --) (X (X Talks) (X (X have) (X (X broken) (X (X off) (X (X between) (X (X Machinists) (X (X representatives) (X (X at) (X (X Lockheed) (X (X Corp.) (X (X and) (X (X the) (X (X Calabasas) (X (X ,) (X (X Calif.) (X (X ,) (X (X aerospace) (X (X company) (X .)))))))))))))))))))))))) (X (X the) (X (X union) (X (X is) (X (X continuing) (X (X to) (X (X work) (X (X through) (X (X its) (X (X expired) (X (X contract) (X (X ,) (X (X however) (X .))))))))))))) (X (X it) (X (X had) (X (X planned) (X (X a) (X (X strike) (X (X vote) (X (X for) (X (X next) (X (X Sunday) (X (X ,) (X (X but) (X (X that) (X (X has) (X (X been) (X (X pushed) (X (X back) (X (X indefinitely) (X .)))))))))))))))))) (X (X --) (X (X United) (X (X Auto) (X (X Workers) (X (X Local) (X (X 1069) (X (X ,) (X (X which) (X (X represents) (X (X 3,000) (X (X workers) (X (X at) (X (X Boeing) (X (X 's) (X (X helicopter) (X (X unit) (X (X in) (X (X Delaware) (X (X County) (X (X ,) (X (X Pa.) (X (X ,) (X (X said) (X (X it) (X (X agreed) (X (X to) (X (X extend) (X (X its) (X (X contract) (X (X on) (X (X a) (X (X day-by-day) (X (X basis) (X (X ,) (X (X with) (X (X a) (X (X 10-day) (X (X notification) (X (X to) (X (X cancel) (X (X ,) (X (X while) (X (X it) (X (X continues) (X (X bargaining) (X .)))))))))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X accord) (X (X expired) (X (X yesterday) (X .))))) (X (X --) (X (X And) (X (X Boeing) (X (X on) (X (X Friday) (X (X said) (X (X it) (X (X received) (X (X an) (X (X order) (X (X from) (X (X Martinair) (X (X Holland) (X (X for) (X (X four) (X (X model) (X (X 767-300) (X (X wide-body) (X (X jetliners) (X (X valued) (X (X at) (X (X a) (X (X total) (X (X of) (X (X about) (X (X $) (X (X 326) (X (X million) (X .))))))))))))))))))))))))))))) (X (X the) (X (X planes) (X (X ,) (X (X long) (X (X range) (X (X versions) (X (X of) (X (X the) (X (X medium-haul) (X (X twin-jet) (X (X ,) (X (X will) (X (X be) (X (X delivered) (X (X with) (X (X Pratt) (X (X &) (X (X Whitney) (X (X PW4060) (X (X engines) (X .))))))))))))))))))))) (X (X pratt) (X (X &) (X (X Whitney) (X (X is) (X (X a) (X (X unit) (X (X of) (X (X United) (X (X Technologies) (X (X Inc) (X .))))))))))) (X (X martinair) (X (X Holland) (X (X is) (X (X based) (X (X in) (X (X Amsterdam) (X .))))))) (X (X a) (X (X Boeing) (X (X spokeswoman) (X (X said) (X (X a) (X (X delivery) (X (X date) (X (X for) (X (X the) (X (X planes) (X (X is) (X (X still) (X (X being) (X (X worked) (X (X out) (X (X ``) (X (X for) (X (X a) (X (X variety) (X (X of) (X (X reasons) (X (X ,) (X (X but) (X (X not) (X (X because) (X (X of) (X (X the) (X (X strike) (X (X .) (X '')))))))))))))))))))))))))))))) (X (X bridget) (X (X O'Brian) (X (X contributed) (X (X to) (X (X this) (X (X article) (X .))))))) (X (X atco) (X (X Ltd.) (X (X said) (X (X its) (X (X utilities) (X (X arm) (X (X is) (X (X considering) (X (X building) (X (X new) (X (X electric) (X (X power) (X (X plants) (X (X ,) (X (X some) (X (X valued) (X (X at) (X (X more) (X (X than) (X (X one) (X (X billion) (X (X Canadian) (X (X dollars) (X (X -LRB-) (X (X US$) (X (X 851) (X (X million) (X (X -RRB-) (X (X ,) (X (X in) (X (X Great) (X (X Britain) (X (X and) (X (X elsewhere) (X .))))))))))))))))))))))))))))))))))) (X (X c.s.) (X (X Richardson) (X (X ,) (X (X Atco) (X (X 's) (X (X senior) (X (X vice) (X (X president) (X (X ,) (X (X finance) (X (X ,) (X (X said) (X (X its) (X (X 50.1%-owned) (X (X Canadian) (X (X Utilities) (X (X Ltd.) (X (X unit) (X (X is) (X (X reviewing) (X (X cogeneration) (X (X projects) (X (X in) (X (X eastern) (X (X Canada) (X (X ,) (X (X and) (X (X conventional) (X (X electric) (X (X power) (X (X generating) (X (X plants) (X (X elsewhere) (X (X ,) (X (X including) (X (X Britain) (X (X ,) (X (X where) (X (X the) (X (X British) (X (X government) (X (X plans) (X (X to) (X (X allow) (X (X limited) (X (X competition) (X (X in) (X (X electrical) (X (X generation) (X (X from) (X (X private-sector) (X (X suppliers) (X (X as) (X (X part) (X (X of) (X (X its) (X (X privatization) (X (X program) (X .))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X ``) (X (X The) (X (X projects) (X (X are) (X (X big) (X .)))))) (X (X they) (X (X can) (X (X be) (X (X C$) (X (X 1) (X (X billion) (X (X plus) (X (X ,) (X (X '') (X (X Mr.) (X (X Richardson) (X (X said) (X .))))))))))))) (X (X ``) (X (X But) (X (X we) (X (X would) (X (X n't) (X (X go) (X (X into) (X (X them) (X (X alone) (X (X ,) (X (X '') (X (X and) (X (X Canadian) (X (X Utilities) (X (X ') (X (X equity) (X (X stake) (X (X would) (X (X be) (X (X small) (X (X ,) (X (X he) (X (X said) (X .)))))))))))))))))))))))) (X (X ``) (X (X Ideally) (X (X ,) (X (X we) (X (X 'd) (X (X like) (X (X to) (X (X be) (X (X the) (X (X operator) (X (X -LCB-) (X (X of) (X (X the) (X (X project) (X (X -RCB-) (X (X and) (X (X a) (X (X modest) (X (X equity) (X (X investor) (X .))))))))))))))))))))) (X (X our) (X (X long) (X (X suit) (X (X is) (X (X our) (X (X proven) (X (X ability) (X (X to) (X (X operate) (X (X '') (X (X power) (X (X plants) (X (X ,) (X (X he) (X (X said) (X .)))))))))))))))) (X (X mr.) (X (X Richardson) (X (X would) (X (X n't) (X (X offer) (X (X specifics) (X (X regarding) (X (X Atco) (X (X 's) (X (X proposed) (X (X British) (X (X project) (X (X ,) (X (X but) (X (X he) (X (X said) (X (X it) (X (X would) (X (X compete) (X (X for) (X (X customers) (X (X with) (X (X two) (X (X huge) (X (X British) (X (X power) (X (X generating) (X (X companies) (X (X that) (X (X would) (X (X be) (X (X formed) (X (X under) (X (X the) (X (X country) (X (X 's) (X (X plan) (X (X to) (X (X privatize) (X (X its) (X (X massive) (X (X water) (X (X and) (X (X electric) (X (X utilities) (X .)))))))))))))))))))))))))))))))))))))))))))))) (X (X britain) (X (X 's) (X (X government) (X (X plans) (X (X to) (X (X raise) (X (X about) (X (X #) (X (X 20) (X (X billion) (X (X -LRB-) (X (X $) (X (X 31.05) (X (X billion) (X (X -RRB-) (X (X from) (X (X the) (X (X sale) (X (X of) (X (X most) (X (X of) (X (X its) (X (X giant) (X (X water) (X (X and) (X (X electric) (X (X utilities) (X (X ,) (X (X beginning) (X (X next) (X (X month) (X .)))))))))))))))))))))))))))))))) (X (X the) (X (X planned) (X (X electric) (X (X utility) (X (X sale) (X (X ,) (X (X scheduled) (X (X for) (X (X next) (X (X year) (X (X ,) (X (X is) (X (X alone) (X (X expected) (X (X to) (X (X raise) (X (X #) (X (X 13) (X (X billion) (X (X ,) (X (X making) (X (X it) (X (X the) (X (X world) (X (X 's) (X (X largest) (X (X public) (X (X offering) (X .))))))))))))))))))))))))))))) (X (X under) (X (X terms) (X (X of) (X (X the) (X (X plan) (X (X ,) (X (X independent) (X (X generators) (X (X would) (X (X be) (X (X able) (X (X to) (X (X compete) (X (X for) (X (X 15) (X (X %) (X (X of) (X (X customers) (X (X until) (X (X 1994) (X (X ,) (X (X and) (X (X for) (X (X another) (X (X 10) (X (X %) (X (X between) (X (X 1994) (X (X and) (X (X 1998) (X .))))))))))))))))))))))))))))))) (X (X canadian) (X (X Utilities) (X (X had) (X (X 1988) (X (X revenue) (X (X of) (X (X C$) (X (X 1.16) (X (X billion) (X (X ,) (X (X mainly) (X (X from) (X (X its) (X (X natural) (X (X gas) (X (X and) (X (X electric) (X (X utility) (X (X businesses) (X (X in) (X (X Alberta) (X (X ,) (X (X where) (X (X the) (X (X company) (X (X serves) (X (X about) (X (X 800,000) (X (X customers) (X .)))))))))))))))))))))))))))))) (X (X ``) (X (X There) (X (X seems) (X (X to) (X (X be) (X (X a) (X (X move) (X (X around) (X (X the) (X (X world) (X (X to) (X (X deregulate) (X (X the) (X (X generation) (X (X of) (X (X electricity) (X (X ,) (X (X '') (X (X Mr.) (X (X Richardson) (X (X said) (X (X ,) (X (X and) (X (X Canadian) (X (X Utilities) (X (X hopes) (X (X to) (X (X capitalize) (X (X on) (X (X it) (X .))))))))))))))))))))))))))))))) (X (X ``) (X (X This) (X (X is) (X (X a) (X (X real) (X (X thrust) (X (X on) (X (X our) (X (X utility) (X (X side) (X (X ,) (X (X '') (X (X he) (X (X said) (X (X ,) (X (X adding) (X (X that) (X (X Canadian) (X (X Utilities) (X (X is) (X (X also) (X (X mulling) (X (X projects) (X (X in) (X (X underdeveloped) (X (X countries) (X (X ,) (X (X though) (X (X he) (X (X would) (X (X be) (X (X specific) (X .))))))))))))))))))))))))))))))))) (X (X canadian) (X (X Utilities) (X (X is) (X (X n't) (X (X alone) (X (X in) (X (X exploring) (X (X power) (X (X generation) (X (X opportunities) (X (X in) (X (X Britain) (X (X ,) (X (X in) (X (X anticipation) (X (X of) (X (X the) (X (X privatization) (X (X program) (X .)))))))))))))))))))) (X (X ``) (X (X We) (X (X 're) (X (X certainly) (X (X looking) (X (X at) (X (X some) (X (X power) (X (X generating) (X (X projects) (X (X in) (X (X England) (X (X ,) (X (X '') (X (X said) (X (X Bruce) (X (X Stram) (X (X ,) (X (X vice) (X (X president) (X (X ,) (X (X corporate) (X (X strategy) (X (X and) (X (X corporate) (X (X planning) (X (X ,) (X (X with) (X (X Enron) (X (X Corp.) (X (X ,) (X (X Houston) (X (X ,) (X (X a) (X (X big) (X (X natural) (X (X gas) (X (X producer) (X (X and) (X (X pipeline) (X (X operator) (X .)))))))))))))))))))))))))))))))))))))))))) (X (X mr.) (X (X Stram) (X (X said) (X (X Enron) (X (X is) (X (X considering) (X (X building) (X (X gas-fired) (X (X power) (X (X plants) (X (X in) (X (X the) (X (X U.K.) (X (X capable) (X (X of) (X (X producing) (X (X about) (X (X 500) (X (X megawatts) (X (X of) (X (X power) (X (X at) (X (X a) (X (X cost) (X (X of) (X (X about) (X (X $) (X (X 300) (X (X million) (X (X to) (X (X $) (X (X 400) (X (X million) (X .)))))))))))))))))))))))))))))))))) (X (X pse) (X (X Inc.) (X (X said) (X (X it) (X (X expects) (X (X to) (X (X report) (X (X third) (X (X earnings) (X (X of) (X (X $) (X (X 1.3) (X (X million) (X (X to) (X (X $) (X (X 1.7) (X (X million) (X (X ,) (X (X or) (X (X 14) (X (X cents) (X (X to) (X (X 18) (X (X cents) (X (X a) (X (X share) (X .))))))))))))))))))))))))))) (X (X in) (X (X the) (X (X year-ago) (X (X quarter) (X (X ,) (X (X the) (X (X designer) (X (X and) (X (X operator) (X (X of) (X (X cogeneration) (X (X and) (X (X waste) (X (X heat) (X (X recovery) (X (X plants) (X (X had) (X (X net) (X (X income) (X (X of) (X (X $) (X (X 326,000) (X (X ,) (X (X or) (X (X four) (X (X cents) (X (X a) (X (X share) (X (X ,) (X (X on) (X (X revenue) (X (X of) (X (X about) (X (X $) (X (X 41.4) (X (X million) (X .))))))))))))))))))))))))))))))))))))) (X (X the) (X (X company) (X (X said) (X (X the) (X (X improvement) (X (X is) (X (X related) (X (X to) (X (X additional) (X (X cogeneration) (X (X facilities) (X (X that) (X (X have) (X (X been) (X (X put) (X (X into) (X (X operation) (X .)))))))))))))))))) (X (X concorde) (X (X trans-Atlantic) (X (X flights) (X (X are) (X (X $) (X (X 2,400) (X (X to) (X (X Paris) (X (X and) (X (X $) (X (X 3,200) (X (X to) (X (X London) (X .)))))))))))))) (X (X in) (X (X a) (X (X Centennial) (X (X Journal) (X (X article) (X (X Oct.) (X (X 5) (X (X ,) (X (X the) (X (X fares) (X (X were) (X (X reversed) (X .))))))))))))) (X (X diamond) (X (X Shamrock) (X (X Offshore) (X (X Partners) (X (X said) (X (X it) (X (X had) (X (X discovered) (X (X gas) (X (X offshore) (X (X Louisiana) (X .)))))))))))) (X (X the) (X (X well) (X (X flowed) (X (X at) (X (X a) (X (X rate) (X (X of) (X (X 2.016) (X (X million) (X (X cubic) (X (X feet) (X (X of) (X (X gas) (X (X a) (X (X day) (X (X through) (X (X a) (X (X 16) (X (X 64-inch) (X (X opening) (X (X at) (X (X depths) (X (X between) (X (X 5,782) (X (X and) (X (X 5,824) (X (X feet) (X .)))))))))))))))))))))))))))) (X (X diamond) (X (X Shamrock) (X (X is) (X (X the) (X (X operator) (X (X ,) (X (X with) (X (X a) (X (X 100) (X (X %) (X (X interest) (X (X in) (X (X the) (X (X well) (X .))))))))))))))) (X (X diamond) (X (X Shamrock) (X (X Offshore) (X (X 's) (X (X stock) (X (X rose) (X (X 12.5) (X (X cents) (X (X Friday) (X (X to) (X (X close) (X (X at) (X (X $) (X (X 8.25) (X (X in) (X (X New) (X (X York) (X (X Stock) (X (X Exchange) (X (X composite) (X (X trading) (X .)))))))))))))))))))))) (X (X kaufman) (X (X &) (X (X Broad) (X (X Home) (X (X Corp.) (X (X said) (X (X it) (X (X formed) (X (X a) (X (X $) (X (X 53.4) (X (X million) (X (X limited) (X (X partnership) (X (X subsidiary) (X (X to) (X (X buy) (X (X land) (X (X in) (X (X California) (X (X suitable) (X (X for) (X (X residential) (X (X development) (X .))))))))))))))))))))))))) (X (X the) (X (X partnership) (X (X ,) (X (X Kaufman) (X (X &) (X (X Broad) (X (X Land) (X (X Development) (X (X Venture) (X (X Limited) (X (X Partnership) (X (X ,) (X (X is) (X (X a) (X (X 50-50) (X (X joint) (X (X venture) (X (X with) (X (X a) (X (X trust) (X (X created) (X (X by) (X (X institutional) (X (X clients) (X (X of) (X (X Heitman) (X (X Advisory) (X (X Corp.) (X (X ,) (X (X a) (X (X unit) (X (X of) (X (X Heitman) (X (X Financial) (X (X Corp.) (X (X ,) (X (X a) (X (X real) (X (X estate) (X (X advisory) (X (X ,) (X (X management) (X (X and) (X (X development) (X (X company) (X (X with) (X (X offices) (X (X in) (X (X Chicago) (X (X and) (X (X Beverly) (X (X Hills) (X (X ,) (X (X Calif) (X .))))))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X kaufman) (X (X &) (X (X Broad) (X (X ,) (X (X a) (X (X home) (X (X building) (X (X company) (X (X ,) (X (X declined) (X (X to) (X (X identify) (X (X the) (X (X institutional) (X (X investors) (X .)))))))))))))))) (X (X the) (X (X land) (X (X to) (X (X be) (X (X purchased) (X (X by) (X (X the) (X (X joint) (X (X venture) (X (X has) (X (X n't) (X (X yet) (X (X received) (X (X zoning) (X (X and) (X (X other) (X (X approvals) (X (X required) (X (X for) (X (X development) (X (X ,) (X (X and) (X (X part) (X (X of) (X (X Kaufman) (X (X &) (X (X Broad) (X (X 's) (X (X job) (X (X will) (X (X be) (X (X to) (X (X obtain) (X (X such) (X (X approvals) (X .)))))))))))))))))))))))))))))))))))) (X (X the) (X (X partnership) (X (X runs) (X (X the) (X (X risk) (X (X that) (X (X it) (X (X may) (X (X not) (X (X get) (X (X the) (X (X approvals) (X (X for) (X (X development) (X (X ,) (X (X but) (X (X in) (X (X return) (X (X ,) (X (X it) (X (X can) (X (X buy) (X (X land) (X (X at) (X (X wholesale) (X (X rather) (X (X than) (X (X retail) (X (X prices) (X (X ,) (X (X which) (X (X can) (X (X result) (X (X in) (X (X sizable) (X (X savings) (X (X ,) (X (X said) (X (X Bruce) (X (X Karatz) (X (X ,) (X (X president) (X (X and) (X (X chief) (X (X executive) (X (X officer) (X (X of) (X (X Kaufman) (X (X &) (X (X Broad) (X .))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X ``) (X (X There) (X (X are) (X (X really) (X (X very) (X (X few) (X (X companies) (X (X that) (X (X have) (X (X adequate) (X (X capital) (X (X to) (X (X buy) (X (X properties) (X (X in) (X (X a) (X (X raw) (X (X state) (X (X for) (X (X cash) (X .))))))))))))))))))))) (X (X typically) (X (X ,) (X (X developers) (X (X option) (X (X property) (X (X ,) (X (X and) (X (X then) (X (X once) (X (X they) (X (X get) (X (X the) (X (X administrative) (X (X approvals) (X (X ,) (X (X they) (X (X buy) (X (X it) (X (X ,) (X (X '') (X (X said) (X (X Mr.) (X (X Karatz) (X (X ,) (X (X adding) (X (X that) (X (X he) (X (X believes) (X (X the) (X (X joint) (X (X venture) (X (X is) (X (X the) (X (X first) (X (X of) (X (X its) (X (X kind) (X .)))))))))))))))))))))))))))))))))))))) (X (X ``) (X (X We) (X (X usually) (X (X operate) (X (X in) (X (X that) (X (X conservative) (X (X manner) (X (X .) (X '')))))))))) (X (X by) (X (X setting) (X (X up) (X (X the) (X (X joint) (X (X venture) (X (X ,) (X (X Kaufman) (X (X &) (X (X Broad) (X (X can) (X (X take) (X (X the) (X (X more) (X (X aggressive) (X (X approach) (X (X of) (X (X buying) (X (X raw) (X (X land) (X (X ,) (X (X while) (X (X avoiding) (X (X the) (X (X negative) (X (X impacts) (X (X to) (X (X its) (X (X own) (X (X balance) (X (X sheet) (X (X ,) (X (X Mr.) (X (X Karatz) (X (X said) (X .)))))))))))))))))))))))))))))))))))) (X (X the) (X (X company) (X (X is) (X (X putting) (X (X up) (X (X only) (X (X 10) (X (X %) (X (X of) (X (X the) (X (X capital) (X (X ,) (X (X although) (X (X it) (X (X is) (X (X responsible) (X (X for) (X (X providing) (X (X management) (X (X ,) (X (X planning) (X (X and) (X (X processing) (X (X services) (X (X to) (X (X the) (X (X joint) (X (X venture) (X .))))))))))))))))))))))))))))) (X (X ``) (X (X This) (X (X is) (X (X one) (X (X of) (X (X the) (X (X best) (X (X ways) (X (X to) (X (X assure) (X (X a) (X (X pipeline) (X (X of) (X (X land) (X (X to) (X (X fuel) (X (X our) (X (X growth) (X (X at) (X (X a) (X (X minimum) (X (X risk) (X (X to) (X (X our) (X (X company) (X (X ,) (X (X '') (X (X Mr.) (X (X Karatz) (X (X said) (X .))))))))))))))))))))))))))))))) (X (X when) (X (X the) (X (X price) (X (X of) (X (X plastics) (X (X took) (X (X off) (X (X in) (X (X 1987) (X (X ,) (X (X Quantum) (X (X Chemical) (X (X Corp.) (X (X went) (X (X along) (X (X for) (X (X the) (X (X ride) (X .))))))))))))))))))) (X (X the) (X (X timing) (X (X of) (X (X Quantum) (X (X 's) (X (X chief) (X (X executive) (X (X officer) (X (X ,) (X (X John) (X (X Hoyt) (X (X Stookey) (X (X ,) (X (X appeared) (X (X to) (X (X be) (X (X nothing) (X (X less) (X (X than) (X (X inspired) (X (X ,) (X (X because) (X (X he) (X (X had) (X (X just) (X (X increased) (X (X Quantum) (X (X 's) (X (X reliance) (X (X on) (X (X plastics) (X .)))))))))))))))))))))))))))))))) (X (X the) (X (X company) (X (X outpaced) (X (X much) (X (X of) (X (X the) (X (X chemical) (X (X industry) (X (X as) (X (X annual) (X (X profit) (X (X grew) (X (X fivefold) (X (X in) (X (X two) (X (X years) (X .))))))))))))))))) (X (X mr.) (X (X Stookey) (X (X said) (X (X of) (X (X the) (X (X boom) (X (X ,) (X (X ``) (X (X It) (X (X 's) (X (X going) (X (X to) (X (X last) (X (X a) (X (X whole) (X (X lot) (X (X longer) (X (X than) (X (X anybody) (X (X thinks) (X (X .) (X '')))))))))))))))))))))) (X (X but) (X (X now) (X (X prices) (X (X have) (X (X nose-dived) (X (X and) (X (X Quantum) (X (X 's) (X (X profit) (X (X is) (X (X plummeting) (X .)))))))))))) (X (X some) (X (X securities) (X (X analysts) (X (X are) (X (X looking) (X (X for) (X (X no) (X (X better) (X (X than) (X (X break-even) (X (X results) (X (X from) (X (X the) (X (X company) (X (X for) (X (X the) (X (X third) (X (X quarter) (X (X ,) (X (X compared) (X (X with) (X (X year-earlier) (X (X profit) (X (X of) (X (X $) (X (X 99.8) (X (X million) (X (X ,) (X (X or) (X (X $) (X (X 3.92) (X (X a) (X (X share) (X (X ,) (X (X on) (X (X sales) (X (X of) (X (X $) (X (X 724.4) (X (X million) (X .))))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X stock) (X (X ,) (X (X having) (X (X lost) (X (X nearly) (X (X a) (X (X quarter) (X (X of) (X (X its) (X (X value) (X (X since) (X (X Sept.) (X (X 1) (X (X ,) (X (X closed) (X (X at) (X (X $) (X (X 34.375) (X (X share) (X (X ,) (X (X down) (X (X $) (X (X 1.125) (X (X ,) (X (X in) (X (X New) (X (X York) (X (X Stock) (X (X Exchange) (X (X composite) (X (X trading) (X (X Friday) (X .)))))))))))))))))))))))))))))))))) (X (X to) (X (X a) (X (X degree) (X (X ,) (X (X Quantum) (X (X represents) (X (X the) (X (X new) (X (X times) (X (X that) (X (X have) (X (X arrived) (X (X for) (X (X producers) (X (X of) (X (X the) (X (X so-called) (X (X commodity) (X (X plastics) (X (X that) (X (X pervade) (X (X modern) (X (X life) (X .)))))))))))))))))))))))) (X (X having) (X (X just) (X (X passed) (X (X through) (X (X one) (X (X of) (X (X the) (X (X most) (X (X profitable) (X (X periods) (X (X in) (X (X their) (X (X history) (X (X ,) (X (X these) (X (X producers) (X (X now) (X (X see) (X (X their) (X (X prices) (X (X eroding) (X .)))))))))))))))))))))) (X (X pricing) (X (X cycles) (X (X ,) (X (X to) (X (X be) (X (X sure) (X (X ,) (X (X are) (X (X nothing) (X (X new) (X (X for) (X (X plastics) (X (X producers) (X .)))))))))))))) (X (X and) (X (X the) (X (X financial) (X (X decline) (X (X of) (X (X some) (X (X looks) (X (X steep) (X (X only) (X (X in) (X (X comparison) (X (X with) (X (X the) (X (X heady) (X (X period) (X (X that) (X (X is) (X (X just) (X (X behind) (X (X them) (X .))))))))))))))))))))) (X (X ``) (X (X We) (X (X were) (X (X all) (X (X wonderful) (X (X heroes) (X (X last) (X (X year) (X (X ,) (X (X '') (X (X says) (X (X an) (X (X executive) (X (X at) (X (X one) (X (X of) (X (X Quantum) (X (X 's) (X (X competitors) (X .)))))))))))))))))))) (X (X ``) (X (X Now) (X (X we) (X (X 're) (X (X at) (X (X the) (X (X bottom) (X (X of) (X (X the) (X (X heap) (X (X .) (X '')))))))))))) (X (X at) (X (X Quantum) (X (X ,) (X (X which) (X (X is) (X (X based) (X (X in) (X (X New) (X (X York) (X (X ,) (X (X the) (X (X trouble) (X (X is) (X (X magnified) (X (X by) (X (X the) (X (X company) (X (X 's) (X (X heavy) (X (X dependence) (X (X on) (X (X plastics) (X .))))))))))))))))))))))) (X (X once) (X (X known) (X (X as) (X (X National) (X (X Distillers) (X (X &) (X (X Chemical) (X (X Corp.) (X (X ,) (X (X the) (X (X company) (X (X exited) (X (X the) (X (X wine) (X (X and) (X (X spirits) (X (X business) (X (X and) (X (X plowed) (X (X more) (X (X of) (X (X its) (X (X resources) (X (X into) (X (X plastics) (X (X after) (X (X Mr.) (X (X Stookey) (X (X took) (X (X the) (X (X chief) (X (X executive) (X (X 's) (X (X job) (X (X in) (X (X 1986) (X .))))))))))))))))))))))))))))))))))))) (X (X mr.) (X (X Stookey) (X (X ,) (X (X 59) (X (X years) (X (X old) (X (X ,) (X (X declined) (X (X to) (X (X be) (X (X interviewed) (X (X for) (X (X this) (X (X article) (X (X ,) (X (X but) (X (X he) (X (X has) (X (X consistently) (X (X argued) (X (X that) (X (X over) (X (X the) (X (X long) (X (X haul) (X (X --) (X (X across) (X (X both) (X (X the) (X (X peaks) (X (X and) (X (X the) (X (X troughs) (X (X of) (X (X the) (X (X plastics) (X (X market) (X (X --) (X (X Quantum) (X (X will) (X (X prosper) (X (X through) (X (X its) (X (X new) (X (X direction) (X .)))))))))))))))))))))))))))))))))))))))))))))) (X (X quantum) (X (X 's) (X (X lot) (X (X is) (X (X mostly) (X (X tied) (X (X to) (X (X polyethylene) (X (X resin) (X (X ,) (X (X used) (X (X to) (X (X make) (X (X garbage) (X (X bags) (X (X ,) (X (X milk) (X (X jugs) (X (X ,) (X (X housewares) (X (X ,) (X (X toys) (X (X and) (X (X meat) (X (X packaging) (X (X ,) (X (X among) (X (X other) (X (X items) (X .)))))))))))))))))))))))))))))) (X (X in) (X (X the) (X (X U.S.) (X (X polyethylene) (X (X market) (X (X ,) (X (X Quantum) (X (X has) (X (X claimed) (X (X the) (X (X largest) (X (X share) (X (X ,) (X (X about) (X (X 20) (X (X %) (X .))))))))))))))))) (X (X but) (X (X its) (X (X competitors) (X (X --) (X (X including) (X (X Dow) (X (X Chemical) (X (X Co.) (X (X ,) (X (X Union) (X (X Carbide) (X (X Corp.) (X (X and) (X (X several) (X (X oil) (X (X giants) (X (X --) (X (X have) (X (X much) (X (X broader) (X (X business) (X (X interests) (X (X and) (X (X so) (X (X are) (X (X better) (X (X cushioned) (X (X against) (X (X price) (X (X swings) (X .))))))))))))))))))))))))))))))) (X (X when) (X (X the) (X (X price) (X (X of) (X (X polyethylene) (X (X moves) (X (X a) (X (X mere) (X (X penny) (X (X a) (X (X pound) (X (X ,) (X (X Quantum) (X (X 's) (X (X annual) (X (X profit) (X (X fluctuates) (X (X by) (X (X about) (X (X 85) (X (X cents) (X (X a) (X (X share) (X (X ,) (X (X provided) (X (X no) (X (X other) (X (X variables) (X (X are) (X (X changing) (X .))))))))))))))))))))))))))))))) (X (X in) (X (X recent) (X (X months) (X (X the) (X (X price) (X (X of) (X (X polyethylene) (X (X ,) (X (X even) (X (X more) (X (X than) (X (X that) (X (X of) (X (X other) (X (X commodity) (X (X plastics) (X (X ,) (X (X has) (X (X taken) (X (X a) (X (X dive) (X .)))))))))))))))))))))) (X (X benchmark) (X (X grades) (X (X ,) (X (X which) (X (X still) (X (X sold) (X (X for) (X (X as) (X (X much) (X (X as) (X (X 50) (X (X cents) (X (X a) (X (X pound) (X (X last) (X (X spring) (X (X ,) (X (X have) (X (X skidded) (X (X to) (X (X between) (X (X 35) (X (X cents) (X (X and) (X (X 40) (X (X cents) (X .))))))))))))))))))))))))))) (X (X meanwhile) (X (X ,) (X (X the) (X (X price) (X (X of) (X (X ethylene) (X (X ,) (X (X the) (X (X chemical) (X (X building) (X (X block) (X (X of) (X (X polyethylene) (X (X ,) (X (X has) (X (X n't) (X (X dropped) (X (X nearly) (X (X so) (X (X fast) (X .))))))))))))))))))))) (X (X that) (X (X discrepancy) (X (X hurts) (X (X Quantum) (X (X badly) (X (X ,) (X (X because) (X (X its) (X (X own) (X (X plants) (X (X cover) (X (X only) (X (X about) (X (X half) (X (X of) (X (X its) (X (X ethylene) (X (X needs) (X .))))))))))))))))))) (X (X by) (X (X many) (X (X accounts) (X (X ,) (X (X an) (X (X early) (X (X hint) (X (X of) (X (X a) (X (X price) (X (X rout) (X (X in) (X (X the) (X (X making) (X (X came) (X (X at) (X (X the) (X (X start) (X (X of) (X (X this) (X (X year) (X .)))))))))))))))))))))) (X (X china) (X (X ,) (X (X which) (X (X had) (X (X been) (X (X putting) (X (X in) (X (X huge) (X (X orders) (X (X for) (X (X polyethylene) (X (X ,) (X (X abruptly) (X (X halted) (X (X them) (X .)))))))))))))))) (X (X calculating) (X (X that) (X (X excess) (X (X polyethylene) (X (X would) (X (X soon) (X (X be) (X (X sloshing) (X (X around) (X (X the) (X (X world) (X (X ,) (X (X other) (X (X buyers) (X (X then) (X (X bet) (X (X that) (X (X prices) (X (X had) (X (X peaked) (X (X and) (X (X so) (X (X began) (X (X to) (X (X draw) (X (X down) (X (X inventories) (X (X rather) (X (X than) (X (X order) (X (X new) (X (X product) (X .))))))))))))))))))))))))))))))))) (X (X kenneth) (X (X Mitchell) (X (X ,) (X (X director) (X (X of) (X (X Dow) (X (X 's) (X (X polyethylene) (X (X business) (X (X ,) (X (X says) (X (X producers) (X (X were) (X (X surprised) (X (X to) (X (X learn) (X (X how) (X (X much) (X (X inventories) (X (X had) (X (X swelled) (X (X throughout) (X (X the) (X (X distribution) (X (X chain) (X (X as) (X (X prices) (X (X spiraled) (X (X up) (X .)))))))))))))))))))))))))))))) (X (X ``) (X (X People) (X (X were) (X (X even) (X (X hoarding) (X (X bags) (X (X ,) (X (X '') (X (X he) (X (X says) (X .))))))))))) (X (X now) (X (X producers) (X (X hope) (X (X prices) (X (X have) (X (X hit) (X (X bottom) (X .)))))))) (X (X they) (X (X recently) (X (X announced) (X (X increases) (X (X of) (X (X a) (X (X few) (X (X cents) (X (X a) (X (X pound) (X (X to) (X (X take) (X (X effect) (X (X in) (X (X the) (X (X next) (X (X several) (X (X weeks) (X .))))))))))))))))))) (X (X no) (X (X one) (X (X knows) (X (X ,) (X (X however) (X (X ,) (X (X whether) (X (X the) (X (X new) (X (X posted) (X (X prices) (X (X will) (X (X stick) (X (X once) (X (X producers) (X (X and) (X (X customers) (X (X start) (X (X to) (X (X haggle) (X .))))))))))))))))))))) (X (X one) (X (X doubter) (X (X is) (X (X George) (X (X Krug) (X (X ,) (X (X a) (X (X chemical-industry) (X (X analyst) (X (X at) (X (X Oppenheimer) (X (X &) (X (X Co.) (X (X and) (X (X a) (X (X bear) (X (X on) (X (X plastics) (X (X stocks) (X .)))))))))))))))))))) (X (X noting) (X (X others) (X (X ') (X (X estimates) (X (X of) (X (X when) (X (X price) (X (X increases) (X (X can) (X (X be) (X (X sustained) (X (X ,) (X (X he) (X (X remarks) (X (X ,) (X (X ``) (X (X Some) (X (X say) (X (X October) (X .)))))))))))))))))))) (X (X some) (X (X say) (X (X November) (X .)))) (X (X i) (X (X say) (X (X 1992) (X (X .) (X ''))))) (X (X he) (X (X argues) (X (X that) (X (X efforts) (X (X to) (X (X firm) (X (X up) (X (X prices) (X (X will) (X (X be) (X (X undermined) (X (X by) (X (X producers) (X (X ') (X (X plans) (X (X to) (X (X expand) (X (X production) (X (X capacity) (X .)))))))))))))))))))) (X (X a) (X (X quick) (X (X turnaround) (X (X is) (X (X crucial) (X (X to) (X (X Quantum) (X (X because) (X (X its) (X (X cash) (X (X requirements) (X (X remain) (X (X heavy) (X .)))))))))))))) (X (X the) (X (X company) (X (X is) (X (X trying) (X (X to) (X (X carry) (X (X out) (X (X a) (X (X three-year) (X (X ,) (X (X $) (X (X 1.3) (X (X billion) (X (X plant-expansion) (X (X program) (X (X started) (X (X this) (X (X year) (X .))))))))))))))))))) (X (X at) (X (X the) (X (X same) (X (X time) (X (X ,) (X (X its) (X (X annual) (X (X payments) (X (X on) (X (X long-term) (X (X debt) (X (X will) (X (X more) (X (X than) (X (X double) (X (X from) (X (X a) (X (X year) (X (X ago) (X (X to) (X (X about) (X (X $) (X (X 240) (X (X million) (X (X ,) (X (X largely) (X (X because) (X (X of) (X (X debt) (X (X taken) (X (X on) (X (X to) (X (X pay) (X (X a) (X (X $) (X (X 50-a-share) (X (X special) (X (X dividend) (X (X earlier) (X (X this) (X (X year) (X .)))))))))))))))))))))))))))))))))))))))))) (X (X quantum) (X (X described) (X (X the) (X (X payout) (X (X at) (X (X the) (X (X time) (X (X as) (X (X a) (X (X way) (X (X for) (X (X it) (X (X to) (X (X share) (X (X the) (X (X bonanza) (X (X with) (X (X its) (X (X holders) (X (X ,) (X (X because) (X (X its) (X (X stock) (X (X price) (X (X was) (X (X n't) (X (X reflecting) (X (X the) (X (X huge) (X (X profit) (X (X increases) (X .)))))))))))))))))))))))))))))))) (X (X some) (X (X analysts) (X (X saw) (X (X the) (X (X payment) (X (X as) (X (X an) (X (X effort) (X (X also) (X (X to) (X (X dispel) (X (X takeover) (X (X speculation) (X .)))))))))))))) (X (X whether) (X (X a) (X (X cash) (X (X crunch) (X (X might) (X (X eventually) (X (X force) (X (X the) (X (X company) (X (X to) (X (X cut) (X (X its) (X (X quarterly) (X (X dividend) (X (X ,) (X (X raised) (X (X 36) (X (X %) (X (X to) (X (X 75) (X (X cents) (X (X a) (X (X share) (X (X only) (X (X a) (X (X year) (X (X ago) (X (X ,) (X (X has) (X (X become) (X (X a) (X (X topic) (X (X of) (X (X intense) (X (X speculation) (X (X on) (X (X Wall) (X (X Street) (X (X since) (X (X Mr.) (X (X Stookey) (X (X deflected) (X (X dividend) (X (X questions) (X (X in) (X (X a) (X (X Sept.) (X (X 29) (X (X meeting) (X (X with) (X (X analysts) (X .)))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X some) (X (X viewed) (X (X his) (X (X response) (X (X --) (X (X that) (X (X company) (X (X directors) (X (X review) (X (X the) (X (X dividend) (X (X regularly) (X (X --) (X (X as) (X (X nothing) (X (X more) (X (X than) (X (X the) (X (X standard) (X (X line) (X (X from) (X (X executives) (X .))))))))))))))))))))))) (X (X but) (X (X others) (X (X came) (X (X away) (X (X thinking) (X (X he) (X (X had) (X (X given) (X (X something) (X (X less) (X (X than) (X (X his) (X (X usual) (X (X straight-from-the-shoulder) (X (X performance) (X .)))))))))))))))) (X (X in) (X (X any) (X (X case) (X (X ,) (X (X on) (X (X the) (X (X day) (X (X of) (X (X the) (X (X meeting) (X (X ,) (X (X Quantum) (X (X 's) (X (X shares) (X (X slid) (X (X $) (X (X 2.625) (X (X to) (X (X $) (X (X 36.625) (X (X in) (X (X Big) (X (X Board) (X (X trading) (X .))))))))))))))))))))))))) (X (X on) (X (X top) (X (X of) (X (X everything) (X (X else) (X (X ,) (X (X Quantum) (X (X confronts) (X (X a) (X (X disaster) (X (X at) (X (X its) (X (X plant) (X (X in) (X (X Morris) (X (X ,) (X (X Ill) (X .)))))))))))))))))) (X (X after) (X (X an) (X (X explosion) (X (X idled) (X (X the) (X (X plant) (X (X in) (X (X June) (X (X ,) (X (X the) (X (X company) (X (X progressed) (X (X in) (X (X September) (X (X to) (X (X within) (X (X 12) (X (X hours) (X (X of) (X (X completing) (X (X the) (X (X drawn-out) (X (X process) (X (X of) (X (X restarting) (X (X it) (X .))))))))))))))))))))))))))) (X (X then) (X (X a) (X (X second) (X (X explosion) (X (X occurred) (X .)))))) (X (X two) (X (X workers) (X (X died) (X (X and) (X (X six) (X (X remain) (X (X in) (X (X the) (X (X hospital) (X .)))))))))) (X (X this) (X (X human) (X (X toll) (X (X adds) (X (X the) (X (X most) (X (X painful) (X (X dimension) (X (X yet) (X (X to) (X (X the) (X (X sudden) (X (X change) (X (X in) (X (X Quantum) (X (X 's) (X (X fortunes) (X .)))))))))))))))))) (X (X until) (X (X this) (X (X year) (X (X ,) (X (X the) (X (X company) (X (X had) (X (X been) (X (X steadily) (X (X lowering) (X (X its) (X (X accident) (X (X rate) (X (X and) (X (X picking) (X (X up) (X (X trade-group) (X (X safety) (X (X awards) (X .)))))))))))))))))))) (X (X a) (X (X prolonged) (X (X production) (X (X halt) (X (X at) (X (X the) (X (X plant) (X (X could) (X (X introduce) (X (X another) (X (X imponderable) (X (X into) (X (X Quantum) (X (X 's) (X (X financial) (X (X future) (X .))))))))))))))))) (X (X when) (X (X a) (X (X plant) (X (X has) (X (X just) (X (X been) (X (X running) (X (X flat) (X (X out) (X (X to) (X (X meet) (X (X demand) (X (X ,) (X (X calculating) (X (X lost) (X (X profit) (X (X and) (X (X thus) (X (X claims) (X (X under) (X (X business-interruption) (X (X insurance) (X (X is) (X (X straightforward) (X .))))))))))))))))))))))))) (X (X but) (X (X the) (X (X numbers) (X (X become) (X (X trickier) (X (X --) (X (X and) (X (X subject) (X (X to) (X (X dickering) (X (X between) (X (X insured) (X (X and) (X (X insurer) (X (X --) (X (X when) (X (X demand) (X (X is) (X (X shifting) (X .)))))))))))))))))))) (X (X ``) (X (X You) (X (X say) (X (X you) (X (X could) (X (X have) (X (X sold) (X (X X) (X (X percent) (X (X of) (X (X this) (X (X product) (X (X and) (X (X Y) (X (X percent) (X (X of) (X (X that) (X (X ,) (X (X '') (X (X recalls) (X (X Theodore) (X (X Semegran) (X (X ,) (X (X an) (X (X analyst) (X (X at) (X (X Shearson) (X (X Lehman) (X (X Hutton) (X (X who) (X (X went) (X (X through) (X (X this) (X (X exercise) (X (X during) (X (X his) (X (X former) (X (X career) (X (X as) (X (X a) (X (X chemical) (X (X engineer) (X .))))))))))))))))))))))))))))))))))))))))))) (X (X ``) (X (X And) (X (X then) (X (X you) (X (X still) (X (X have) (X (X to) (X (X negotiate) (X (X .) (X '')))))))))) (X (X quantum) (X (X hopes) (X (X the) (X (X Morris) (X (X plant) (X (X ,) (X (X where) (X (X limited) (X (X production) (X (X got) (X (X under) (X (X way) (X (X last) (X (X week) (X (X ,) (X (X will) (X (X resume) (X (X full) (X (X operation) (X (X by) (X (X year) (X (X 's) (X (X end) (X .)))))))))))))))))))))))) (X (X the) (X (X plant) (X (X usually) (X (X accounts) (X (X for) (X (X 20) (X (X %) (X (X to) (X (X 25) (X (X %) (X (X of) (X (X Quantum) (X (X 's) (X (X polyethylene) (X (X production) (X (X and) (X (X 50) (X (X %) (X (X of) (X (X its) (X (X ethylene) (X (X production) (X .))))))))))))))))))))))) (X (X not) (X (X everything) (X (X looks) (X (X grim) (X (X for) (X (X Quantum) (X .))))))) (X (X the) (X (X plant) (X (X expansion) (X (X should) (X (X strengthen) (X (X the) (X (X company) (X (X 's) (X (X sway) (X (X in) (X (X the) (X (X polyethylene) (X (X business) (X (X ,) (X (X where) (X (X market) (X (X share) (X (X is) (X (X often) (X (X taken) (X (X through) (X (X sheer) (X (X capacity) (X .)))))))))))))))))))))))) (X (X by) (X (X lifting) (X (X ethylene) (X (X production) (X (X ,) (X (X the) (X (X expansion) (X (X will) (X (X also) (X (X lower) (X (X the) (X (X company) (X (X 's) (X (X raw) (X (X material) (X (X costs) (X .))))))))))))))))) (X (X quantum) (X (X is) (X (X also) (X (X tightening) (X (X its) (X (X grip) (X (X on) (X (X its) (X (X one) (X (X large) (X (X business) (X (X outside) (X (X chemicals) (X (X ,) (X (X propane) (X (X marketing) (X .))))))))))))))))) (X (X through) (X (X a) (X (X venture) (X (X with) (X (X its) (X (X investment) (X (X banker) (X (X ,) (X (X First) (X (X Boston) (X (X Corp.) (X (X ,) (X (X Quantum) (X (X completed) (X (X in) (X (X August) (X (X an) (X (X acquisition) (X (X of) (X (X Petrolane) (X (X Inc.) (X (X in) (X (X a) (X (X transaction) (X (X valued) (X (X at) (X (X $) (X (X 1.18) (X (X billion) (X .)))))))))))))))))))))))))))))) (X (X petrolane) (X (X is) (X (X the) (X (X second-largest) (X (X propane) (X (X distributor) (X (X in) (X (X the) (X (X U.S.) (X .)))))))))) (X (X the) (X (X largest) (X (X ,) (X (X Suburban) (X (X Propane) (X (X ,) (X (X was) (X (X already) (X (X owned) (X (X by) (X (X Quantum) (X .)))))))))))) (X (X still) (X (X ,) (X (X Quantum) (X (X has) (X (X a) (X (X crisis) (X (X to) (X (X get) (X (X past) (X (X right) (X (X now) (X .)))))))))))) (X (X some) (X (X analysts) (X (X speculate) (X (X the) (X (X weakening) (X (X stock) (X (X may) (X (X yet) (X (X attract) (X (X a) (X (X suitor) (X .)))))))))))) (X (X the) (X (X name) (X (X surfacing) (X (X in) (X (X rumors) (X (X is) (X (X British) (X (X Petroleum) (X (X Co.) (X (X ,) (X (X which) (X (X is) (X (X looking) (X (X to) (X (X expand) (X (X its) (X (X polyethylene) (X (X business) (X (X in) (X (X the) (X (X U.S.) (X .)))))))))))))))))))))) (X (X asked) (X (X about) (X (X a) (X (X bid) (X (X for) (X (X Quantum) (X (X ,) (X (X a) (X (X BP) (X (X spokesman) (X (X says) (X (X ,) (X (X ``) (X (X We) (X (X pretty) (X (X much) (X (X have) (X (X a) (X (X policy) (X (X of) (X (X not) (X (X commenting) (X (X on) (X (X rumors) (X (X ,) (X (X and) (X (X I) (X (X think) (X (X that) (X (X falls) (X (X in) (X (X that) (X (X category) (X .)))))))))))))))))))))))))))))))))) (X (X rjr) (X (X Nabisco) (X (X Inc.) (X (X is) (X (X disbanding) (X (X its) (X (X division) (X (X responsible) (X (X for) (X (X buying) (X (X network) (X (X advertising) (X (X time) (X (X ,) (X (X just) (X (X a) (X (X month) (X (X after) (X (X moving) (X (X 11) (X (X of) (X (X the) (X (X group) (X (X 's) (X (X 14) (X (X employees) (X (X to) (X (X New) (X (X York) (X (X from) (X (X Atlanta) (X .)))))))))))))))))))))))))))))))) (X (X a) (X (X spokesman) (X (X for) (X (X the) (X (X New) (X (X York-based) (X (X food) (X (X and) (X (X tobacco) (X (X giant) (X (X ,) (X (X taken) (X (X private) (X (X earlier) (X (X this) (X (X year) (X (X in) (X (X a) (X (X $) (X (X 25) (X (X billion) (X (X leveraged) (X (X buy-out) (X (X by) (X (X Kohlberg) (X (X Kravis) (X (X Roberts) (X (X &) (X (X Co.) (X (X ,) (X (X confirmed) (X (X that) (X (X it) (X (X is) (X (X shutting) (X (X down) (X (X the) (X (X RJR) (X (X Nabisco) (X (X Broadcast) (X (X unit) (X (X ,) (X (X and) (X (X dismissing) (X (X its) (X (X 14) (X (X employees) (X (X ,) (X (X in) (X (X a) (X (X move) (X (X to) (X (X save) (X (X money) (X .))))))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X spokesman) (X (X said) (X (X RJR) (X (X is) (X (X discussing) (X (X its) (X (X network-buying) (X (X plans) (X (X with) (X (X its) (X (X two) (X (X main) (X (X advertising) (X (X firms) (X (X ,) (X (X FCB\/Leber) (X (X Katz) (X (X and) (X (X McCann) (X (X Erickson) (X .)))))))))))))))))))))) (X (X ``) (X (X We) (X (X found) (X (X with) (X (X the) (X (X size) (X (X of) (X (X our) (X (X media) (X (X purchases) (X (X that) (X (X an) (X (X ad) (X (X agency) (X (X could) (X (X do) (X (X just) (X (X as) (X (X good) (X (X a) (X (X job) (X (X at) (X (X significantly) (X (X lower) (X (X cost) (X (X ,) (X (X '') (X (X said) (X (X the) (X (X spokesman) (X (X ,) (X (X who) (X (X declined) (X (X to) (X (X specify) (X (X how) (X (X much) (X (X RJR) (X (X spends) (X (X on) (X (X network) (X (X television) (X (X time) (X .)))))))))))))))))))))))))))))))))))))))))))) (X (X an) (X (X executive) (X (X close) (X (X to) (X (X the) (X (X company) (X (X said) (X (X RJR) (X (X is) (X (X spending) (X (X about) (X (X $) (X (X 140) (X (X million) (X (X on) (X (X network) (X (X television) (X (X time) (X (X this) (X (X year) (X (X ,) (X (X down) (X (X from) (X (X roughly) (X (X $) (X (X 200) (X (X million) (X (X last) (X (X year) (X .)))))))))))))))))))))))))))))) (X (X the) (X (X spokesman) (X (X said) (X (X the) (X (X broadcast) (X (X unit) (X (X will) (X (X be) (X (X disbanded) (X (X Dec.) (X (X 1) (X (X ,) (X (X and) (X (X the) (X (X move) (X (X wo) (X (X n't) (X (X affect) (X (X RJR) (X (X 's) (X (X print) (X (X ,) (X (X radio) (X (X and) (X (X spot-television) (X (X buying) (X (X practices) (X .)))))))))))))))))))))))))))) (X (X the) (X (X broadcast) (X (X group) (X (X had) (X (X been) (X (X based) (X (X in) (X (X New) (X (X York) (X (X until) (X (X a) (X (X year) (X (X ago) (X (X ,) (X (X when) (X (X RJR) (X (X 's) (X (X previous) (X (X management) (X (X moved) (X (X it) (X (X to) (X (X Atlanta) (X (X ,) (X (X the) (X (X company) (X (X 's) (X (X headquarters) (X (X before) (X (X this) (X (X summer) (X .)))))))))))))))))))))))))))))))) (X (X one) (X (X employee) (X (X with) (X (X the) (X (X group) (X (X said) (X (X RJR) (X (X moved) (X (X 11) (X (X employees) (X (X of) (X (X the) (X (X group) (X (X back) (X (X to) (X (X New) (X (X York) (X (X in) (X (X September) (X (X because) (X (X ``) (X (X there) (X (X was) (X (X supposed) (X (X to) (X (X be) (X (X a) (X (X future) (X (X .) (X '')))))))))))))))))))))))))))))) (X (X he) (X (X said) (X (X the) (X (X company) (X (X hired) (X (X three) (X (X more) (X (X buyers) (X (X for) (X (X the) (X (X unit) (X (X within) (X (X the) (X (X past) (X (X two) (X (X weeks) (X (X ,) (X (X wooing) (X (X them) (X (X from) (X (X jobs) (X (X with) (X (X advertising) (X (X agencies) (X .))))))))))))))))))))))))) (X (X the) (X (X RJR) (X (X spokesman) (X (X said) (X (X the) (X (X company) (X (X moved) (X (X the) (X (X 11) (X (X employees) (X (X to) (X (X New) (X (X York) (X (X last) (X (X month) (X (X because) (X (X the) (X (X group) (X (X had) (X (X then) (X (X been) (X (X in) (X (X the) (X (X midst) (X (X of) (X (X purchasing) (X (X ad) (X (X time) (X (X for) (X (X the) (X (X networks) (X (X ') (X (X upcoming) (X (X season) (X .))))))))))))))))))))))))))))))))))) (X (X ``) (X (X The) (X (X studies) (X (X -LCB-) (X (X on) (X (X closing) (X (X the) (X (X unit) (X (X -RCB-) (X (X could) (X (X n't) (X (X be) (X (X completed) (X (X until) (X (X now) (X (X ,) (X (X '') (X (X he) (X (X said) (X .)))))))))))))))))))) (X (X the) (X (X group) (X (X 's) (X (X president) (X (X ,) (X (X Peter) (X (X Chrisanthopoulos) (X (X ,) (X (X was) (X (X n't) (X (X in) (X (X his) (X (X office) (X (X Friday) (X (X afternoon) (X (X to) (X (X comment) (X .)))))))))))))))))) (X (X the) (X (X U.S.) (X (X ,) (X (X which) (X (X is) (X (X finalizing) (X (X its) (X (X steel-import) (X (X quotas) (X (X ,) (X (X is) (X (X allocating) (X (X a) (X (X larger) (X (X share) (X (X of) (X (X its) (X (X steel) (X (X market) (X (X to) (X (X developing) (X (X and) (X (X newly) (X (X industrialized) (X (X countries) (X (X which) (X (X have) (X (X relatively) (X (X unsubsidized) (X (X steel) (X (X industries) (X .)))))))))))))))))))))))))))))))) (X (X meanwhile) (X (X ,) (X (X the) (X (X U.S.) (X (X has) (X (X negotiated) (X (X a) (X (X significant) (X (X cut) (X (X in) (X (X Japan) (X (X 's) (X (X steel) (X (X quota) (X (X ,) (X (X and) (X (X made) (X (X only) (X (X a) (X (X minor) (X (X increase) (X (X to) (X (X the) (X (X steel) (X (X allotment) (X (X for) (X (X the) (X (X European) (X (X Community) (X .)))))))))))))))))))))))))))))) (X (X brazil) (X (X ,) (X (X similar) (X (X to) (X (X Mexico) (X (X and) (X (X South) (X (X Korea) (X (X ,) (X (X is) (X (X expected) (X (X to) (X (X negotiate) (X (X a) (X (X somewhat) (X (X bigger) (X (X share) (X (X of) (X (X the) (X (X U.S.) (X (X market) (X (X than) (X (X it) (X (X had) (X (X under) (X (X the) (X (X previous) (X (X five-year) (X (X steel) (X (X quotas) (X (X ,) (X (X which) (X (X expired) (X (X Sept.) (X (X 30) (X .)))))))))))))))))))))))))))))))))))) (X (X brazil) (X (X and) (X (X Venezuela) (X (X are) (X (X the) (X (X only) (X (X two) (X (X countries) (X (X that) (X (X have) (X (X n't) (X (X completed) (X (X steel) (X (X talks) (X (X with) (X (X the) (X (X U.S.) (X (X for) (X (X the) (X (X year) (X (X ending) (X (X Oct.) (X (X 1) (X (X ,) (X (X 1990) (X .)))))))))))))))))))))))))) (X (X in) (X (X recent) (X (X years) (X (X ,) (X (X U.S.) (X (X steelmakers) (X (X have) (X (X supplied) (X (X about) (X (X 80) (X (X %) (X (X of) (X (X the) (X (X 100) (X (X million) (X (X tons) (X (X of) (X (X steel) (X (X used) (X (X annually) (X (X by) (X (X the) (X (X nation) (X .)))))))))))))))))))))))) (X (X of) (X (X the) (X (X remaining) (X (X 20) (X (X %) (X (X needed) (X (X ,) (X (X the) (X (X steel-quota) (X (X negotiations) (X (X allocate) (X (X about) (X (X 15) (X (X %) (X (X to) (X (X foreign) (X (X suppliers) (X (X ,) (X (X with) (X (X the) (X (X difference) (X (X supplied) (X (X mainly) (X (X by) (X (X Canada) (X (X --) (X (X which) (X (X is) (X (X n't) (X (X included) (X (X in) (X (X the) (X (X quota) (X (X program) (X .))))))))))))))))))))))))))))))))))) (X (X other) (X (X countries) (X (X that) (X (X do) (X (X n't) (X (X have) (X (X formal) (X (X steel) (X (X quotas) (X (X with) (X (X the) (X (X U.S.) (X (X ,) (X (X such) (X (X as) (X (X Taiwan) (X (X ,) (X (X Sweden) (X (X and) (X (X Argentina) (X (X ,) (X (X also) (X (X have) (X (X supplied) (X (X steel) (X .)))))))))))))))))))))))))) (X (X some) (X (X of) (X (X these) (X (X countries) (X (X have) (X (X in) (X (X recent) (X (X years) (X (X made) (X (X informal) (X (X agreements) (X (X with) (X (X the) (X (X U.S.) (X (X that) (X (X are) (X (X similar) (X (X to) (X (X quotas) (X .)))))))))))))))))))) (X (X the) (X (X Bush) (X (X administration) (X (X earlier) (X (X this) (X (X year) (X (X said) (X (X it) (X (X would) (X (X extend) (X (X steel) (X (X quotas) (X (X ,) (X (X known) (X (X as) (X (X voluntary) (X (X restraint) (X (X agreements) (X (X ,) (X (X until) (X (X March) (X (X 31) (X (X ,) (X (X 1992) (X .))))))))))))))))))))))))) (X (X it) (X (X also) (X (X said) (X (X it) (X (X would) (X (X use) (X (X that) (X (X two-and-a-half) (X (X year) (X (X period) (X (X to) (X (X work) (X (X toward) (X (X an) (X (X international) (X (X consensus) (X (X on) (X (X freeing) (X (X up) (X (X the) (X (X international) (X (X steel) (X (X trade) (X (X ,) (X (X which) (X (X has) (X (X been) (X (X notoriously) (X (X managed) (X (X ,) (X (X subsidized) (X (X and) (X (X protected) (X (X by) (X (X governments) (X .)))))))))))))))))))))))))))))))))))) (X (X the) (X (X U.S.) (X (X termed) (X (X its) (X (X plan) (X (X ,) (X (X a) (X (X ``) (X (X trade) (X (X liberalization) (X (X program) (X (X ,) (X (X '') (X (X despite) (X (X the) (X (X fact) (X (X that) (X (X it) (X (X is) (X (X merely) (X (X an) (X (X extension) (X .))))))))))))))))))))))) (X (X mexico) (X (X ,) (X (X which) (X (X was) (X (X one) (X (X of) (X (X the) (X (X first) (X (X countries) (X (X to) (X (X conclude) (X (X its) (X (X steel) (X (X talks) (X (X with) (X (X the) (X (X U.S.) (X (X ,) (X (X virtually) (X (X doubled) (X (X its) (X (X quota) (X (X to) (X (X 0.95) (X (X %) (X (X of) (X (X the) (X (X U.S.) (X (X steel) (X (X market) (X (X from) (X (X 0.48) (X (X %) (X (X under) (X (X the) (X (X previous) (X (X quotas) (X .)))))))))))))))))))))))))))))))))))))) (X (X south) (X (X Korea) (X (X ,) (X (X which) (X (X had) (X (X 1.9) (X (X %) (X (X under) (X (X the) (X (X previous) (X (X quotas) (X (X ,) (X (X is) (X (X set) (X (X to) (X (X get) (X (X a) (X (X small) (X (X increase) (X (X to) (X (X about) (X (X 1.95) (X (X %) (X .)))))))))))))))))))))))) (X (X that) (X (X increase) (X (X rises) (X (X to) (X (X slightly) (X (X more) (X (X than) (X (X 2) (X (X %) (X (X of) (X (X the) (X (X U.S.) (X (X market) (X (X if) (X (X a) (X (X joint) (X (X Korean-U.S.) (X (X steel) (X (X project) (X (X is) (X (X included) (X .)))))))))))))))))))))) (X (X meanwhile) (X (X ,) (X (X Brazil) (X (X is) (X (X expected) (X (X to) (X (X increase) (X (X its) (X (X allowance) (X (X from) (X (X the) (X (X 1.43) (X (X %) (X (X share) (X (X it) (X (X has) (X (X had) (X (X in) (X (X recent) (X (X years) (X .))))))))))))))))))))) (X (X the) (X (X EC) (X (X and) (X (X Japan) (X (X --) (X (X the) (X (X U.S.) (X (X 's) (X (X largest) (X (X steel) (X (X suppliers) (X (X --) (X (X have) (X (X n't) (X (X been) (X (X filling) (X (X their) (X (X quotas) (X (X to) (X (X the) (X (X full) (X (X extent) (X .))))))))))))))))))))))) (X (X the) (X (X EC) (X (X steel) (X (X industry) (X (X ,) (X (X which) (X (X has) (X (X been) (X (X coping) (X (X with) (X (X strong) (X (X European) (X (X demand) (X (X ,) (X (X has) (X (X been) (X (X supplying) (X (X about) (X (X 5) (X (X %) (X (X of) (X (X the) (X (X U.S.) (X (X market) (X (X compared) (X (X with) (X (X recent) (X (X quotas) (X (X of) (X (X about) (X (X 6.7) (X (X %) (X .))))))))))))))))))))))))))))))))) (X (X japan) (X (X has) (X (X been) (X (X shipping) (X (X steel) (X (X to) (X (X total) (X (X about) (X (X 4.5) (X (X %) (X (X of) (X (X the) (X (X U.S.) (X (X market) (X (X compared) (X (X with) (X (X a) (X (X quota) (X (X of) (X (X 5.9) (X (X %) (X .)))))))))))))))))))))) (X (X in) (X (X the) (X (X recent) (X (X talks) (X (X ,) (X (X the) (X (X EC) (X (X had) (X (X its) (X (X quota) (X (X increased) (X (X about) (X (X 300,000) (X (X tons) (X (X ,) (X (X to) (X (X 7) (X (X %) (X (X of) (X (X the) (X (X U.S.) (X (X market) (X (X from) (X (X 6.7) (X (X %) (X (X in) (X (X 1988) (X .)))))))))))))))))))))))))))) (X (X but) (X (X its) (X (X quota) (X (X has) (X (X been) (X (X as) (X (X high) (X (X as) (X (X 6.9) (X (X %) (X (X in) (X (X 1984) (X .))))))))))))) (X (X japan) (X (X ,) (X (X however) (X (X ,) (X (X has) (X (X agreed) (X (X to) (X (X cut) (X (X its) (X (X quota) (X (X to) (X (X about) (X (X 5) (X (X %) (X (X from) (X (X 5.9) (X (X %) (X (X previously) (X .))))))))))))))))))) (X (X japan) (X (X ,) (X (X the) (X (X EC) (X (X ,) (X (X Brazil) (X (X ,) (X (X Mexico) (X (X and) (X (X South) (X (X Korea) (X (X provide) (X (X about) (X (X 80) (X (X %) (X (X of) (X (X the) (X (X steel) (X (X imported) (X (X to) (X (X the) (X (X U.S.) (X (X under) (X (X the) (X (X quota) (X (X program) (X .))))))))))))))))))))))))))) (X (X the) (X (X balance) (X (X is) (X (X supplied) (X (X by) (X (X a) (X (X host) (X (X of) (X (X smaller) (X (X exporters) (X (X ,) (X (X such) (X (X as) (X (X Australia) (X (X and) (X (X Venezuela) (X .))))))))))))))))) (X (X the) (X (X U.S.) (X (X had) (X (X about) (X (X an) (X (X extra) (X (X 2) (X (X %) (X (X of) (X (X the) (X (X domestic) (X (X steel) (X (X market) (X (X to) (X (X give) (X (X to) (X (X foreign) (X (X suppliers) (X (X in) (X (X its) (X (X quota) (X (X talks) (X .))))))))))))))))))))))) (X (X that) (X (X was) (X (X essentially) (X (X made) (X (X up) (X (X of) (X (X a) (X (X 1) (X (X %) (X (X increase) (X (X in) (X (X the) (X (X overall) (X (X quota) (X (X program) (X (X and) (X (X 1) (X (X %) (X (X from) (X (X cutting) (X (X Japan) (X (X 's) (X (X allowance) (X .)))))))))))))))))))))))) (X (X negotiators) (X (X from) (X (X the) (X (X White) (X (X House) (X (X trade) (X (X office) (X (X will) (X (X repeat) (X (X these) (X (X quota) (X (X negotiations) (X (X next) (X (X year) (X (X when) (X (X they) (X (X will) (X (X have) (X (X another) (X (X 1) (X (X %) (X (X of) (X (X the) (X (X U.S.) (X (X steel) (X (X market) (X (X to) (X (X allocate) (X .))))))))))))))))))))))))))))) (X (X these) (X (X optional) (X (X 1%-a-year) (X (X increases) (X (X to) (X (X the) (X (X steel) (X (X quota) (X (X program) (X (X are) (X (X built) (X (X into) (X (X the) (X (X Bush) (X (X administration) (X (X 's) (X (X steel-quota) (X (X program) (X (X to) (X (X give) (X (X its) (X (X negotiators) (X (X leverage) (X (X with) (X (X foreign) (X (X steel) (X (X suppliers) (X (X to) (X (X try) (X (X to) (X (X get) (X (X them) (X (X to) (X (X withdraw) (X (X subsidies) (X (X and) (X (X protectionism) (X (X from) (X (X their) (X (X own) (X (X steel) (X (X industries) (X .))))))))))))))))))))))))))))))))))))))))))) (X (X elcotel) (X (X Inc.) (X (X expects) (X (X fiscal) (X (X second-quarter) (X (X earnings) (X (X to) (X (X trail) (X (X 1988) (X (X results) (X (X ,) (X (X but) (X (X anticipates) (X (X that) (X (X several) (X (X new) (X (X products) (X (X will) (X (X lead) (X (X to) (X (X a) (X (X ``) (X (X much) (X (X stronger) (X (X '') (X (X performance) (X (X in) (X (X its) (X (X second) (X (X half) (X .))))))))))))))))))))))))))))))) (X (X elcotel) (X (X ,) (X (X a) (X (X telecommunications) (X (X company) (X (X ,) (X (X had) (X (X net) (X (X income) (X (X of) (X (X $) (X (X 272,000) (X (X ,) (X (X or) (X (X five) (X (X cents) (X (X a) (X (X share) (X (X ,) (X (X in) (X (X its) (X (X year-earlier) (X (X second) (X (X quarter) (X (X ,) (X (X ended) (X (X Sept.) (X (X 30) (X .))))))))))))))))))))))))))))) (X (X revenue) (X (X totaled) (X (X $) (X (X 5) (X (X million) (X .)))))) (X (X george) (X (X Pierce) (X (X ,) (X (X chairman) (X (X and) (X (X chief) (X (X executive) (X (X officer) (X (X ,) (X (X said) (X (X in) (X (X an) (X (X interview) (X (X that) (X (X earnings) (X (X in) (X (X the) (X (X most) (X (X recent) (X (X quarter) (X (X will) (X (X be) (X (X about) (X (X two) (X (X cents) (X (X a) (X (X share) (X (X on) (X (X revenue) (X (X of) (X (X just) (X (X under) (X (X $) (X (X 4) (X (X million) (X .)))))))))))))))))))))))))))))))))))) (X (X the) (X (X lower) (X (X results) (X (X ,) (X (X Mr.) (X (X Pierce) (X (X said) (X (X ,) (X (X reflect) (X (X a) (X (X 12-month) (X (X decline) (X (X in) (X (X industry) (X (X sales) (X (X of) (X (X privately) (X (X owned) (X (X pay) (X (X telephones) (X (X ,) (X (X Elcotel) (X (X 's) (X (X primary) (X (X business) (X .)))))))))))))))))))))))))) (X (X although) (X (X Mr.) (X (X Pierce) (X (X expects) (X (X that) (X (X line) (X (X of) (X (X business) (X (X to) (X (X strengthen) (X (X in) (X (X the) (X (X next) (X (X year) (X (X ,) (X (X he) (X (X said) (X (X Elcotel) (X (X will) (X (X also) (X (X benefit) (X (X from) (X (X moving) (X (X into) (X (X other) (X (X areas) (X .))))))))))))))))))))))))))) (X (X foremost) (X (X among) (X (X those) (X (X is) (X (X the) (X (X company) (X (X 's) (X (X entrance) (X (X into) (X (X the) (X (X public) (X (X facsimile) (X (X business) (X (X ,) (X (X Mr.) (X (X Pierce) (X (X said) (X .)))))))))))))))))) (X (X within) (X (X the) (X (X next) (X (X year) (X (X ,) (X (X Elcotel) (X (X expects) (X (X to) (X (X place) (X (X 10,000) (X (X fax) (X (X machines) (X (X ,) (X (X made) (X (X by) (X (X Minolta) (X (X in) (X (X Japan) (X (X ,) (X (X in) (X (X hotels) (X (X ,) (X (X municipal) (X (X buildings) (X (X ,) (X (X drugstores) (X (X and) (X (X other) (X (X public) (X (X settings) (X (X around) (X (X the) (X (X country) (X .)))))))))))))))))))))))))))))))))) (X (X elcotel) (X (X will) (X (X provide) (X (X a) (X (X credit-card) (X (X reader) (X (X for) (X (X the) (X (X machines) (X (X to) (X (X collect) (X (X ,) (X (X store) (X (X and) (X (X forward) (X (X billing) (X (X data) (X .)))))))))))))))))) (X (X mr.) (X (X Pierce) (X (X said) (X (X Elcotel) (X (X should) (X (X realize) (X (X a) (X (X minimum) (X (X of) (X (X $) (X (X 10) (X (X of) (X (X recurring) (X (X net) (X (X earnings) (X (X for) (X (X each) (X (X machine) (X (X each) (X (X month) (X .))))))))))))))))))))) (X (X elcotel) (X (X has) (X (X also) (X (X developed) (X (X an) (X (X automatic) (X (X call) (X (X processor) (X (X that) (X (X will) (X (X make) (X (X further) (X (X use) (X (X of) (X (X the) (X (X company) (X (X 's) (X (X system) (X (X for) (X (X automating) (X (X and) (X (X handling) (X (X credit-card) (X (X calls) (X (X and) (X (X collect) (X (X calls) (X .)))))))))))))))))))))))))))) (X (X automatic) (X (X call) (X (X processors) (X (X will) (X (X provide) (X (X that) (X (X system) (X (X for) (X (X virtually) (X (X any) (X (X telephone) (X (X ,) (X (X Mr.) (X (X Pierce) (X (X said) (X (X ,) (X (X not) (X (X just) (X (X phones) (X (X produced) (X (X by) (X (X Elcotel) (X .))))))))))))))))))))))) (X (X the) (X (X company) (X (X will) (X (X also) (X (X be) (X (X producing) (X (X a) (X (X new) (X (X line) (X (X of) (X (X convenience) (X (X telephones) (X (X ,) (X (X which) (X (X do) (X (X n't) (X (X accept) (X (X coins) (X (X ,) (X (X for) (X (X use) (X (X in) (X (X hotel) (X (X lobbies) (X (X ,) (X (X office) (X (X lobbies) (X (X ,) (X (X hospitality) (X (X lounges) (X (X and) (X (X similar) (X (X settings) (X .)))))))))))))))))))))))))))))))))) (X (X mr.) (X (X Pierce) (X (X estimated) (X (X that) (X (X the) (X (X processors) (X (X and) (X (X convenience) (X (X phones) (X (X would) (X (X produce) (X (X about) (X (X $) (X (X 5) (X (X of) (X (X recurring) (X (X net) (X (X earnings) (X (X for) (X (X each) (X (X machine) (X (X each) (X (X month) (X .)))))))))))))))))))))))) (X (X britain) (X (X 's) (X (X retail) (X (X price) (X (X index) (X (X rose) (X (X 0.7) (X (X %) (X (X in) (X (X September) (X (X from) (X (X August) (X (X and) (X (X was) (X (X up) (X (X 7.6) (X (X %) (X (X for) (X (X the) (X (X year) (X (X ,) (X (X the) (X (X Central) (X (X Statistical) (X (X Office) (X (X said) (X .))))))))))))))))))))))))))) (X (X quest) (X (X Medical) (X (X Inc.) (X (X said) (X (X it) (X (X adopted) (X (X a) (X (X shareholders) (X (X ') (X (X rights) (X (X plan) (X (X in) (X (X which) (X (X rights) (X (X to) (X (X purchase) (X (X shares) (X (X of) (X (X common) (X (X stock) (X (X will) (X (X be) (X (X distributed) (X (X as) (X (X a) (X (X dividend) (X (X to) (X (X shareholders) (X (X of) (X (X record) (X (X as) (X (X of) (X (X Oct.) (X (X 23) (X .))))))))))))))))))))))))))))))))))) (X (X the) (X (X company) (X (X said) (X (X the) (X (X plan) (X (X was) (X (X n't) (X (X adopted) (X (X in) (X (X response) (X (X to) (X (X any) (X (X known) (X (X offers) (X (X for) (X (X Quest) (X (X ,) (X (X a) (X (X maker) (X (X and) (X (X marketer) (X (X of) (X (X hospital) (X (X products) (X .))))))))))))))))))))))))) (X (X the) (X (X rights) (X (X allow) (X (X shareholders) (X (X to) (X (X purchase) (X (X Quest) (X (X stock) (X (X at) (X (X a) (X (X discount) (X (X if) (X (X any) (X (X person) (X (X or) (X (X group) (X (X acquires) (X (X more) (X (X than) (X (X 15) (X (X %) (X (X of) (X (X the) (X (X company) (X (X 's) (X (X common) (X (X stock) (X (X or) (X (X announces) (X (X a) (X (X tender) (X (X offer) (X .))))))))))))))))))))))))))))))))) (X (X measuring) (X (X cups) (X (X may) (X (X soon) (X (X be) (X (X replaced) (X (X by) (X (X tablespoons) (X (X in) (X (X the) (X (X laundry) (X (X room) (X .))))))))))))) (X (X procter) (X (X &) (X (X Gamble) (X (X Co.) (X (X plans) (X (X to) (X (X begin) (X (X testing) (X (X next) (X (X month) (X (X a) (X (X superconcentrated) (X (X detergent) (X (X that) (X (X will) (X (X require) (X (X only) (X (X a) (X (X few) (X (X spoonfuls) (X (X per) (X (X washload) (X .))))))))))))))))))))))) (X (X the) (X (X move) (X (X stems) (X (X from) (X (X lessons) (X (X learned) (X (X in) (X (X Japan) (X (X where) (X (X local) (X (X competitors) (X (X have) (X (X had) (X (X phenomenal) (X (X success) (X (X with) (X (X concentrated) (X (X soapsuds) (X .))))))))))))))))))) (X (X it) (X (X also) (X (X marks) (X (X P&G) (X (X 's) (X (X growing) (X (X concern) (X (X that) (X (X its) (X (X Japanese) (X (X rivals) (X (X ,) (X (X such) (X (X as) (X (X Kao) (X (X Corp.) (X (X ,) (X (X may) (X (X bring) (X (X their) (X (X superconcentrates) (X (X to) (X (X the) (X (X U.S.) (X .))))))))))))))))))))))))) (X (X the) (X (X Cincinnati) (X (X consumer-products) (X (X giant) (X (X got) (X (X clobbered) (X (X two) (X (X years) (X (X ago) (X (X in) (X (X Japan) (X (X when) (X (X Kao) (X (X introduced) (X (X a) (X (X powerful) (X (X detergent) (X (X ,) (X (X called) (X (X Attack) (X (X ,) (X (X which) (X (X quickly) (X (X won) (X (X a) (X (X 30) (X (X %) (X (X stake) (X (X in) (X (X the) (X (X Japanese) (X (X markets) (X .))))))))))))))))))))))))))))))))) (X (X ``) (X (X They) (X (X do) (X (X n't) (X (X want) (X (X to) (X (X get) (X (X caught) (X (X again) (X (X ,) (X (X '') (X (X says) (X (X one) (X (X industry) (X (X watcher) (X .)))))))))))))))) (X (X retailers) (X (X in) (X (X Phoenix) (X (X ,) (X (X Ariz.) (X (X ,) (X (X say) (X (X P&G) (X (X 's) (X (X new) (X (X powdered) (X (X detergent) (X (X --) (X (X to) (X (X be) (X (X called) (X (X Cheer) (X (X with) (X (X Color) (X (X Guard) (X (X --) (X (X will) (X (X be) (X (X on) (X (X shelves) (X (X in) (X (X that) (X (X market) (X (X by) (X (X early) (X (X November) (X .)))))))))))))))))))))))))))))))) (X (X a) (X (X P&G) (X (X spokeswoman) (X (X confirmed) (X (X that) (X (X shipments) (X (X to) (X (X Phoenix) (X (X started) (X (X late) (X (X last) (X (X month) (X .))))))))))))) (X (X she) (X (X said) (X (X the) (X (X company) (X (X will) (X (X study) (X (X results) (X (X from) (X (X this) (X (X market) (X (X before) (X (X expanding) (X (X to) (X (X others) (X .))))))))))))))) (X (X superconcentrates) (X (X are) (X (X n't) (X (X entirely) (X (X new) (X (X for) (X (X P&G) (X .)))))))) (X (X the) (X (X company) (X (X introduced) (X (X a) (X (X superconcentrated) (X (X Lemon) (X (X Cheer) (X (X in) (X (X Japan) (X (X after) (X (X watching) (X (X the) (X (X success) (X (X of) (X (X Attack) (X .)))))))))))))))) (X (X when) (X (X Attack) (X (X hit) (X (X the) (X (X shelves) (X (X in) (X (X 1987) (X (X ,) (X (X P&G) (X (X 's) (X (X share) (X (X of) (X (X the) (X (X Japanese) (X (X market) (X (X fell) (X (X to) (X (X about) (X (X 8) (X (X %) (X (X from) (X (X more) (X (X than) (X (X 20) (X (X %) (X .)))))))))))))))))))))))))) (X (X with) (X (X the) (X (X help) (X (X of) (X (X Lemon) (X (X Cheer) (X (X ,) (X (X P&G) (X (X 's) (X (X share) (X (X is) (X (X now) (X (X estimated) (X (X to) (X (X be) (X (X 12) (X (X %) (X .)))))))))))))))))) (X (X while) (X (X the) (X (X Japanese) (X (X have) (X (X embraced) (X (X the) (X (X compact) (X (X packaging) (X (X and) (X (X convenience) (X (X of) (X (X concentrated) (X (X products) (X (X ,) (X (X the) (X (X true) (X (X test) (X (X for) (X (X P&G) (X (X will) (X (X be) (X (X in) (X (X the) (X (X $) (X (X 4) (X (X billion) (X (X U.S.) (X (X detergent) (X (X market) (X (X ,) (X (X where) (X (X growth) (X (X is) (X (X slow) (X (X and) (X (X liquids) (X (X have) (X (X gained) (X (X prominence) (X (X over) (X (X powders) (X .)))))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X company) (X (X may) (X (X have) (X (X chosen) (X (X to) (X (X market) (X (X the) (X (X product) (X (X under) (X (X the) (X (X Cheer) (X (X name) (X (X since) (X (X it) (X (X 's) (X (X already) (X (X expanded) (X (X its) (X (X best-selling) (X (X Tide) (X (X into) (X (X 16) (X (X different) (X (X varieties) (X (X ,) (X (X including) (X (X this) (X (X year) (X (X 's) (X (X big) (X (X hit) (X (X ,) (X (X Tide) (X (X with) (X (X Bleach) (X .))))))))))))))))))))))))))))))))))))) (X (X with) (X (X superconcentrates) (X (X ,) (X (X however) (X (X ,) (X (X it) (X (X is) (X (X n't) (X (X always) (X (X easy) (X (X to) (X (X persuade) (X (X consumers) (X (X that) (X (X less) (X (X is) (X (X more) (X (X ;) (X (X many) (X (X people) (X (X tend) (X (X to) (X (X dump) (X (X too) (X (X much) (X (X detergent) (X (X into) (X (X the) (X (X washing) (X (X machine) (X (X ,) (X (X believing) (X (X that) (X (X it) (X (X takes) (X (X a) (X (X cup) (X (X of) (X (X powder) (X (X to) (X (X really) (X (X clean) (X (X the) (X (X laundry) (X .))))))))))))))))))))))))))))))))))))))))))))) (X (X in) (X (X the) (X (X early) (X (X 1980s) (X (X ,) (X (X P&G) (X (X tried) (X (X to) (X (X launch) (X (X here) (X (X a) (X (X concentrated) (X (X detergent) (X (X under) (X (X the) (X (X Ariel) (X (X brand) (X (X name) (X (X that) (X (X it) (X (X markets) (X (X in) (X (X Europe) (X .)))))))))))))))))))))))) (X (X but) (X (X the) (X (X product) (X (X ,) (X (X which) (X (X was) (X (X n't) (X (X as) (X (X concentrated) (X (X as) (X (X the) (X (X new) (X (X Cheer) (X (X ,) (X (X bombed) (X (X in) (X (X a) (X (X market) (X (X test) (X (X in) (X (X Denver) (X (X and) (X (X was) (X (X dropped) (X .))))))))))))))))))))))))) (X (X p&g) (X (X and) (X (X others) (X (X also) (X (X have) (X (X tried) (X (X repeatedly) (X (X to) (X (X hook) (X (X consumers) (X (X on) (X (X detergent) (X (X and) (X (X fabric) (X (X softener) (X (X combinations) (X (X in) (X (X pouches) (X (X ,) (X (X but) (X (X they) (X (X have) (X (X n't) (X (X sold) (X (X well) (X (X ,) (X (X despite) (X (X the) (X (X convenience) (X .)))))))))))))))))))))))))))))) (X (X but) (X (X P&G) (X (X contends) (X (X the) (X (X new) (X (X Cheer) (X (X is) (X (X a) (X (X unique) (X (X formula) (X (X that) (X (X also) (X (X offers) (X (X an) (X (X ingredient) (X (X that) (X (X prevents) (X (X colors) (X (X from) (X (X fading) (X .))))))))))))))))))))) (X (X and) (X (X retailers) (X (X are) (X (X expected) (X (X to) (X (X embrace) (X (X the) (X (X product) (X (X ,) (X (X in) (X (X part) (X (X because) (X (X it) (X (X will) (X (X take) (X (X up) (X (X less) (X (X shelf) (X (X space) (X .)))))))))))))))))))) (X (X ``) (X (X When) (X (X shelf) (X (X space) (X (X was) (X (X cheap) (X (X ,) (X (X bigger) (X (X was) (X (X better) (X (X ,) (X (X '') (X (X says) (X (X Hugh) (X (X Zurkuhlen) (X (X ,) (X (X an) (X (X analyst) (X (X at) (X (X Salomon) (X (X Bros) (X .)))))))))))))))))))))) (X (X but) (X (X with) (X (X so) (X (X many) (X (X brands) (X (X vying) (X (X for) (X (X space) (X (X ,) (X (X that) (X (X 's) (X (X no) (X (X longer) (X (X the) (X (X case) (X .)))))))))))))))) (X (X if) (X (X the) (X (X new) (X (X Cheer) (X (X sells) (X (X well) (X (X ,) (X (X the) (X (X trend) (X (X toward) (X (X smaller) (X (X packaging) (X (X is) (X (X likely) (X (X to) (X (X accelerate) (X (X as) (X (X competitors) (X (X follow) (X (X with) (X (X their) (X (X own) (X (X superconcentrates) (X .)))))))))))))))))))))))) (X (X then) (X (X retailers) (X (X ``) (X (X will) (X (X probably) (X (X push) (X (X the) (X (X -LCB-) (X (X less-established) (X (X -RCB-) (X (X brands) (X (X out) (X (X altogether) (X (X ,) (X (X '') (X (X he) (X (X says) (X .)))))))))))))))))) (X (X competition) (X (X is) (X (X bound) (X (X to) (X (X get) (X (X tougher) (X (X if) (X (X Kao) (X (X introduces) (X (X a) (X (X product) (X (X like) (X (X Attack) (X (X in) (X (X the) (X (X U.S.) (X .))))))))))))))))) (X (X to) (X (X be) (X (X sure) (X (X ,) (X (X Kao) (X (X would) (X (X n't) (X (X have) (X (X an) (X (X easy) (X (X time) (X (X taking) (X (X U.S.) (X (X market) (X (X share) (X (X away) (X (X from) (X (X the) (X (X mighty) (X (X P&G) (X (X ,) (X (X which) (X (X has) (X (X about) (X (X 23) (X (X %) (X (X of) (X (X the) (X (X market) (X .)))))))))))))))))))))))))))))) (X (X kao) (X (X officials) (X (X previously) (X (X have) (X (X said) (X (X they) (X (X are) (X (X interested) (X (X in) (X (X selling) (X (X detergents) (X (X in) (X (X the) (X (X U.S.) (X (X ,) (X (X but) (X (X so) (X (X far) (X (X the) (X (X company) (X (X has) (X (X focused) (X (X on) (X (X acquisitions) (X (X ,) (X (X such) (X (X as) (X (X last) (X (X year) (X (X 's) (X (X purchase) (X (X of) (X (X Andrew) (X (X Jergens) (X (X Co.) (X (X ,) (X (X a) (X (X Cincinnati) (X (X hand-lotion) (X (X maker) (X .))))))))))))))))))))))))))))))))))))))))) (X (X it) (X (X also) (X (X has) (X (X a) (X (X product-testing) (X (X facility) (X (X in) (X (X California) (X .))))))))) (X (X some) (X (X believe) (X (X P&G) (X (X 's) (X (X interest) (X (X in) (X (X a) (X (X superconcentrated) (X (X detergent) (X (X goes) (X (X beyond) (X (X the) (X (X concern) (X (X for) (X (X the) (X (X Japanese) (X .))))))))))))))))) (X (X ``) (X (X This) (X (X is) (X (X something) (X (X P&G) (X (X would) (X (X do) (X (X with) (X (X or) (X (X without) (X (X Kao) (X (X ,) (X (X '') (X (X says) (X (X Mr.) (X (X Zurkuhlen) (X .))))))))))))))))) (X (X with) (X (X economic) (X (X tension) (X (X between) (X (X the) (X (X U.S.) (X (X and) (X (X Japan) (X (X worsening) (X (X ,) (X (X many) (X (X Japanese) (X (X had) (X (X feared) (X (X last) (X (X week) (X (X 's) (X (X visit) (X (X from) (X (X U.S.) (X (X Trade) (X (X Representative) (X (X Carla) (X (X Hills) (X .))))))))))))))))))))))))) (X (X they) (X (X expected) (X (X a) (X (X new) (X (X barrage) (X (X of) (X (X demands) (X (X that) (X (X Japan) (X (X do) (X (X something) (X (X quickly) (X (X to) (X (X reduce) (X (X its) (X (X trade) (X (X surplus) (X (X with) (X (X the) (X (X U.S.) (X .))))))))))))))))))))) (X (X instead) (X (X ,) (X (X they) (X (X got) (X (X a) (X (X discussion) (X (X of) (X (X the) (X (X need) (X (X for) (X (X the) (X (X U.S.) (X (X and) (X (X Japan) (X (X to) (X (X work) (X (X together) (X (X and) (X (X of) (X (X the) (X (X importance) (X (X of) (X (X the) (X (X long-term) (X (X view) (X .)))))))))))))))))))))))))) (X (X mrs.) (X (X Hills) (X (X ') (X (X first) (X (X trip) (X (X to) (X (X Japan) (X (X as) (X (X America) (X (X 's) (X (X chief) (X (X trade) (X (X negotiator) (X (X had) (X (X a) (X (X completely) (X (X different) (X (X tone) (X (X from) (X (X last) (X (X month) (X (X 's) (X (X visit) (X (X by) (X (X Commerce) (X (X Secretary) (X (X Robert) (X (X A.) (X (X Mosbacher) (X .)))))))))))))))))))))))))))))) (X (X mr.) (X (X Mosbacher) (X (X called) (X (X for) (X (X concrete) (X (X results) (X (X by) (X (X next) (X (X spring) (X (X in) (X (X negotiations) (X (X over) (X (X fundamental) (X (X Japanese) (X (X business) (X (X practices) (X (X that) (X (X supposedly) (X (X inhibit) (X (X free) (X (X trade) (X .)))))))))))))))))))))) (X (X he) (X (X said) (X (X such) (X (X results) (X (X should) (X (X be) (X (X ``) (X (X measurable) (X (X in) (X (X dollars) (X (X and) (X (X cents) (X (X '') (X (X in) (X (X reducing) (X (X the) (X (X U.S.) (X (X trade) (X (X deficit) (X (X with) (X (X Japan) (X .)))))))))))))))))))))) (X (X but) (X (X Mrs.) (X (X Hills) (X (X ,) (X (X speaking) (X (X at) (X (X a) (X (X breakfast) (X (X meeting) (X (X of) (X (X the) (X (X American) (X (X Chamber) (X (X of) (X (X Commerce) (X (X in) (X (X Japan) (X (X on) (X (X Saturday) (X (X ,) (X (X stressed) (X (X that) (X (X the) (X (X objective) (X (X ``) (X (X is) (X (X not) (X (X to) (X (X get) (X (X definitive) (X (X action) (X (X by) (X (X spring) (X (X or) (X (X summer) (X (X ,) (X (X it) (X (X is) (X (X rather) (X (X to) (X (X have) (X (X a) (X (X blueprint) (X (X for) (X (X action) (X (X .) (X ''))))))))))))))))))))))))))))))))))))))))))))))) (X (X she) (X (X added) (X (X that) (X (X she) (X (X expected) (X (X ``) (X (X perhaps) (X (X to) (X (X have) (X (X a) (X (X down) (X (X payment) (X (X ...) (X (X some) (X (X small) (X (X step) (X (X to) (X (X convince) (X (X the) (X (X American) (X (X people) (X (X and) (X (X the) (X (X Japanese) (X (X people) (X (X that) (X (X we) (X (X 're) (X (X moving) (X (X in) (X (X earnest) (X (X .) (X ''))))))))))))))))))))))))))))))))) (X (X how) (X (X such) (X (X remarks) (X (X translate) (X (X into) (X (X policy) (X (X wo) (X (X n't) (X (X become) (X (X clear) (X (X for) (X (X months) (X .))))))))))))) (X (X american) (X (X and) (X (X Japanese) (X (X officials) (X (X offered) (X (X several) (X (X theories) (X (X for) (X (X the) (X (X difference) (X (X in) (X (X approach) (X (X betwen) (X (X Mr.) (X (X Mosbacher) (X (X and) (X (X Mrs.) (X (X Hills) (X .))))))))))))))))))) (X (X many) (X (X called) (X (X it) (X (X simply) (X (X a) (X (X contrast) (X (X in) (X (X styles) (X .))))))))) (X (X but) (X (X some) (X (X saw) (X (X it) (X (X as) (X (X a) (X (X classic) (X (X negotiating) (X (X tactic) (X .)))))))))) (X (X others) (X (X said) (X (X the) (X (X Bush) (X (X administration) (X (X may) (X (X feel) (X (X the) (X (X rhetoric) (X (X on) (X (X both) (X (X sides) (X (X is) (X (X getting) (X (X out) (X (X of) (X (X hand) (X .)))))))))))))))))) (X (X and) (X (X some) (X (X said) (X (X it) (X (X reflected) (X (X the) (X (X growing) (X (X debate) (X (X in) (X (X Washington) (X (X over) (X (X pursuing) (X (X free) (X (X trade) (X (X with) (X (X Japan) (X (X versus) (X (X some) (X (X kind) (X (X of) (X (X managed) (X (X trade) (X .))))))))))))))))))))))) (X (X asked) (X (X to) (X (X compare) (X (X her) (X (X visit) (X (X to) (X (X Mr.) (X (X Mosbacher) (X (X 's) (X (X ,) (X (X Mrs.) (X (X Hills) (X (X replied) (X (X :) (X (X ``) (X (X I) (X (X did) (X (X n't) (X (X hear) (X (X every) (X (X word) (X (X he) (X (X spoke) (X (X ,) (X (X but) (X (X as) (X (X a) (X (X general) (X (X proposition) (X (X ,) (X (X I) (X (X think) (X (X we) (X (X have) (X (X a) (X (X very) (X (X consistent) (X (X trade) (X (X strategy) (X (X in) (X (X the) (X (X Bush) (X (X administration) (X (X .) (X ''))))))))))))))))))))))))))))))))))))))))))))) (X (X yet) (X (X more) (X (X than) (X (X one) (X (X American) (X (X official) (X (X who) (X (X sat) (X (X in) (X (X with) (X (X her) (X (X during) (X (X three) (X (X days) (X (X of) (X (X talks) (X (X with) (X (X Japanese) (X (X officials) (X (X said) (X (X her) (X (X tone) (X (X often) (X (X was) (X (X surprisingly) (X (X ``) (X (X conciliatory) (X (X .) (X ''))))))))))))))))))))))))))))) (X (X ``) (X (X I) (X (X think) (X (X my) (X (X line) (X (X has) (X (X been) (X (X very) (X (X consistent) (X (X ,) (X (X '') (X (X Mrs.) (X (X Hills) (X (X said) (X (X at) (X (X a) (X (X news) (X (X conference) (X (X Saturday) (X (X afternoon) (X .))))))))))))))))))))) (X (X ``) (X (X I) (X (X am) (X (X painted) (X (X sometimes) (X (X as) (X (X ferocious) (X (X ,) (X (X perhaps) (X (X because) (X (X I) (X (X have) (X (X a) (X (X ferocious) (X (X list) (X (X of) (X (X statutes) (X (X to) (X (X implement) (X .)))))))))))))))))))) (X (X i) (X (X do) (X (X n't) (X (X feel) (X (X very) (X (X ferocious) (X .))))))) (X (X i) (X (X do) (X (X n't) (X (X feel) (X (X either) (X (X hard) (X (X or) (X (X soft) (X .))))))))) (X (X i) (X (X feel) (X (X committed) (X (X to) (X (X the) (X (X program) (X (X of) (X (X opening) (X (X markets) (X (X and) (X (X expanding) (X (X trade) (X (X .) (X '')))))))))))))) (X (X when) (X (X she) (X (X met) (X (X the) (X (X local) (X (X press) (X (X for) (X (X the) (X (X first) (X (X time) (X (X on) (X (X Friday) (X (X ,) (X (X Mrs.) (X (X Hills) (X (X firmly) (X (X reiterated) (X (X the) (X (X need) (X (X for) (X (X progress) (X (X in) (X (X removing) (X (X barriers) (X (X to) (X (X trade) (X (X in) (X (X forest) (X (X products) (X (X ,) (X (X satellites) (X (X and) (X (X supercomputers) (X (X ,) (X (X three) (X (X areas) (X (X targeted) (X (X under) (X (X the) (X (X Super) (X (X 301) (X (X provision) (X (X of) (X (X the) (X (X 1988) (X (X trade) (X (X bill) (X .)))))))))))))))))))))))))))))))))))))))))))))))) (X (X she) (X (X highlighted) (X (X exclusionary) (X (X business) (X (X practices) (X (X that) (X (X the) (X (X U.S.) (X (X government) (X (X has) (X (X identified) (X .)))))))))))) (X (X but) (X (X her) (X (X main) (X (X thrust) (X (X was) (X (X to) (X (X promote) (X (X the) (X (X importance) (X (X of) (X (X world-wide) (X (X free) (X (X trade) (X (X and) (X (X open) (X (X competition) (X .))))))))))))))))) (X (X she) (X (X said) (X (X the) (X (X trade) (X (X imbalance) (X (X was) (X (X mainly) (X (X due) (X (X to) (X (X macroeconomic) (X (X factors) (X (X and) (X (X should) (X (X n't) (X (X be) (X (X tackled) (X (X by) (X (X setting) (X (X quantitative) (X (X targets) (X .))))))))))))))))))))) (X (X at) (X (X her) (X (X news) (X (X conference) (X (X for) (X (X Japanese) (X (X reporters) (X (X ,) (X (X one) (X (X economics) (X (X journalist) (X (X summed) (X (X up) (X (X the) (X (X Japanese) (X (X sense) (X (X of) (X (X relief) (X .))))))))))))))))))) (X (X ``) (X (X My) (X (X impression) (X (X was) (X (X that) (X (X you) (X (X would) (X (X be) (X (X a) (X (X scary) (X (X old) (X (X lady) (X (X ,) (X (X '') (X (X he) (X (X said) (X (X ,) (X (X drawing) (X (X a) (X (X few) (X (X nervous) (X (X chuckles) (X (X from) (X (X his) (X (X colleagues) (X .)))))))))))))))))))))))))) (X (X ``) (X (X But) (X (X I) (X (X am) (X (X relieved) (X (X to) (X (X see) (X (X that) (X (X you) (X (X are) (X (X beautiful) (X (X and) (X (X gentle) (X (X and) (X (X intelligent) (X (X and) (X (X a) (X (X person) (X (X of) (X (X integrity) (X (X .) (X '')))))))))))))))))))))) (X (X mrs.) (X (X Hills) (X (X ') (X (X remarks) (X (X did) (X (X raise) (X (X questions) (X (X ,) (X (X at) (X (X least) (X (X among) (X (X some) (X (X U.S.) (X (X officials) (X (X ,) (X (X about) (X (X what) (X (X exactly) (X (X her) (X (X stance) (X (X is) (X (X on) (X (X U.S.) (X (X access) (X (X to) (X (X the) (X (X Japanese) (X (X semiconductor) (X (X market) (X .)))))))))))))))))))))))))))))) (X (X the) (X (X U.S.) (X (X share) (X (X of) (X (X the) (X (X Japanese) (X (X market) (X (X has) (X (X been) (X (X stuck) (X (X around) (X (X 10) (X (X %) (X (X for) (X (X years) (X .)))))))))))))))) (X (X many) (X (X Americans) (X (X have) (X (X interpreted) (X (X a) (X (X 1986) (X (X agreement) (X (X as) (X (X assuring) (X (X U.S.) (X (X companies) (X (X a) (X (X 20) (X (X %) (X (X share) (X (X by) (X (X 1991) (X (X ,) (X (X but) (X (X the) (X (X Japanese) (X (X have) (X (X denied) (X (X making) (X (X any) (X (X such) (X (X promise) (X .)))))))))))))))))))))))))))) (X (X at) (X (X one) (X (X of) (X (X her) (X (X news) (X (X conferences) (X (X ,) (X (X Mrs.) (X (X Hills) (X (X said) (X (X ,) (X (X ``) (X (X I) (X (X believe) (X (X we) (X (X can) (X (X do) (X (X much) (X (X better) (X (X than) (X (X 20) (X (X %) (X (X .) (X '')))))))))))))))))))))))) (X (X but) (X (X she) (X (X stressed) (X (X ,) (X (X ``) (X (X I) (X (X am) (X (X against) (X (X managed) (X (X trade) (X .))))))))))) (X (X i) (X (X will) (X (X not) (X (X enter) (X (X into) (X (X an) (X (X agreement) (X (X that) (X (X stipulates) (X (X to) (X (X a) (X (X percentage) (X (X of) (X (X the) (X (X market) (X .)))))))))))))))) (X (X traditional) (X (X Industries) (X (X Inc.) (X (X said) (X (X it) (X (X expects) (X (X to) (X (X report) (X (X a) (X (X net) (X (X loss) (X (X for) (X (X the) (X (X fourth) (X (X quarter) (X (X that) (X (X ended) (X (X June) (X (X 30) (X (X and) (X (X is) (X (X seeking) (X (X new) (X (X financing) (X .))))))))))))))))))))))))) (X (X the) (X (X seller) (X (X of) (X (X photographic) (X (X products) (X (X and) (X (X services) (X (X said) (X (X it) (X (X is) (X (X considering) (X (X a) (X (X number) (X (X of) (X (X financing) (X (X alternatives) (X (X ,) (X (X including) (X (X seeking) (X (X increases) (X (X in) (X (X its) (X (X credit) (X (X lines) (X .))))))))))))))))))))))))) (X (X traditional) (X (X declined) (X (X to) (X (X estimate) (X (X the) (X (X amount) (X (X of) (X (X the) (X (X loss) (X (X and) (X (X would) (X (X n't) (X (X say) (X (X if) (X (X it) (X (X expects) (X (X to) (X (X show) (X (X a) (X (X profit) (X (X for) (X (X the) (X (X year) (X .)))))))))))))))))))))))) (X (X in) (X (X the) (X (X year) (X (X ended) (X (X June) (X (X 30) (X (X ,) (X (X 1988) (X (X ,) (X (X Traditional) (X (X reported) (X (X net) (X (X income) (X (X of) (X (X $) (X (X 4.9) (X (X million) (X (X ,) (X (X or) (X (X $) (X (X 1.21) (X (X a) (X (X share) (X .)))))))))))))))))))))))) (X (X the) (X (X company) (X (X did) (X (X n't) (X (X break) (X (X out) (X (X its) (X (X fourth-quarter) (X (X results) (X .)))))))))) (X (X in) (X (X the) (X (X latest) (X (X nine) (X (X months) (X (X net) (X (X income) (X (X was) (X (X $) (X (X 4.7) (X (X million) (X (X ,) (X (X or) (X (X $) (X (X 1.31) (X (X a) (X (X share) (X (X ,) (X (X on) (X (X revenue) (X (X of) (X (X $) (X (X 44.3) (X (X million) (X .))))))))))))))))))))))))) (X (X separately) (X (X ,) (X (X the) (X (X company) (X (X said) (X (X it) (X (X would) (X (X file) (X (X a) (X (X delayed) (X (X fiscal-year) (X (X report) (X (X with) (X (X the) (X (X Securities) (X (X and) (X (X Exchange) (X (X Commission) (X (X ``) (X (X within) (X (X approximately) (X (X 45) (X (X days) (X (X .) (X ''))))))))))))))))))))))))) (X (X it) (X (X said) (X (X the) (X (X delay) (X (X resulted) (X (X from) (X (X difficulties) (X (X in) (X (X resolving) (X (X its) (X (X accounting) (X (X of) (X (X a) (X (X settlement) (X (X with) (X (X the) (X (X Federal) (X (X Trade) (X (X Commission) (X .)))))))))))))))))))) (X (X under) (X (X an) (X (X agreement) (X (X filed) (X (X in) (X (X federal) (X (X court) (X (X in) (X (X August) (X (X to) (X (X settle) (X (X FTC) (X (X objections) (X (X to) (X (X some) (X (X Traditional) (X (X sales) (X (X practices) (X (X ,) (X (X Traditional) (X (X said) (X (X it) (X (X would) (X (X establish) (X (X a) (X (X $) (X (X 250,000) (X (X trust) (X (X fund) (X (X to) (X (X provide) (X (X refunds) (X (X to) (X (X certain) (X (X customers) (X .)))))))))))))))))))))))))))))))))))) (X (X information) (X (X International) (X (X Inc.) (X (X said) (X (X it) (X (X was) (X (X sued) (X (X by) (X (X a) (X (X buyer) (X (X of) (X (X its) (X (X computerized) (X (X newspaper-publishing) (X (X system) (X (X ,) (X (X alleging) (X (X that) (X (X the) (X (X company) (X (X failed) (X (X to) (X (X correct) (X (X deficiencies) (X (X in) (X (X the) (X (X system) (X .)))))))))))))))))))))))))))) (X (X a) (X (X spokesman) (X (X for) (X (X Information) (X (X International) (X (X said) (X (X the) (X (X lawsuit) (X (X by) (X (X two) (X (X units) (X (X of) (X (X Morris) (X (X Communications) (X (X Corp.) (X (X seeks) (X (X restitution) (X (X of) (X (X the) (X (X system) (X (X 's) (X (X about) (X (X $) (X (X 3) (X (X million) (X (X purchase) (X (X price) (X (X and) (X (X cancellation) (X (X of) (X (X a) (X (X software) (X (X license) (X (X provided) (X (X by) (X (X the) (X (X Morris) (X (X units) (X (X to) (X (X Information) (X (X International) (X (X for) (X (X alleged) (X (X failure) (X (X to) (X (X pay) (X (X royalties) (X .)))))))))))))))))))))))))))))))))))))))))))))))) (X (X information) (X (X International) (X (X said) (X (X it) (X (X believes) (X (X that) (X (X the) (X (X complaints) (X (X ,) (X (X filed) (X (X in) (X (X federal) (X (X court) (X (X in) (X (X Georgia) (X (X ,) (X (X are) (X (X without) (X (X merit) (X .)))))))))))))))))))) (X (X closely) (X (X held) (X (X Morris) (X (X Communications) (X (X is) (X (X based) (X (X in) (X (X Augusta) (X (X ,) (X (X Ga) (X .))))))))))) (X (X the) (X (X units) (X (X that) (X (X filed) (X (X the) (X (X suit) (X (X are) (X (X Southeastern) (X (X Newspapers) (X (X Corp.) (X (X and) (X (X Florida) (X (X Publishing) (X (X Co) (X .))))))))))))))) (X (X syms) (X (X Corp.) (X (X completed) (X (X the) (X (X sale) (X (X of) (X (X its) (X (X A.) (X (X Sulka) (X (X &) (X (X Co.) (X (X subsidiary) (X (X ,) (X (X a) (X (X men) (X (X 's) (X (X luxury) (X (X haberdashery) (X (X ,) (X (X to) (X (X Luxco) (X (X Investments) (X .))))))))))))))))))))))) (X (X terms) (X (X were) (X (X n't) (X (X disclosed) (X .))))) (X (X as) (X (X Syms) (X (X 's) (X (X ``) (X (X core) (X (X business) (X (X of) (X (X off-price) (X (X retailing) (X (X grows) (X (X ,) (X (X a) (X (X small) (X (X subsidiary) (X (X that) (X (X is) (X (X operationally) (X (X unrelated) (X (X becomes) (X (X a) (X (X difficult) (X (X distraction) (X (X ,) (X (X '') (X (X said) (X (X Marcy) (X (X Syms) (X (X ,) (X (X president) (X (X of) (X (X the) (X (X parent) (X (X ,) (X (X in) (X (X a) (X (X statement) (X .))))))))))))))))))))))))))))))))))))) (X (X a) (X (X spokeswoman) (X (X said) (X (X Sulka) (X (X operates) (X (X a) (X (X total) (X (X of) (X (X seven) (X (X stores) (X (X in) (X (X the) (X (X U.S.) (X (X and) (X (X overseas) (X .)))))))))))))))) (X (X syms) (X (X operates) (X (X 25) (X (X off-price) (X (X apparel) (X (X stores) (X (X in) (X (X the) (X (X U.S.) (X .)))))))))) (X (X the) (X (X oil) (X (X industry) (X (X 's) (X (X middling) (X (X profits) (X (X could) (X (X persist) (X (X through) (X (X the) (X (X rest) (X (X of) (X (X the) (X (X year) (X .))))))))))))))) (X (X major) (X (X oil) (X (X companies) (X (X in) (X (X the) (X (X next) (X (X few) (X (X days) (X (X are) (X (X expected) (X (X to) (X (X report) (X (X much) (X (X less) (X (X robust) (X (X earnings) (X (X than) (X (X they) (X (X did) (X (X for) (X (X the) (X (X third) (X (X quarter) (X (X a) (X (X year) (X (X ago) (X (X ,) (X (X largely) (X (X reflecting) (X (X deteriorating) (X (X chemical) (X (X prices) (X (X and) (X (X gasoline) (X (X profitability) (X .)))))))))))))))))))))))))))))))))))) (X (X the) (X (X gasoline) (X (X picture) (X (X may) (X (X improve) (X (X this) (X (X quarter) (X (X ,) (X (X but) (X (X chemicals) (X (X are) (X (X likely) (X (X to) (X (X remain) (X (X weak) (X (X ,) (X (X industry) (X (X executives) (X (X and) (X (X analysts) (X (X say) (X (X ,) (X (X reducing) (X (X chances) (X (X that) (X (X profits) (X (X could) (X (X equal) (X (X their) (X (X year-earlier) (X (X performance) (X .)))))))))))))))))))))))))))))))) (X (X the) (X (X industry) (X (X is) (X (X ``) (X (X seeing) (X (X a) (X (X softening) (X (X somewhat) (X (X in) (X (X volume) (X (X and) (X (X certainly) (X (X in) (X (X price) (X (X in) (X (X petrochemicals) (X (X ,) (X (X '') (X (X Glenn) (X (X Cox) (X (X ,) (X (X president) (X (X of) (X (X Phillips) (X (X Petroleum) (X (X Co.) (X (X ,) (X (X said) (X (X in) (X (X an) (X (X interview) (X .)))))))))))))))))))))))))))))))) (X (X ``) (X (X That) (X (X change) (X (X will) (X (X obviously) (X (X impact) (X (X third) (X (X and) (X (X fourth) (X (X quarter) (X (X earnings) (X (X '') (X (X for) (X (X the) (X (X industry) (X (X in) (X (X general) (X (X ,) (X (X he) (X (X added) (X .))))))))))))))))))))) (X (X he) (X (X did) (X (X n't) (X (X forecast) (X (X Phillips) (X (X 's) (X (X results) (X .)))))))) (X (X but) (X (X securities) (X (X analysts) (X (X say) (X (X Phillips) (X (X will) (X (X be) (X (X among) (X (X the) (X (X companies) (X (X hard-hit) (X (X by) (X (X weak) (X (X chemical) (X (X prices) (X (X and) (X (X will) (X (X probably) (X (X post) (X (X a) (X (X drop) (X (X in) (X (X third-quarter) (X (X earnings) (X .))))))))))))))))))))))))) (X (X so) (X (X ,) (X (X too) (X (X ,) (X (X many) (X (X analysts) (X (X predict) (X (X ,) (X (X will) (X (X Exxon) (X (X Corp.) (X (X ,) (X (X Chevron) (X (X Corp.) (X (X and) (X (X Amoco) (X (X Corp) (X .)))))))))))))))))) (X (X typical) (X (X is) (X (X what) (X (X happened) (X (X to) (X (X the) (X (X price) (X (X of) (X (X ethylene) (X (X ,) (X (X a) (X (X major) (X (X commodity) (X (X chemical) (X (X produced) (X (X in) (X (X vast) (X (X amounts) (X (X by) (X (X many) (X (X oil) (X (X companies) (X .))))))))))))))))))))))) (X (X it) (X (X has) (X (X plunged) (X (X 13) (X (X %) (X (X since) (X (X July) (X (X to) (X (X around) (X (X 26) (X (X cents) (X (X a) (X (X pound) (X .)))))))))))))) (X (X a) (X (X year) (X (X ago) (X (X ethylene) (X (X sold) (X (X for) (X (X 33) (X (X cents) (X (X ,) (X (X peaking) (X (X at) (X (X about) (X (X 34) (X (X cents) (X (X last) (X (X December) (X .))))))))))))))))) (X (X a) (X (X big) (X (X reason) (X (X for) (X (X the) (X (X chemical) (X (X price) (X (X retreat) (X (X is) (X (X overexpansion) (X .))))))))))) (X (X beginning) (X (X in) (X (X mid-1987) (X (X ,) (X (X prices) (X (X began) (X (X accelerating) (X (X as) (X (X a) (X (X growing) (X (X U.S.) (X (X economy) (X (X and) (X (X the) (X (X weak) (X (X dollar) (X (X spurred) (X (X demand) (X .))))))))))))))))))) (X (X companies) (X (X added) (X (X capacity) (X (X furiously) (X .))))) (X (X now) (X (X ,) (X (X greatly) (X (X increased) (X (X supplies) (X (X are) (X (X on) (X (X the) (X (X market) (X (X ,) (X (X while) (X (X the) (X (X dollar) (X (X is) (X (X stronger) (X (X ,) (X (X and) (X (X domestic) (X (X economic) (X (X growth) (X (X is) (X (X slower) (X .))))))))))))))))))))))) (X (X third-quarter) (X (X profits) (X (X from) (X (X gasoline) (X (X were) (X (X weaker) (X .))))))) (X (X ``) (X (X Refining) (X (X margins) (X (X were) (X (X so) (X (X good) (X (X in) (X (X the) (X (X third) (X (X quarter) (X (X of) (X (X last) (X (X year) (X (X and) (X (X generally) (X (X not) (X (X very) (X (X good) (X (X this) (X (X year) (X (X ,) (X (X '') (X (X said) (X (X William) (X (X Randol) (X (X ,) (X (X a) (X (X securities) (X (X analyst) (X (X at) (X (X First) (X (X Boston) (X (X Corp) (X .)))))))))))))))))))))))))))))))))) (X (X oil) (X (X company) (X (X refineries) (X (X ran) (X (X flat) (X (X out) (X (X to) (X (X prepare) (X (X for) (X (X a) (X (X robust) (X (X holiday) (X (X driving) (X (X season) (X (X in) (X (X July) (X (X and) (X (X August) (X (X that) (X (X did) (X (X n't) (X (X materialize) (X .))))))))))))))))))))))) (X (X the) (X (X excess) (X (X supply) (X (X pushed) (X (X gasoline) (X (X prices) (X (X down) (X (X in) (X (X that) (X (X period) (X .))))))))))) (X (X in) (X (X addition) (X (X ,) (X (X crude) (X (X oil) (X (X prices) (X (X were) (X (X up) (X (X some) (X (X from) (X (X a) (X (X year) (X (X earlier) (X (X ,) (X (X further) (X (X pressuring) (X (X profitability) (X .)))))))))))))))))) (X (X refiners) (X (X say) (X (X margins) (X (X picked) (X (X up) (X (X in) (X (X September) (X (X ,) (X (X and) (X (X many) (X (X industry) (X (X officials) (X (X believe) (X (X gasoline) (X (X profits) (X (X will) (X (X rebound) (X (X this) (X (X quarter) (X (X ,) (X (X though) (X (X still) (X (X not) (X (X to) (X (X the) (X (X level) (X (X of) (X (X 1988) (X (X 's) (X (X fourth) (X (X quarter) (X .)))))))))))))))))))))))))))))))) (X (X during) (X (X the) (X (X 1988) (X (X second) (X (X half) (X (X ,) (X (X many) (X (X companies) (X (X posted) (X (X record) (X (X gasoline) (X (X and) (X (X chemical) (X (X profits) (X .))))))))))))))) (X (X crude) (X (X oil) (X (X production) (X (X may) (X (X turn) (X (X out) (X (X to) (X (X be) (X (X the) (X (X most) (X (X surprising) (X (X element) (X (X of) (X (X companies) (X (X ') (X (X earnings) (X (X this) (X (X year) (X .))))))))))))))))))) (X (X prices) (X (X --) (X (X averaging) (X (X roughly) (X (X $) (X (X 2) (X (X a) (X (X barrel) (X (X higher) (X (X in) (X (X the) (X (X third) (X (X quarter) (X (X than) (X (X a) (X (X year) (X (X earlier) (X (X --) (X (X have) (X (X stayed) (X (X well) (X (X above) (X (X most) (X (X companies) (X (X ') (X (X expectations) (X .))))))))))))))))))))))))))) (X (X demand) (X (X has) (X (X been) (X (X much) (X (X stronger) (X (X than) (X (X anticipated) (X (X ,) (X (X and) (X (X it) (X (X typically) (X (X accelerates) (X (X in) (X (X the) (X (X fourth) (X (X quarter) (X .))))))))))))))))) (X (X ``) (X (X We) (X (X could) (X (X see) (X (X higher) (X (X oil) (X (X prices) (X (X this) (X (X year) (X (X ,) (X (X '') (X (X said) (X (X Bryan) (X (X Jacoboski) (X (X ,) (X (X an) (X (X analyst) (X (X at) (X (X PaineWebber) (X (X Inc) (X .))))))))))))))))))))) (X (X that) (X (X will) (X (X translate) (X (X into) (X (X sharply) (X (X higher) (X (X production) (X (X profits) (X (X ,) (X (X particularly) (X (X compared) (X (X with) (X (X last) (X (X year) (X (X when) (X (X oil) (X (X prices) (X (X steadily) (X (X fell) (X (X to) (X (X below) (X (X $) (X (X 13) (X (X a) (X (X barrel) (X (X in) (X (X the) (X (X fourth) (X (X quarter) (X .)))))))))))))))))))))))))))))) (X (X while) (X (X oil) (X (X prices) (X (X have) (X (X been) (X (X better) (X (X than) (X (X expected) (X (X ,) (X (X natural) (X (X gas) (X (X prices) (X (X have) (X (X been) (X (X worse) (X .)))))))))))))))) (X (X in) (X (X the) (X (X third) (X (X quarter) (X (X ,) (X (X they) (X (X averaged) (X (X about) (X (X 5) (X (X %) (X (X less) (X (X than) (X (X they) (X (X were) (X (X in) (X (X 1988) (X .))))))))))))))))) (X (X the) (X (X main) (X (X reason) (X (X remains) (X (X weather) (X .)))))) (X (X last) (X (X summer) (X (X was) (X (X notable) (X (X for) (X (X a) (X (X heat) (X (X wave) (X (X and) (X (X drought) (X (X that) (X (X caused) (X (X utilities) (X (X to) (X (X burn) (X (X more) (X (X natural) (X (X gas) (X (X to) (X (X feed) (X (X increased) (X (X electrical) (X (X demand) (X (X from) (X (X air) (X (X conditioning) (X (X use) (X .)))))))))))))))))))))))))))) (X (X this) (X (X summer) (X (X ,) (X (X on) (X (X the) (X (X other) (X (X hand) (X (X ,) (X (X had) (X (X milder) (X (X weather) (X (X than) (X (X usual) (X .)))))))))))))) (X (X ``) (X (X We) (X (X 've) (X (X been) (X (X very) (X (X disappointed) (X (X in) (X (X the) (X (X performance) (X (X of) (X (X natural) (X (X gas) (X (X prices) (X (X ,) (X (X '') (X (X said) (X (X Mr.) (X (X Cox) (X (X ,) (X (X Phillips) (X (X 's) (X (X president) (X .))))))))))))))))))))))) (X (X ``) (X (X The) (X (X lagging) (X (X gas) (X (X price) (X (X is) (X (X not) (X (X going) (X (X to) (X (X assist) (X (X fourth) (X (X quarter) (X (X performance) (X (X as) (X (X many) (X (X had) (X (X expected) (X (X .) (X ''))))))))))))))))))) (X (X going) (X (X into) (X (X the) (X (X fourth) (X (X quarter) (X (X ,) (X (X natural) (X (X gas) (X (X prices) (X (X are) (X (X anywhere) (X (X from) (X (X 8) (X (X %) (X (X to) (X (X 17) (X (X %) (X (X lower) (X (X than) (X (X a) (X (X year) (X (X earlier) (X .))))))))))))))))))))))) (X (X for) (X (X instance) (X (X ,) (X (X natural) (X (X gas) (X (X currently) (X (X produced) (X (X along) (X (X the) (X (X Gulf) (X (X Coast) (X (X is) (X (X selling) (X (X on) (X (X the) (X (X spot) (X (X market) (X (X for) (X (X around) (X (X $) (X (X 1.47) (X (X a) (X (X thousand) (X (X cubic) (X (X feet) (X (X ,) (X (X down) (X (X 13) (X (X %) (X (X from) (X (X $) (X (X 1.69) (X (X a) (X (X thousand) (X (X cubic) (X (X feet) (X (X a) (X (X year) (X (X ago) (X .)))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X Bush) (X (X administration) (X (X ,) (X (X trying) (X (X to) (X (X blunt) (X (X growing) (X (X demands) (X (X from) (X (X Western) (X (X Europe) (X (X for) (X (X a) (X (X relaxation) (X (X of) (X (X controls) (X (X on) (X (X exports) (X (X to) (X (X the) (X (X Soviet) (X (X bloc) (X (X ,) (X (X is) (X (X questioning) (X (X whether) (X (X Italy) (X (X 's) (X (X Ing) (X (X .) (X (X C.) (X (X Olivetti) (X (X &) (X (X Co.) (X (X supplied) (X (X militarily) (X (X valuable) (X (X technology) (X (X to) (X (X the) (X (X Soviets) (X .))))))))))))))))))))))))))))))))))))))))))) (X (X most) (X (X of) (X (X the) (X (X Western) (X (X European) (X (X members) (X (X of) (X (X Coordinating) (X (X Committee) (X (X on) (X (X Multilateral) (X (X Export) (X (X Controls) (X (X ,) (X (X the) (X (X unofficial) (X (X forum) (X (X through) (X (X which) (X (X the) (X (X U.S.) (X (X and) (X (X its) (X (X allies) (X (X align) (X (X their) (X (X export-control) (X (X policies) (X (X ,) (X (X are) (X (X expected) (X (X to) (X (X argue) (X (X for) (X (X more) (X (X liberal) (X (X export) (X (X rules) (X (X at) (X (X a) (X (X meeting) (X (X to) (X (X be) (X (X held) (X (X in) (X (X Paris) (X (X Oct.) (X (X 25) (X (X and) (X (X 26) (X .))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X they) (X (X plan) (X (X to) (X (X press) (X (X specifically) (X (X for) (X (X a) (X (X relaxation) (X (X of) (X (X rules) (X (X governing) (X (X exports) (X (X of) (X (X machine) (X (X tools) (X (X ,) (X (X computers) (X (X and) (X (X other) (X (X high-technology) (X (X products) (X .)))))))))))))))))))))) (X (X but) (X (X the) (X (X Bush) (X (X administration) (X (X says) (X (X it) (X (X wants) (X (X to) (X (X see) (X (X evidence) (X (X that) (X (X all) (X (X Cocom) (X (X members) (X (X are) (X (X complying) (X (X fully) (X (X with) (X (X existing) (X (X export-control) (X (X procedures) (X (X before) (X (X it) (X (X will) (X (X support) (X (X further) (X (X liberalization) (X .)))))))))))))))))))))))))))) (X (X to) (X (X make) (X (X its) (X (X point) (X (X ,) (X (X it) (X (X is) (X (X challenging) (X (X the) (X (X Italian) (X (X government) (X (X to) (X (X explain) (X (X reports) (X (X that) (X (X Olivetti) (X (X may) (X (X have) (X (X supplied) (X (X the) (X (X Soviet) (X (X Union) (X (X with) (X (X sophisticated) (X (X computer-driven) (X (X devices) (X (X that) (X (X could) (X (X be) (X (X used) (X (X to) (X (X build) (X (X parts) (X (X for) (X (X combat) (X (X aircraft) (X .))))))))))))))))))))))))))))))))))))) (X (X the) (X (X London) (X (X Sunday) (X (X Times) (X (X ,) (X (X which) (X (X first) (X (X reported) (X (X the) (X (X U.S.) (X (X concerns) (X (X ,) (X (X cited) (X (X a) (X (X U.S.) (X (X intelligence) (X (X report) (X (X as) (X (X the) (X (X source) (X (X of) (X (X the) (X (X allegations) (X (X that) (X (X Olivetti) (X (X exported) (X (X $) (X (X 25) (X (X million) (X (X in) (X (X ``) (X (X embargoed) (X (X ,) (X (X state-of-the-art) (X (X ,) (X (X flexible) (X (X manufacturing) (X (X systems) (X (X to) (X (X the) (X (X Soviet) (X (X aviation) (X (X industry) (X (X .) (X ''))))))))))))))))))))))))))))))))))))))))))))) (X (X olivetti) (X (X reportedly) (X (X began) (X (X shipping) (X (X these) (X (X tools) (X (X in) (X (X 1984) (X .))))))))) (X (X a) (X (X State) (X (X Department) (X (X spokesman) (X (X acknowledged) (X (X that) (X (X the) (X (X U.S.) (X (X is) (X (X discussing) (X (X the) (X (X allegations) (X (X with) (X (X the) (X (X Italian) (X (X government) (X (X and) (X (X Cocom) (X (X ,) (X (X but) (X (X declined) (X (X to) (X (X confirm) (X (X any) (X (X details) (X .)))))))))))))))))))))))))) (X (X italian) (X (X President) (X (X Francesco) (X (X Cossiga) (X (X promised) (X (X a) (X (X quick) (X (X investigation) (X (X into) (X (X whether) (X (X Olivetti) (X (X broke) (X (X Cocom) (X (X rules) (X .))))))))))))))) (X (X president) (X (X Bush) (X (X called) (X (X his) (X (X attention) (X (X to) (X (X the) (X (X matter) (X (X during) (X (X the) (X (X Italian) (X (X leader) (X (X 's) (X (X visit) (X (X here) (X (X last) (X (X week) (X .)))))))))))))))))) (X (X olivetti) (X (X has) (X (X denied) (X (X that) (X (X it) (X (X violated) (X (X Cocom) (X (X rules) (X (X ,) (X (X asserting) (X (X that) (X (X the) (X (X reported) (X (X shipments) (X (X were) (X (X properly) (X (X licensed) (X (X by) (X (X the) (X (X Italian) (X (X authorities) (X .)))))))))))))))))))))) (X (X although) (X (X the) (X (X legality) (X (X of) (X (X these) (X (X sales) (X (X is) (X (X still) (X (X an) (X (X open) (X (X question) (X (X ,) (X (X the) (X (X disclosure) (X (X could) (X (X n't) (X (X be) (X (X better) (X (X timed) (X (X to) (X (X support) (X (X the) (X (X position) (X (X of) (X (X export-control) (X (X hawks) (X (X in) (X (X the) (X (X Pentagon) (X (X and) (X (X the) (X (X intelligence) (X (X community) (X .)))))))))))))))))))))))))))))))))) (X (X ``) (X (X It) (X (X seems) (X (X to) (X (X me) (X (X that) (X (X a) (X (X story) (X (X like) (X (X this) (X (X breaks) (X (X just) (X (X before) (X (X every) (X (X important) (X (X Cocom) (X (X meeting) (X (X ,) (X (X '') (X (X said) (X (X a) (X (X Washington) (X (X lobbyist) (X (X for) (X (X a) (X (X number) (X (X of) (X (X U.S.) (X (X computer) (X (X companies) (X .))))))))))))))))))))))))))))))) (X (X the) (X (X Bush) (X (X administration) (X (X has) (X (X sent) (X (X conflicting) (X (X signals) (X (X about) (X (X its) (X (X export-control) (X (X policies) (X (X ,) (X (X reflecting) (X (X unhealed) (X (X divisions) (X (X among) (X (X several) (X (X competing) (X (X agencies) (X .)))))))))))))))))))) (X (X last) (X (X summer) (X (X ,) (X (X Mr.) (X (X Bush) (X (X moved) (X (X the) (X (X administration) (X (X in) (X (X the) (X (X direction) (X (X of) (X (X gradual) (X (X liberalization) (X (X when) (X (X he) (X (X told) (X (X a) (X (X North) (X (X Atlantic) (X (X Treaty) (X (X Organization) (X (X meeting) (X (X that) (X (X he) (X (X would) (X (X allow) (X (X some) (X (X exceptions) (X (X to) (X (X the) (X (X Cocom) (X (X embargo) (X (X of) (X (X strategic) (X (X goods) (X .))))))))))))))))))))))))))))))))))))) (X (X but) (X (X more) (X (X recently) (X (X ,) (X (X the) (X (X Pentagon) (X (X and) (X (X the) (X (X Commerce) (X (X Department) (X (X openly) (X (X feuded) (X (X over) (X (X the) (X (X extent) (X (X to) (X (X which) (X (X Cocom) (X (X should) (X (X liberalize) (X (X exports) (X (X of) (X (X personal) (X (X computers) (X (X to) (X (X the) (X (X bloc) (X .)))))))))))))))))))))))))))) (X (X however) (X (X ,) (X (X these) (X (X agencies) (X (X generally) (X (X agree) (X (X that) (X (X the) (X (X West) (X (X should) (X (X be) (X (X cautious) (X (X about) (X (X any) (X (X further) (X (X liberalization) (X .))))))))))))))))) (X (X ``) (X (X There) (X (X 's) (X (X no) (X (X evidence) (X (X that) (X (X the) (X (X Soviet) (X (X program) (X (X to) (X (X -LRB-) (X (X illegally) (X (X -RRB-) (X (X acquire) (X (X Western) (X (X technology) (X (X has) (X (X diminished) (X (X ,) (X (X '') (X (X said) (X (X a) (X (X State) (X (X Department) (X (X spokesman) (X .)))))))))))))))))))))))))) (X (X salomon) (X (X Brothers) (X (X International) (X (X Ltd.) (X (X ,) (X (X a) (X (X British) (X (X subsidiary) (X (X of) (X (X Salomon) (X (X Inc.) (X (X ,) (X (X announced) (X (X it) (X (X will) (X (X issue) (X (X warrants) (X (X on) (X (X shares) (X (X of) (X (X Hong) (X (X Kong) (X (X Telecommunications) (X (X Ltd) (X .))))))))))))))))))))))))) (X (X the) (X (X move) (X (X closely) (X (X follows) (X (X a) (X (X similar) (X (X offer) (X (X by) (X (X Salomon) (X (X of) (X (X warrants) (X (X for) (X (X shares) (X (X of) (X (X Hongkong) (X (X &) (X (X Shanghai) (X (X Banking) (X (X Corp) (X .)))))))))))))))))))) (X (X under) (X (X the) (X (X latest) (X (X offer) (X (X ,) (X (X HK$) (X (X 62.5) (X (X million) (X (X -LRB-) (X (X US$) (X (X 8) (X (X million) (X (X -RRB-) (X (X of) (X (X three-year) (X (X warrants) (X (X will) (X (X be) (X (X issued) (X (X in) (X (X London) (X (X ,) (X (X each) (X (X giving) (X (X buyers) (X (X the) (X (X right) (X (X to) (X (X buy) (X (X one) (X (X Hong) (X (X Kong) (X (X Telecommunications) (X (X share) (X (X at) (X (X a) (X (X price) (X (X to) (X (X be) (X (X determined) (X (X Friday) (X .)))))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X 50) (X (X million) (X (X warrants) (X (X will) (X (X be) (X (X priced) (X (X at) (X (X HK$) (X (X 1.25) (X (X each) (X (X and) (X (X are) (X (X expected) (X (X to) (X (X carry) (X (X a) (X (X premium) (X (X to) (X (X the) (X (X share) (X (X price) (X (X of) (X (X about) (X (X 26) (X (X %) (X .))))))))))))))))))))))))))) (X (X in) (X (X trading) (X (X on) (X (X the) (X (X Stock) (X (X Exchange) (X (X of) (X (X Hong) (X (X Kong) (X (X ,) (X (X the) (X (X shares) (X (X closed) (X (X Wednesday) (X (X at) (X (X HK$) (X (X 4.80) (X (X each) (X .))))))))))))))))))) (X (X at) (X (X this) (X (X price) (X (X ,) (X (X the) (X (X shares) (X (X would) (X (X have) (X (X to) (X (X rise) (X (X above) (X (X HK$) (X (X 6.05) (X (X for) (X (X subscribers) (X (X to) (X (X Salomon) (X (X 's) (X (X issue) (X (X to) (X (X profitably) (X (X convert) (X (X their) (X (X warrants) (X .))))))))))))))))))))))))) (X (X while) (X (X Hong) (X (X Kong) (X (X companies) (X (X have) (X (X in) (X (X the) (X (X past) (X (X issued) (X (X warrants) (X (X on) (X (X their) (X (X own) (X (X shares) (X (X ,) (X (X Salomon) (X (X 's) (X (X warrants) (X (X are) (X (X the) (X (X first) (X (X here) (X (X to) (X (X be) (X (X issued) (X (X by) (X (X a) (X (X third) (X (X party) (X .)))))))))))))))))))))))))))))) (X (X salomon) (X (X will) (X (X ``) (X (X cover) (X (X '') (X (X the) (X (X warrants) (X (X by) (X (X buying) (X (X sufficient) (X (X shares) (X (X ,) (X (X or) (X (X options) (X (X to) (X (X purchase) (X (X shares) (X (X ,) (X (X to) (X (X cover) (X (X its) (X (X entire) (X (X position) (X .)))))))))))))))))))))))) (X (X bankers) (X (X said) (X (X warrants) (X (X for) (X (X Hong) (X (X Kong) (X (X stocks) (X (X are) (X (X attractive) (X (X because) (X (X they) (X (X give) (X (X foreign) (X (X investors) (X (X ,) (X (X wary) (X (X of) (X (X volatility) (X (X in) (X (X the) (X (X colony) (X (X 's) (X (X stock) (X (X market) (X (X ,) (X (X an) (X (X opportunity) (X (X to) (X (X buy) (X (X shares) (X (X without) (X (X taking) (X (X too) (X (X great) (X (X a) (X (X risk) (X .))))))))))))))))))))))))))))))))))))) (X (X the) (X (X Hong) (X (X Kong) (X (X Telecommunications) (X (X warrants) (X (X should) (X (X be) (X (X attractive) (X (X to) (X (X buyers) (X (X in) (X (X Europe) (X (X ,) (X (X the) (X (X bankers) (X (X added) (X (X ,) (X (X because) (X (X the) (X (X group) (X (X is) (X (X one) (X (X of) (X (X a) (X (X handful) (X (X of) (X (X blue-chip) (X (X stocks) (X (X on) (X (X the) (X (X Hong) (X (X Kong) (X (X market) (X (X that) (X (X has) (X (X international) (X (X appeal) (X .)))))))))))))))))))))))))))))))))))))) (X (X financial) (X (X Corp.) (X (X of) (X (X Santa) (X (X Barbara) (X (X filed) (X (X suit) (X (X against) (X (X former) (X (X stock) (X (X speculator) (X (X Ivan) (X (X F.) (X (X Boesky) (X (X and) (X (X Drexel) (X (X Burnham) (X (X Lambert) (X (X Inc.) (X (X ,) (X (X charging) (X (X they) (X (X defrauded) (X (X the) (X (X thrift) (X (X by) (X (X concealing) (X (X their) (X (X relationship) (X (X when) (X (X persuading) (X (X it) (X (X to) (X (X buy) (X (X $) (X (X 284) (X (X million) (X (X in) (X (X high-yield) (X (X ,) (X (X high-risk) (X (X junk) (X (X bonds) (X .)))))))))))))))))))))))))))))))))))))))))))) (X (X in) (X (X a) (X (X suit) (X (X filed) (X (X in) (X (X federal) (X (X court) (X (X Thursday) (X (X ,) (X (X the) (X (X S&L) (X (X alleged) (X (X that) (X (X a) (X (X ``) (X (X disproportionate) (X (X number) (X (X '') (X (X of) (X (X the) (X (X bonds) (X (X it) (X (X purchased) (X (X in) (X (X 1984) (X (X declined) (X (X in) (X (X value) (X .))))))))))))))))))))))))))))) (X (X financial) (X (X Corp.) (X (X purchased) (X (X the) (X (X bonds) (X (X ,) (X (X the) (X (X suit) (X (X alleged) (X (X ,) (X (X after) (X (X Mr.) (X (X Boesky) (X (X and) (X (X Drexel) (X (X negotiated) (X (X an) (X (X agreement) (X (X for) (X (X Vagabond) (X (X Hotels) (X (X to) (X (X purchase) (X (X a) (X (X 51) (X (X %) (X (X stake) (X (X in) (X (X the) (X (X thrift) (X (X for) (X (X about) (X (X $) (X (X 34) (X (X million) (X .)))))))))))))))))))))))))))))))))))) (X (X vagabond) (X (X Hotels) (X (X was) (X (X controlled) (X (X by) (X (X Mr.) (X (X Boesky) (X (X ,) (X (X who) (X (X currently) (X (X is) (X (X serving) (X (X a) (X (X prison) (X (X term) (X (X for) (X (X securities) (X (X violations) (X .))))))))))))))))))) (X (X officials) (X (X at) (X (X Drexel) (X (X said) (X (X they) (X (X had) (X (X n't) (X (X seen) (X (X the) (X (X suit) (X (X and) (X (X thus) (X (X could) (X (X n't) (X (X comment) (X .)))))))))))))))) (X (X in) (X (X addition) (X (X to) (X (X $) (X (X 33) (X (X million) (X (X compensatory) (X (X damages) (X (X ,) (X (X the) (X (X suit) (X (X seeks) (X (X $) (X (X 100) (X (X million) (X (X in) (X (X punitive) (X (X damages) (X .))))))))))))))))))) (X (X also) (X (X named) (X (X in) (X (X the) (X (X suit) (X (X is) (X (X Ivan) (X (X F.) (X (X Boesky) (X (X Corp.) (X (X and) (X (X Northview) (X (X Corp.) (X (X ,) (X (X the) (X (X successor) (X (X company) (X (X to) (X (X Vagabonds) (X (X Hotels) (X .))))))))))))))))))))) (X (X northview) (X (X officials) (X (X could) (X (X n't) (X (X be) (X (X located) (X .))))))) (X (X financial) (X (X Corp.) (X (X said) (X (X it) (X (X agreed) (X (X to) (X (X buy) (X (X the) (X (X bonds) (X (X after) (X (X a) (X (X representative) (X (X of) (X (X Ivan) (X (X F.) (X (X Boesky) (X (X Corp.) (X (X visited) (X (X it) (X (X in) (X (X November) (X (X 1983) (X (X and) (X (X said) (X (X Financial) (X (X Corp.) (X (X could) (X (X improve) (X (X its) (X (X financial) (X (X condition) (X (X by) (X (X purchasing) (X (X the) (X (X bonds) (X .)))))))))))))))))))))))))))))))))))) (X (X shortly) (X (X before) (X (X the) (X (X visit) (X (X ,) (X (X Mr.) (X (X Boesky) (X (X and) (X (X Drexel) (X (X representives) (X (X had) (X (X met) (X (X with) (X (X Financial) (X (X Corp.) (X (X officials) (X (X and) (X (X had) (X (X signed) (X (X a) (X (X letter) (X (X of) (X (X intent) (X (X to) (X (X acquire) (X (X the) (X (X 51) (X (X %) (X (X stake) (X (X in) (X (X the) (X (X company) (X .))))))))))))))))))))))))))))))))) (X (X however) (X (X ,) (X (X the) (X (X agreement) (X (X was) (X (X canceled) (X (X in) (X (X June) (X (X 1984) (X .)))))))))) (X (X financial) (X (X Corp.) (X (X purchased) (X (X the) (X (X bonds) (X (X in) (X (X at) (X (X least) (X (X 70) (X (X different) (X (X transactions) (X (X in) (X (X 1984) (X (X and) (X (X since) (X (X then) (X (X has) (X (X realized) (X (X $) (X (X 11) (X (X million) (X (X in) (X (X losses) (X (X on) (X (X them) (X (X ,) (X (X the) (X (X company) (X (X said) (X .)))))))))))))))))))))))))))))) (X (X ideal) (X (X Basic) (X (X Industries) (X (X Inc.) (X (X said) (X (X its) (X (X directors) (X (X reached) (X (X an) (X (X agreement) (X (X in) (X (X principle) (X (X calling) (X (X for) (X (X HOFI) (X (X North) (X (X America) (X (X Inc.) (X (X to) (X (X combine) (X (X its) (X (X North) (X (X American) (X (X cement) (X (X holdings) (X (X with) (X (X Ideal) (X (X in) (X (X a) (X (X transaction) (X (X that) (X (X will) (X (X leave) (X (X Ideal) (X (X 's) (X (X minority) (X (X shareholders) (X (X with) (X (X 12.8) (X (X %) (X (X of) (X (X the) (X (X combined) (X (X company) (X .))))))))))))))))))))))))))))))))))))))))))))) (X (X hofi) (X (X ,) (X (X the) (X (X North) (X (X American) (X (X holding) (X (X company) (X (X of) (X (X Swiss) (X (X concern) (X (X Holderbank) (X (X Financiere) (X (X Glaris) (X (X Ltd.) (X (X ,) (X (X previously) (X (X proposed) (X (X combining) (X (X its) (X (X 100) (X (X %) (X (X stake) (X (X in) (X (X St.) (X (X Lawrence) (X (X Cement) (X (X Inc.) (X (X and) (X (X its) (X (X 60) (X (X %) (X (X stake) (X (X in) (X (X Dundee) (X (X Cement) (X (X Co.) (X (X with) (X (X its) (X (X 67) (X (X %) (X (X stake) (X (X in) (X (X Ideal) (X .)))))))))))))))))))))))))))))))))))))))))))) (X (X but) (X (X HOFI) (X (X 's) (X (X first) (X (X offer) (X (X would) (X (X have) (X (X given) (X (X Ideal) (X (X 's) (X (X other) (X (X shareholders) (X (X about) (X (X 10) (X (X %) (X (X of) (X (X the) (X (X combined) (X (X company) (X .)))))))))))))))))))) (X (X ideal) (X (X 's) (X (X directors) (X (X rejected) (X (X that) (X (X offer) (X (X ,) (X (X although) (X (X they) (X (X said) (X (X they) (X (X endorsed) (X (X the) (X (X merger) (X (X proposal) (X .)))))))))))))))) (X (X under) (X (X the) (X (X agreement) (X (X ,) (X (X HOFI) (X (X will) (X (X own) (X (X 87.2) (X (X %) (X (X of) (X (X the) (X (X combined) (X (X company) (X .)))))))))))))) (X (X ideal) (X (X 's) (X (X current) (X (X operations) (X (X will) (X (X represent) (X (X about) (X (X 39.2) (X (X %) (X (X of) (X (X the) (X (X combined) (X (X company) (X .)))))))))))))) (X (X the) (X (X transaction) (X (X is) (X (X subject) (X (X to) (X (X a) (X (X definitive) (X (X agreement) (X (X and) (X (X approval) (X (X by) (X (X Ideal) (X (X shareholders) (X .)))))))))))))) (X (X ideal) (X (X said) (X (X it) (X (X expects) (X (X to) (X (X complete) (X (X the) (X (X transaction) (X (X early) (X (X next) (X (X year) (X .)))))))))))) (X (X while) (X (X corn) (X (X and) (X (X soybean) (X (X prices) (X (X have) (X (X slumped) (X (X well) (X (X below) (X (X their) (X (X drought-induced) (X (X peaks) (X (X of) (X (X 1988) (X (X ,) (X (X wheat) (X (X prices) (X (X remain) (X (X stubbornly) (X (X high) (X .))))))))))))))))))))) (X (X and) (X (X they) (X (X 're) (X (X likely) (X (X to) (X (X stay) (X (X that) (X (X way) (X (X for) (X (X months) (X (X to) (X (X come) (X (X ,) (X (X analysts) (X (X say) (X .)))))))))))))))) (X (X for) (X (X one) (X (X thing) (X (X ,) (X (X even) (X (X with) (X (X many) (X (X farmers) (X (X planting) (X (X more) (X (X winter) (X (X wheat) (X (X this) (X (X year) (X (X than) (X (X last) (X (X ,) (X (X tight) (X (X wheat) (X (X supplies) (X (X are) (X (X likely) (X (X to) (X (X support) (X (X prices) (X (X well) (X (X into) (X (X 1990) (X (X ,) (X (X the) (X (X analysts) (X (X say) (X .))))))))))))))))))))))))))))))))) (X (X and) (X (X if) (X (X rain) (X (X does) (X (X n't) (X (X fall) (X (X soon) (X (X across) (X (X many) (X (X of) (X (X the) (X (X Great) (X (X Plains) (X (X ') (X (X wheat-growing) (X (X areas) (X (X ,) (X (X yields) (X (X in) (X (X the) (X (X crop) (X (X now) (X (X being) (X (X planted) (X (X could) (X (X be) (X (X reduced) (X (X ,) (X (X further) (X (X squeezing) (X (X supplies) (X .)))))))))))))))))))))))))))))))) (X (X also) (X (X supporting) (X (X prices) (X (X are) (X (X expectations) (X (X that) (X (X the) (X (X Soviet) (X (X Union) (X (X will) (X (X place) (X (X substantial) (X (X buying) (X (X orders) (X (X over) (X (X the) (X (X next) (X (X few) (X (X months) (X .)))))))))))))))))))) (X (X by) (X (X next) (X (X May) (X (X 31) (X (X ,) (X (X stocks) (X (X of) (X (X U.S.) (X (X wheat) (X (X to) (X (X be) (X (X carried) (X (X over) (X (X into) (X (X the) (X (X next) (X (X season) (X (X --) (X (X before) (X (X the) (X (X winter) (X (X wheat) (X (X now) (X (X being) (X (X planted) (X (X is) (X (X harvested) (X (X --) (X (X are) (X (X projected) (X (X to) (X (X drop) (X (X to) (X (X 443) (X (X million) (X (X bushels) (X .))))))))))))))))))))))))))))))))))))) (X (X that) (X (X would) (X (X be) (X (X the) (X (X lowest) (X (X level) (X (X since) (X (X the) (X (X early) (X (X 1970s) (X .))))))))))) (X (X stocks) (X (X were) (X (X 698) (X (X million) (X (X bushels) (X (X on) (X (X May) (X (X 31) (X (X of) (X (X this) (X (X year) (X .)))))))))))) (X (X in) (X (X response) (X (X to) (X (X dwindling) (X (X domestic) (X (X supplies) (X (X ,) (X (X Agriculture) (X (X Secretary) (X (X Clayton) (X (X Yeutter) (X (X last) (X (X month) (X (X said) (X (X the) (X (X U.S.) (X (X government) (X (X would) (X (X slightly) (X (X increase) (X (X the) (X (X number) (X (X of) (X (X acres) (X (X farmers) (X (X can) (X (X plant) (X (X in) (X (X wheat) (X (X for) (X (X next) (X (X year) (X (X and) (X (X still) (X (X qualify) (X (X for) (X (X federal) (X (X support) (X (X payments) (X .)))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X government) (X (X estimates) (X (X that) (X (X the) (X (X new) (X (X plan) (X (X will) (X (X boost) (X (X production) (X (X next) (X (X year) (X (X by) (X (X about) (X (X 66) (X (X million) (X (X bushels) (X .)))))))))))))))))) (X (X it) (X (X now) (X (X estimates) (X (X production) (X (X for) (X (X next) (X (X year) (X (X at) (X (X just) (X (X under) (X (X 2.6) (X (X billion) (X (X bushels) (X (X ,) (X (X compared) (X (X with) (X (X this) (X (X year) (X (X 's) (X (X estimated) (X (X 2.04) (X (X billion) (X (X and) (X (X a) (X (X drought-stunted) (X (X 1.81) (X (X billion) (X (X in) (X (X 1988) (X .)))))))))))))))))))))))))))))) (X (X but) (X (X the) (X (X full) (X (X effect) (X (X on) (X (X prices) (X (X of) (X (X the) (X (X winter) (X (X wheat) (X (X now) (X (X being) (X (X planted) (X (X wo) (X (X n't) (X (X be) (X (X felt) (X (X until) (X (X the) (X (X second) (X (X half) (X (X of) (X (X next) (X (X year) (X .))))))))))))))))))))))))) (X (X until) (X (X then) (X (X ,) (X (X limited) (X (X stocks) (X (X are) (X (X likely) (X (X to) (X (X keep) (X (X prices) (X (X near) (X (X the) (X (X $) (X (X 4-a-bushel) (X (X level) (X (X ,) (X (X analysts) (X (X say) (X .))))))))))))))))))) (X (X on) (X (X the) (X (X Chicago) (X (X Board) (X (X of) (X (X Trade) (X (X Friday) (X (X ,) (X (X wheat) (X (X for) (X (X December) (X (X delivery) (X (X settled) (X (X at) (X (X $) (X (X 4.0675) (X (X a) (X (X bushel) (X (X ,) (X (X unchanged) (X .))))))))))))))))))))) (X (X in) (X (X theory) (X (X at) (X (X least) (X (X ,) (X (X tight) (X (X supplies) (X (X next) (X (X spring) (X (X could) (X (X leave) (X (X the) (X (X wheat) (X (X futures) (X (X market) (X (X susceptible) (X (X to) (X (X a) (X (X supply-demand) (X (X squeeze) (X (X ,) (X (X said) (X (X Daniel) (X (X Basse) (X (X ,) (X (X a) (X (X futures) (X (X analyst) (X (X with) (X (X AgResource) (X (X Co.) (X (X in) (X (X Chicago) (X .)))))))))))))))))))))))))))))))))) (X (X such) (X (X a) (X (X situation) (X (X can) (X (X wreak) (X (X havoc) (X (X ,) (X (X as) (X (X was) (X (X shown) (X (X by) (X (X the) (X (X emergency) (X (X that) (X (X developed) (X (X in) (X (X soybean) (X (X futures) (X (X trading) (X (X this) (X (X summer) (X (X on) (X (X the) (X (X Chicago) (X (X Board) (X (X of) (X (X Trade) (X .)))))))))))))))))))))))))))) (X (X in) (X (X July) (X (X ,) (X (X the) (X (X CBOT) (X (X ordered) (X (X Ferruzzi) (X (X Finanziaria) (X (X S.p) (X (X .) (X (X A.) (X (X to) (X (X liquidate) (X (X futures) (X (X positions) (X (X equal) (X (X to) (X (X about) (X (X 23) (X (X million) (X (X bushels) (X (X of) (X (X soybeans) (X .)))))))))))))))))))))))) (X (X the) (X (X exchange) (X (X said) (X (X it) (X (X feared) (X (X that) (X (X some) (X (X members) (X (X would) (X (X n't) (X (X be) (X (X able) (X (X to) (X (X find) (X (X enough) (X (X soybeans) (X (X to) (X (X deliver) (X (X and) (X (X would) (X (X have) (X (X to) (X (X default) (X (X on) (X (X their) (X (X contractual) (X (X obligation) (X (X to) (X (X the) (X (X Italian) (X (X conglomerate) (X (X ,) (X (X which) (X (X had) (X (X refused) (X (X requests) (X (X to) (X (X reduce) (X (X its) (X (X holdings) (X .))))))))))))))))))))))))))))))))))))))))) (X (X ferruzzi) (X (X has) (X (X denied) (X (X it) (X (X was) (X (X trying) (X (X to) (X (X manipulate) (X (X the) (X (X soybean) (X (X futures) (X (X market) (X .))))))))))))) (X (X unseasonably) (X (X hot) (X (X ,) (X (X dry) (X (X weather) (X (X across) (X (X large) (X (X portions) (X (X of) (X (X the) (X (X Great) (X (X Plains) (X (X and) (X (X in) (X (X wheat-growing) (X (X areas) (X (X in) (X (X Washington) (X (X and) (X (X Oregon) (X (X is) (X (X threatening) (X (X to) (X (X reduce) (X (X the) (X (X yield) (X (X from) (X (X this) (X (X season) (X (X 's) (X (X winter) (X (X wheat) (X (X crop) (X (X ,) (X (X said) (X (X Conrad) (X (X Leslie) (X (X ,) (X (X a) (X (X futures) (X (X analyst) (X (X and) (X (X head) (X (X of) (X (X Leslie) (X (X Analytical) (X (X in) (X (X Chicago) (X .))))))))))))))))))))))))))))))))))))))))))))))))) (X (X for) (X (X example) (X (X ,) (X (X in) (X (X the) (X (X Oklahoma) (X (X panhandle) (X (X ,) (X (X 40) (X (X %) (X (X or) (X (X more) (X (X of) (X (X the) (X (X topsoil) (X (X is) (X (X short) (X (X of) (X (X moisture) (X .)))))))))))))))))))) (X (X that) (X (X figure) (X (X climbs) (X (X to) (X (X about) (X (X 47) (X (X %) (X (X in) (X (X wheat-growing) (X (X portions) (X (X of) (X (X Kansas) (X (X ,) (X (X he) (X (X said) (X .)))))))))))))))) (X (X the) (X (X Soviet) (X (X Union) (X (X has) (X (X n't) (X (X given) (X (X any) (X (X clear) (X (X indication) (X (X of) (X (X its) (X (X wheat) (X (X purchase) (X (X plans) (X (X ,) (X (X but) (X (X many) (X (X analysts) (X (X expect) (X (X Moscow) (X (X to) (X (X place) (X (X sizable) (X (X orders) (X (X for) (X (X U.S.) (X (X wheat) (X (X in) (X (X the) (X (X next) (X (X few) (X (X months) (X (X ,) (X (X further) (X (X supporting) (X (X prices) (X .))))))))))))))))))))))))))))))))))))) (X (X ``) (X (X Wheat) (X (X prices) (X (X will) (X (X increasingly) (X (X pivot) (X (X off) (X (X of) (X (X Soviet) (X (X demand) (X (X '') (X (X in) (X (X coming) (X (X weeks) (X (X ,) (X (X predicted) (X (X Richard) (X (X Feltes) (X (X ,) (X (X vice) (X (X president) (X (X ,) (X (X research) (X (X ,) (X (X for) (X (X Refco) (X (X Inc.) (X (X in) (X (X Chicago) (X .)))))))))))))))))))))))))))))) (X (X looking) (X (X ahead) (X (X to) (X (X other) (X (X commodity) (X (X markets) (X (X this) (X (X week) (X :))))))))) (X (X orange) (X (X Juice) (X (X Traders) (X (X will) (X (X be) (X (X watching) (X (X to) (X (X see) (X (X how) (X (X long) (X (X and) (X (X how) (X (X far) (X (X the) (X (X price) (X (X decline) (X (X that) (X (X began) (X (X Friday) (X (X will) (X (X go) (X .)))))))))))))))))))))) (X (X late) (X (X Thursday) (X (X ,) (X (X after) (X (X the) (X (X close) (X (X of) (X (X trading) (X (X ,) (X (X the) (X (X market) (X (X received) (X (X what) (X (X would) (X (X normally) (X (X have) (X (X been) (X (X a) (X (X bullish) (X (X U.S.) (X (X Department) (X (X of) (X (X Agriculture) (X (X estimate) (X (X of) (X (X the) (X (X 1989-90) (X (X Florida) (X (X orange) (X (X crop) (X .))))))))))))))))))))))))))))))) (X (X it) (X (X was) (X (X near) (X (X the) (X (X low) (X (X range) (X (X of) (X (X estimates) (X (X ,) (X (X at) (X (X 130) (X (X million) (X (X 90-pound) (X (X boxes) (X (X ,) (X (X compared) (X (X with) (X (X 146.6) (X (X million) (X (X boxes) (X (X last) (X (X season) (X .))))))))))))))))))))))) (X (X however) (X (X ,) (X (X as) (X (X expected) (X (X ,) (X (X Brazil) (X (X waited) (X (X for) (X (X the) (X (X crop) (X (X estimate) (X (X to) (X (X come) (X (X out) (X (X and) (X (X then) (X (X cut) (X (X the) (X (X export) (X (X price) (X (X of) (X (X its) (X (X juice) (X (X concentrate) (X (X to) (X (X about) (X (X $) (X (X 1.34) (X (X a) (X (X pound) (X (X from) (X (X around) (X (X $) (X (X 1.55) (X .))))))))))))))))))))))))))))))))))) (X (X friday) (X (X 's) (X (X consequent) (X (X selling) (X (X of) (X (X futures) (X (X contracts) (X (X erased) (X (X whatever) (X (X supportive) (X (X effect) (X (X the) (X (X U.S.) (X (X report) (X (X might) (X (X have) (X (X had) (X (X and) (X (X sent) (X (X the) (X (X November) (X (X orange) (X (X juice) (X (X contract) (X (X down) (X (X as) (X (X much) (X (X as) (X (X 6.55) (X (X cents) (X (X a) (X (X pound) (X (X at) (X (X one) (X (X time) (X .)))))))))))))))))))))))))))))))))))) (X (X it) (X (X settled) (X (X with) (X (X a) (X (X loss) (X (X of) (X (X 4.95) (X (X cents) (X (X at) (X (X $) (X (X 1.3210) (X (X a) (X (X pound) (X .)))))))))))))) (X (X brazilian) (X (X juice) (X (X ,) (X (X after) (X (X a) (X (X delay) (X (X caused) (X (X by) (X (X drought) (X (X at) (X (X the) (X (X start) (X (X of) (X (X its) (X (X crop) (X (X season) (X (X ,) (X (X is) (X (X beginning) (X (X to) (X (X arrive) (X (X in) (X (X the) (X (X U.S.) (X (X in) (X (X large) (X (X quantities) (X .)))))))))))))))))))))))))))) (X (X brazil) (X (X wants) (X (X to) (X (X stimulate) (X (X demand) (X (X for) (X (X its) (X (X product) (X (X ,) (X (X which) (X (X is) (X (X going) (X (X to) (X (X be) (X (X in) (X (X plentiful) (X (X supply) (X .)))))))))))))))))) (X (X the) (X (X price) (X (X cut) (X (X ,) (X (X one) (X (X analyst) (X (X said) (X (X ,) (X (X appeared) (X (X to) (X (X be) (X (X aimed) (X (X even) (X (X more) (X (X at) (X (X Europe) (X (X ,) (X (X where) (X (X consumption) (X (X of) (X (X Brazilian) (X (X juice) (X (X has) (X (X fallen) (X .))))))))))))))))))))))))) (X (X it) (X (X 's) (X (X a) (X (X dollar-priced) (X (X product) (X (X ,) (X (X and) (X (X the) (X (X strong) (X (X dollar) (X (X has) (X (X made) (X (X it) (X (X more) (X (X expensive) (X (X in) (X (X Europe) (X (X ,) (X (X the) (X (X analyst) (X (X said) (X .)))))))))))))))))))))) (X (X new) (X (X York) (X (X futures) (X (X prices) (X (X have) (X (X dropped) (X (X significantly) (X (X from) (X (X more) (X (X than) (X (X $) (X (X 2) (X (X a) (X (X pound) (X (X at) (X (X midyear) (X .))))))))))))))))) (X (X barring) (X (X a) (X (X cold) (X (X snap) (X (X or) (X (X other) (X (X crop) (X (X problems) (X (X in) (X (X the) (X (X growing) (X (X areas) (X (X ,) (X (X downward) (X (X pressure) (X (X on) (X (X prices) (X (X is) (X (X likely) (X (X to) (X (X continue) (X (X into) (X (X January) (X (X ,) (X (X when) (X (X harvesting) (X (X and) (X (X processing) (X (X of) (X (X oranges) (X (X in) (X (X Florida) (X (X reach) (X (X their) (X (X peak) (X (X ,) (X (X the) (X (X analyst) (X (X said) (X .)))))))))))))))))))))))))))))))))))))))) (X (X energy)) (X (X although) (X (X some) (X (X analysts) (X (X look) (X (X for) (X (X profit-taking) (X (X in) (X (X the) (X (X wake) (X (X of) (X (X Friday) (X (X 's) (X (X leap) (X (X in) (X (X crude) (X (X oil) (X (X prices) (X (X ,) (X (X last) (X (X week) (X (X 's) (X (X rally) (X (X is) (X (X generally) (X (X expected) (X (X to) (X (X continue) (X (X this) (X (X week) (X .)))))))))))))))))))))))))))))) (X (X ``) (X (X I) (X (X would) (X (X continue) (X (X to) (X (X look) (X (X for) (X (X a) (X (X stable) (X (X crude) (X (X market) (X (X ,) (X (X at) (X (X least) (X (X in) (X (X futures) (X (X '') (X (X trading) (X (X ,) (X (X said) (X (X William) (X (X Hinton) (X (X ,) (X (X an) (X (X energy) (X (X futures) (X (X broker) (X (X with) (X (X Stotler) (X (X &) (X (X Co) (X .)))))))))))))))))))))))))))))))) (X (X friday) (X (X capped) (X (X a) (X (X week) (X (X of) (X (X steadily) (X (X rising) (X (X crude) (X (X oil) (X (X prices) (X (X in) (X (X both) (X (X futures) (X (X and) (X (X spot) (X (X markets) (X .))))))))))))))))) (X (X on) (X (X the) (X (X New) (X (X York) (X (X Mercantile) (X (X Exchange) (X (X ,) (X (X West) (X (X Texas) (X (X Intermediate) (X (X crude) (X (X for) (X (X November) (X (X delivery) (X (X finished) (X (X at) (X (X $) (X (X 20.89) (X (X a) (X (X barrel) (X (X ,) (X (X up) (X (X 42) (X (X cents) (X (X on) (X (X the) (X (X day) (X .)))))))))))))))))))))))))))) (X (X on) (X (X European) (X (X markets) (X (X ,) (X (X meanwhile) (X (X ,) (X (X spot) (X (X prices) (X (X of) (X (X North) (X (X Sea) (X (X crudes) (X (X were) (X (X up) (X (X 35) (X (X to) (X (X 75) (X (X cents) (X (X a) (X (X barrel) (X .))))))))))))))))))))) (X (X ``) (X (X This) (X (X market) (X (X still) (X (X wants) (X (X to) (X (X go) (X (X higher) (X (X ,) (X (X '') (X (X said) (X (X Nauman) (X (X Barakat) (X (X ,) (X (X a) (X (X first) (X (X vice) (X (X president) (X (X at) (X (X Shearson) (X (X Lehman) (X (X Hutton) (X (X Inc) (X .)))))))))))))))))))))))) (X (X he) (X (X predicted) (X (X that) (X (X the) (X (X November) (X (X contract) (X (X will) (X (X reach) (X (X $) (X (X 21.50) (X (X a) (X (X barrel) (X (X or) (X (X more) (X (X on) (X (X the) (X (X New) (X (X York) (X (X Mercantile) (X (X Exchange) (X .))))))))))))))))))))) (X (X there) (X (X has) (X (X been) (X (X little) (X (X news) (X (X to) (X (X account) (X (X for) (X (X such) (X (X buoyancy) (X (X in) (X (X the) (X (X oil) (X (X markets) (X .))))))))))))))) (X (X analysts) (X (X generally) (X (X cite) (X (X a) (X (X lack) (X (X of) (X (X bearish) (X (X developments) (X (X as) (X (X well) (X (X as) (X (X rumors) (X (X of) (X (X a) (X (X possible) (X (X tightening) (X (X of) (X (X supplies) (X (X of) (X (X some) (X (X fuels) (X (X and) (X (X crudes) (X .)))))))))))))))))))))))) (X (X there) (X (X also) (X (X are) (X (X recurring) (X (X reports) (X (X that) (X (X the) (X (X Soviet) (X (X Union) (X (X is) (X (X having) (X (X difficulties) (X (X with) (X (X its) (X (X oil) (X (X exports) (X (X and) (X (X that) (X (X Nigeria) (X (X has) (X (X about) (X (X reached) (X (X its) (X (X production) (X (X limit) (X (X and) (X (X ca) (X (X n't) (X (X produce) (X (X as) (X (X much) (X (X as) (X (X it) (X (X could) (X (X sell) (X .)))))))))))))))))))))))))))))))))))) (X (X many) (X (X traders) (X (X foresee) (X (X a) (X (X tightening) (X (X of) (X (X near-term) (X (X supplies) (X (X ,) (X (X particularly) (X (X of) (X (X high-quality) (X (X crudes) (X (X such) (X (X as) (X (X those) (X (X produced) (X (X in) (X (X the) (X (X North) (X (X Sea) (X (X and) (X (X in) (X (X Nigeria) (X .))))))))))))))))))))))))) (X (X if) (X (X a) (X (X hostile) (X (X predator) (X (X emerges) (X (X for) (X (X Saatchi) (X (X &) (X (X Saatchi) (X (X Co.) (X (X ,) (X (X co-founders) (X (X Charles) (X (X and) (X (X Maurice) (X (X Saatchi) (X (X will) (X (X lead) (X (X a) (X (X management) (X (X buy-out) (X (X attempt) (X (X ,) (X (X an) (X (X official) (X (X close) (X (X to) (X (X the) (X (X company) (X (X said) (X .))))))))))))))))))))))))))))))) (X (X financing) (X (X for) (X (X any) (X (X takeover) (X (X attempt) (X (X may) (X (X be) (X (X problematic) (X (X in) (X (X the) (X (X wake) (X (X of) (X (X Friday) (X (X 's) (X (X stock-market) (X (X sell-off) (X (X in) (X (X New) (X (X York) (X (X and) (X (X turmoil) (X (X in) (X (X the) (X (X junk-bond) (X (X market) (X .)))))))))))))))))))))))))) (X (X but) (X (X the) (X (X beleaguered) (X (X British) (X (X advertising) (X (X and) (X (X consulting) (X (X giant) (X (X ,) (X (X which) (X (X last) (X (X week) (X (X named) (X (X a) (X (X new) (X (X chief) (X (X executive) (X (X officer) (X (X to) (X (X replace) (X (X Maurice) (X (X Saatchi) (X (X ,) (X (X has) (X (X been) (X (X the) (X (X subject) (X (X of) (X (X intense) (X (X takeover) (X (X speculation) (X (X for) (X (X weeks) (X .)))))))))))))))))))))))))))))))))) (X (X last) (X (X week) (X (X ,) (X (X Saatchi) (X (X 's) (X (X largest) (X (X shareholder) (X (X ,) (X (X Southeastern) (X (X Asset) (X (X Management) (X (X ,) (X (X said) (X (X it) (X (X had) (X (X been) (X (X approached) (X (X by) (X (X one) (X (X or) (X (X more) (X (X third) (X (X parties) (X (X interested) (X (X in) (X (X a) (X (X possible) (X (X restructuring) (X .))))))))))))))))))))))))))))) (X (X and) (X (X Carl) (X (X Spielvogel) (X (X ,) (X (X chief) (X (X executive) (X (X officer) (X (X of) (X (X Saatchi) (X (X 's) (X (X big) (X (X Backer) (X (X Spielvogel) (X (X Bates) (X (X advertising) (X (X unit) (X (X ,) (X (X said) (X (X he) (X (X had) (X (X offered) (X (X to) (X (X lead) (X (X a) (X (X management) (X (X buy-out) (X (X of) (X (X the) (X (X company) (X (X ,) (X (X but) (X (X was) (X (X rebuffed) (X (X by) (X (X Charles) (X (X Saatchi) (X .))))))))))))))))))))))))))))))))))))) (X (X mr.) (X (X Spielvogel) (X (X said) (X (X he) (X (X would) (X (X n't) (X (X launch) (X (X a) (X (X hostile) (X (X bid) (X .))))))))))) (X (X the) (X (X executive) (X (X close) (X (X to) (X (X Saatchi) (X (X &) (X (X Saatchi) (X (X said) (X (X that) (X (X ``) (X (X if) (X (X a) (X (X bidder) (X (X came) (X (X up) (X (X with) (X (X a) (X (X ludicrously) (X (X high) (X (X offer) (X (X ,) (X (X a) (X (X crazy) (X (X offer) (X (X which) (X (X Saatchi) (X (X knew) (X (X it) (X (X could) (X (X n't) (X (X beat) (X (X ,) (X (X it) (X (X would) (X (X have) (X (X no) (X (X choice) (X (X but) (X (X to) (X (X recommend) (X (X it) (X (X to) (X (X shareholders) (X .)))))))))))))))))))))))))))))))))))))))))))) (X (X but) (X (X -LCB-) (X (X otherwise) (X (X -RCB-) (X (X it) (X (X would) (X (X undoubtedly) (X (X come) (X (X back) (X (X '') (X (X with) (X (X an) (X (X offer) (X (X by) (X (X management) (X .)))))))))))))))) (X (X the) (X (X executive) (X (X said) (X (X any) (X (X buy-out) (X (X would) (X (X be) (X (X led) (X (X by) (X (X the) (X (X current) (X (X board) (X (X ,) (X (X whose) (X (X chairman) (X (X is) (X (X Maurice) (X (X Saatchi) (X (X and) (X (X whose) (X (X strategic) (X (X guiding) (X (X force) (X (X is) (X (X believed) (X (X to) (X (X be) (X (X Charles) (X (X Saatchi) (X .)))))))))))))))))))))))))))))) (X (X mr.) (X (X Spielvogel) (X (X is) (X (X n't) (X (X part) (X (X of) (X (X the) (X (X board) (X (X ,) (X (X nor) (X (X are) (X (X any) (X (X of) (X (X the) (X (X other) (X (X heads) (X (X of) (X (X Saatchi) (X (X 's) (X (X big) (X (X U.S.-based) (X (X ad) (X (X agencies) (X .)))))))))))))))))))))))) (X (X the) (X (X executive) (X (X did) (X (X n't) (X (X name) (X (X any) (X (X price) (X (X ,) (X (X but) (X (X securities) (X (X analysts) (X (X have) (X (X said) (X (X Saatchi) (X (X would) (X (X fetch) (X (X upward) (X (X of) (X (X $) (X (X 1.3) (X (X billion) (X .)))))))))))))))))))))) (X (X the) (X (X executive) (X (X denied) (X (X speculation) (X (X that) (X (X Saatchi) (X (X was) (X (X bringing) (X (X in) (X (X the) (X (X new) (X (X chief) (X (X executive) (X (X officer) (X (X only) (X (X to) (X (X clean) (X (X up) (X (X the) (X (X company) (X (X financially) (X (X so) (X (X that) (X (X the) (X (X brothers) (X (X could) (X (X lead) (X (X a) (X (X buy-back) (X .)))))))))))))))))))))))))))))) (X (X that) (X (X speculation) (X (X abounded) (X (X Friday) (X (X as) (X (X industry) (X (X executives) (X (X analyzed) (X (X the) (X (X appointment) (X (X of) (X (X the) (X (X new) (X (X chief) (X (X executive) (X (X ,) (X (X Robert) (X (X Louis-Dreyfus) (X (X ,) (X (X who) (X (X joins) (X (X Saatchi) (X (X and) (X (X becomes) (X (X a) (X (X member) (X (X of) (X (X its) (X (X board) (X (X on) (X (X Jan.) (X (X 1) (X .))))))))))))))))))))))))))))))))) (X (X mr.) (X (X Louis-Dreyfus) (X (X ,) (X (X formerly) (X (X chief) (X (X executive) (X (X of) (X (X the) (X (X pharmaceutical) (X (X research) (X (X firm) (X (X IMS) (X (X International) (X (X Inc.) (X (X ,) (X (X has) (X (X a) (X (X reputation) (X (X as) (X (X a) (X (X savvy) (X (X financial) (X (X manager) (X (X ,) (X (X and) (X (X will) (X (X be) (X (X charged) (X (X largely) (X (X with) (X (X repairing) (X (X Saatchi) (X (X 's) (X (X poor) (X (X financial) (X (X state) (X .))))))))))))))))))))))))))))))))))))) (X (X asked) (X (X about) (X (X the) (X (X speculation) (X (X that) (X (X Mr.) (X (X Louis-Dreyfus) (X (X has) (X (X been) (X (X hired) (X (X to) (X (X pave) (X (X the) (X (X way) (X (X for) (X (X a) (X (X buy-out) (X (X by) (X (X the) (X (X brothers) (X (X ,) (X (X the) (X (X executive) (X (X replied) (X (X ,) (X (X ``) (X (X That) (X (X is) (X (X n't) (X (X the) (X (X reason) (X (X Dreyfus) (X (X has) (X (X been) (X (X brought) (X (X in) (X .))))))))))))))))))))))))))))))))))))) (X (X he) (X (X was) (X (X brought) (X (X in) (X (X to) (X (X turn) (X (X around) (X (X the) (X (X company) (X (X .) (X ''))))))))))) (X (X separately) (X (X ,) (X (X several) (X (X Saatchi) (X (X agency) (X (X clients) (X (X said) (X (X they) (X (X believe) (X (X the) (X (X company) (X (X 's) (X (X management) (X (X shakeup) (X (X will) (X (X have) (X (X little) (X (X affect) (X (X on) (X (X them) (X .))))))))))))))))))))) (X (X ``) (X (X It) (X (X has) (X (X n't) (X (X had) (X (X any) (X (X impact) (X (X on) (X (X us) (X (X ,) (X (X nor) (X (X do) (X (X we) (X (X expect) (X (X it) (X (X to) (X (X ,) (X (X '') (X (X said) (X (X a) (X (X spokeswoman) (X (X for) (X (X Miller) (X (X Brewing) (X (X Co.) (X (X ,) (X (X a) (X (X major) (X (X client) (X (X of) (X (X Backer) (X (X Spielvogel) (X .))))))))))))))))))))))))))))))))) (X (X john) (X (X Lampe) (X (X ,) (X (X director) (X (X of) (X (X advertising) (X (X at) (X (X PaineWebber) (X (X Inc.) (X (X ,) (X (X a) (X (X Saatchi) (X (X &) (X (X Saatchi) (X (X Advertising) (X (X client) (X (X ,) (X (X said) (X (X :) (X (X ``) (X (X We) (X (X have) (X (X no) (X (X problem) (X (X with) (X (X the) (X (X announcement) (X (X ,) (X (X because) (X (X we) (X (X do) (X (X n't) (X (X know) (X (X what) (X (X change) (X (X it) (X (X 's) (X (X going) (X (X to) (X (X bring) (X (X about) (X .)))))))))))))))))))))))))))))))))))))))))) (X (X we) (X (X are) (X (X n't) (X (X going) (X (X to) (X (X change) (X (X agencies) (X (X because) (X (X of) (X (X a) (X (X change) (X (X in) (X (X London) (X (X .) (X ''))))))))))))))) (X (X executives) (X (X at) (X (X Backer) (X (X Spielvogel) (X (X client) (X (X Avis) (X (X Inc.) (X (X ,) (X (X as) (X (X well) (X (X as) (X (X at) (X (X Saatchi) (X (X client) (X (X Philips) (X (X Lighting) (X (X Co.) (X (X ,) (X (X also) (X (X said) (X (X they) (X (X saw) (X (X no) (X (X effect) (X .))))))))))))))))))))))))) (X (X executives) (X (X at) (X (X Prudential-Bache) (X (X Securities) (X (X Inc.) (X (X ,) (X (X a) (X (X Backer) (X (X Spielvogel) (X (X client) (X (X that) (X (X is) (X (X reviewing) (X (X its) (X (X account) (X (X ,) (X (X declined) (X (X comment) (X .))))))))))))))))))) (X (X mr.) (X (X Spielvogel) (X (X had) (X (X said) (X (X that) (X (X Prudential-Bache) (X (X was) (X (X prepared) (X (X to) (X (X finance) (X (X either) (X (X a) (X (X management) (X (X buy-out) (X (X and) (X (X restructuring) (X (X ,) (X (X or) (X (X a) (X (X buy-out) (X (X of) (X (X Backer) (X (X Spielvogel) (X (X alone) (X (X ,) (X (X led) (X (X by) (X (X him) (X .))))))))))))))))))))))))))))) (X (X ad) (X (X Notes) (X (X ...) (X .)))) (X (X new) (X (X ACCOUNT) (X :))) (X (X california) (X (X 's) (X (X Glendale) (X (X Federal) (X (X Bank) (X (X awarded) (X (X its) (X (X $) (X (X 12) (X (X million) (X (X to) (X (X $) (X (X 15) (X (X million) (X (X account) (X (X to) (X (X the) (X (X Los) (X (X Angeles) (X (X office) (X (X of) (X (X Omnicom) (X (X Group) (X (X 's) (X (X BBDO) (X (X agency) (X .))))))))))))))))))))))))))) (X (X the) (X (X account) (X (X was) (X (X previously) (X (X handled) (X (X by) (X (X Davis) (X (X ,) (X (X Ball) (X (X &) (X (X Colombatto) (X (X Advertising) (X (X Inc.) (X (X ,) (X (X a) (X (X Los) (X (X Angeles) (X (X agency) (X .))))))))))))))))))) (X (X account) (X (X REVIEW) (X :))) (X (X royal) (X (X Crown) (X (X Cola) (X (X Co.) (X (X has) (X (X ended) (X (X its) (X (X relationship) (X (X with) (X (X the) (X (X Boston) (X (X office) (X (X of) (X (X Hill) (X (X ,) (X (X Holliday) (X (X ,) (X (X Connors) (X (X ,) (X (X Cosmopulos) (X .))))))))))))))))))))) (X (X the) (X (X account) (X (X had) (X (X billed) (X (X about) (X (X $) (X (X 6) (X (X million) (X (X in) (X (X 1988) (X (X ,) (X (X according) (X (X to) (X (X Leading) (X (X National) (X (X Advertisers) (X .))))))))))))))))) (X (X not-guilty) (X (X PLEA) (X :))) (X (X as) (X (X expected) (X (X ,) (X (X Young) (X (X &) (X (X Rubicam) (X (X Inc.) (X (X along) (X (X with) (X (X two) (X (X senior) (X (X executives) (X (X and) (X (X a) (X (X former) (X (X employee) (X (X ,) (X (X pleaded) (X (X not) (X (X guilty) (X (X in) (X (X federal) (X (X court) (X (X in) (X (X New) (X (X Haven) (X (X ,) (X (X Conn.) (X (X ,) (X (X to) (X (X conspiracy) (X (X and) (X (X racketeering) (X (X charges) (X .))))))))))))))))))))))))))))))))))) (X (X the) (X (X government) (X (X has) (X (X charged) (X (X that) (X (X they) (X (X bribed) (X (X Jamaican) (X (X officials) (X (X to) (X (X win) (X (X the) (X (X Jamaica) (X (X Tourist) (X (X Board) (X (X ad) (X (X account) (X (X in) (X (X 1981) (X .)))))))))))))))))))) (X (X a) (X (X spokesman) (X (X for) (X (X the) (X (X U.S.) (X (X Attorney) (X (X 's) (X (X office) (X (X said) (X (X extradition) (X (X proceedings) (X (X are) (X (X ``) (X (X just) (X (X beginning) (X (X '') (X (X for) (X (X the) (X (X other) (X (X two) (X (X defendants) (X (X in) (X (X the) (X (X case) (X (X ,) (X (X Eric) (X (X Anthony) (X (X Abrahams) (X (X ,) (X (X former) (X (X Jamaican) (X (X tourism) (X (X minister) (X (X ,) (X (X and) (X (X Jamaican) (X (X businessman) (X (X Arnold) (X (X Foote) (X (X Jr) (X .))))))))))))))))))))))))))))))))))))))))) (X (X korean) (X (X AGENCY) (X :))) (X (X the) (X (X Samsung) (X (X Group) (X (X and) (X (X Bozell) (X (X Inc.) (X (X agreed) (X (X to) (X (X establish) (X (X a) (X (X joint) (X (X venture) (X (X advertising) (X (X agency) (X (X in) (X (X South) (X (X Korea) (X .)))))))))))))))))) (X (X bozell) (X (X Cheil) (X (X Corp.) (X (X ,) (X (X as) (X (X the) (X (X new) (X (X agency) (X (X will) (X (X be) (X (X called) (X (X ,) (X (X will) (X (X be) (X (X based) (X (X in) (X (X Seoul) (X (X and) (X (X is) (X (X 70) (X (X %) (X (X owned) (X (X by) (X (X Samsung) (X (X and) (X (X 30) (X (X %) (X (X owned) (X (X by) (X (X Bozell) (X .))))))))))))))))))))))))))))))) (X (X samsung) (X (X already) (X (X owns) (X (X Korea) (X (X First) (X (X Advertising) (X (X Co.) (X (X ,) (X (X that) (X (X country) (X (X 's) (X (X largest) (X (X agency) (X .)))))))))))))) (X (X bozell) (X (X joins) (X (X Backer) (X (X Spielvogel) (X (X Bates) (X (X and) (X (X Ogilvy) (X (X Group) (X (X as) (X (X U.S.) (X (X agencies) (X (X with) (X (X interests) (X (X in) (X (X Korean) (X (X agencies) (X .))))))))))))))))) (X (X citing) (X (X a) (X (X payment) (X (X from) (X (X a) (X (X supplier) (X (X and) (X (X strong) (X (X sales) (X (X of) (X (X certain) (X (X data-storage) (X (X products) (X (X ,) (X (X Maxtor) (X (X Corp.) (X (X said) (X (X earnings) (X (X and) (X (X revenue) (X (X jumped) (X (X in) (X (X its) (X (X second) (X (X quarter) (X (X ended) (X (X Sept.) (X (X 24) (X .))))))))))))))))))))))))))))) (X (X the) (X (X maker) (X (X of) (X (X computer-data-storage) (X (X products) (X (X said) (X (X net) (X (X income) (X (X rose) (X (X to) (X (X $) (X (X 4.8) (X (X million) (X (X ,) (X (X or) (X (X 23) (X (X cents) (X (X a) (X (X share) (X (X ,) (X (X from) (X (X year-earlier) (X (X net) (X (X of) (X (X $) (X (X 1.1) (X (X million) (X (X ,) (X (X or) (X (X five) (X (X cents) (X (X a) (X (X share) (X .)))))))))))))))))))))))))))))))))) (X (X revenue) (X (X soared) (X (X to) (X (X $) (X (X 117) (X (X million) (X (X from) (X (X $) (X (X 81.5) (X (X million) (X .))))))))))) (X (X maxtor) (X (X said) (X (X its) (X (X results) (X (X were) (X (X boosted) (X (X by) (X (X $) (X (X 2) (X (X million) (X (X in) (X (X payments) (X (X received) (X (X from) (X (X a) (X (X supplier) (X (X ,) (X (X for) (X (X a) (X (X certain) (X (X line) (X (X of) (X (X products) (X (X that) (X (X Maxtor) (X (X is) (X (X n't) (X (X going) (X (X to) (X (X sell) (X (X anymore) (X .)))))))))))))))))))))))))))))))) (X (X maxtor) (X (X said) (X (X effects) (X (X from) (X (X discontinuing) (X (X the) (X (X line) (X (X may) (X (X have) (X (X a) (X (X positive) (X (X effect) (X (X on) (X (X future) (X (X earnings) (X (X and) (X (X revenue) (X .)))))))))))))))))) (X (X a) (X (X spokeswoman) (X (X would) (X (X n't) (X (X elaborate) (X (X ,) (X (X but) (X (X the) (X (X company) (X (X said) (X (X the) (X (X discontinued) (X (X product) (X (X has) (X (X never) (X (X been) (X (X a) (X (X major) (X (X source) (X (X of) (X (X revenue) (X (X or) (X (X profit) (X .)))))))))))))))))))))))) (X (X operationally) (X (X ,) (X (X Maxtor) (X (X benefited) (X (X from) (X (X robust) (X (X sales) (X (X of) (X (X products) (X (X that) (X (X store) (X (X data) (X (X for) (X (X high-end) (X (X personal) (X (X computers) (X (X and) (X (X computer) (X (X workstations) (X .)))))))))))))))))))) (X (X in) (X (X the) (X (X fiscal) (X (X first) (X (X half) (X (X ,) (X (X net) (X (X was) (X (X $) (X (X 7) (X (X million) (X (X ,) (X (X or) (X (X 34) (X (X cents) (X (X a) (X (X share) (X (X ,) (X (X up) (X (X from) (X (X the) (X (X year-earlier) (X (X $) (X (X 3.1) (X (X million) (X (X ,) (X (X or) (X (X 15) (X (X cents) (X (X a) (X (X share) (X .)))))))))))))))))))))))))))))))) (X (X revenue) (X (X rose) (X (X to) (X (X $) (X (X 225.5) (X (X million) (X (X from) (X (X $) (X (X 161.8) (X (X million) (X .))))))))))) (X (X robert) (X (X G.) (X (X Walden) (X (X ,) (X (X 62) (X (X years) (X (X old) (X (X ,) (X (X was) (X (X elected) (X (X a) (X (X director) (X (X of) (X (X this) (X (X provider) (X (X of) (X (X advanced) (X (X technology) (X (X systems) (X (X and) (X (X services) (X (X ,) (X (X increasing) (X (X the) (X (X board) (X (X to) (X (X eight) (X (X members) (X .))))))))))))))))))))))))))))) (X (X he) (X (X retired) (X (X as) (X (X senior) (X (X vice) (X (X president) (X (X ,) (X (X finance) (X (X and) (X (X administration) (X (X ,) (X (X and) (X (X chief) (X (X financial) (X (X officer) (X (X of) (X (X the) (X (X company) (X (X Oct.) (X (X 1) (X .))))))))))))))))))))) (X (X southmark) (X (X Corp.) (X (X said) (X (X that) (X (X it) (X (X filed) (X (X part) (X (X of) (X (X its) (X (X 10-K) (X (X report) (X (X with) (X (X the) (X (X Securities) (X (X and) (X (X Exchange) (X (X Commission) (X (X ,) (X (X but) (X (X that) (X (X the) (X (X filing) (X (X does) (X (X n't) (X (X include) (X (X its) (X (X audited) (X (X financial) (X (X statements) (X (X and) (X (X related) (X (X information) (X .))))))))))))))))))))))))))))))))) (X (X the) (X (X real) (X (X estate) (X (X and) (X (X thrift) (X (X concern) (X (X ,) (X (X operating) (X (X under) (X (X bankruptcy-law) (X (X proceedings) (X (X ,) (X (X said) (X (X it) (X (X told) (X (X the) (X (X SEC) (X (X it) (X (X could) (X (X n't) (X (X provide) (X (X financial) (X (X statements) (X (X by) (X (X the) (X (X end) (X (X of) (X (X its) (X (X first) (X (X extension) (X (X ``) (X (X without) (X (X unreasonable) (X (X burden) (X (X or) (X (X expense) (X (X .) (X '')))))))))))))))))))))))))))))))))))))) (X (X the) (X (X company) (X (X asked) (X (X for) (X (X a) (X (X 15-day) (X (X extension) (X (X Sept.) (X (X 30) (X (X ,) (X (X when) (X (X the) (X (X financial) (X (X reports) (X (X were) (X (X due) (X .))))))))))))))))) (X (X southmark) (X (X said) (X (X it) (X (X plans) (X (X to) (X (X amend) (X (X its) (X (X 10K) (X (X to) (X (X provide) (X (X financial) (X (X results) (X (X as) (X (X soon) (X (X as) (X (X its) (X (X audit) (X (X is) (X (X completed) (X .)))))))))))))))))))) (X (X alan) (X (X Seelenfreund) (X (X ,) (X (X 52) (X (X years) (X (X old) (X (X ,) (X (X was) (X (X named) (X (X chairman) (X (X of) (X (X this) (X (X processor) (X (X of) (X (X prescription) (X (X claims) (X (X ,) (X (X succeeding) (X (X Thomas) (X (X W.) (X (X Field) (X (X Jr.) (X (X ,) (X (X 55) (X (X ,) (X (X who) (X (X resigned) (X (X last) (X (X month) (X .)))))))))))))))))))))))))))))) (X (X mr.) (X (X Field) (X (X also) (X (X had) (X (X been) (X (X chairman) (X (X of) (X (X McKesson) (X (X Corp.) (X (X ,) (X (X resigning) (X (X that) (X (X post) (X (X after) (X (X a) (X (X dispute) (X (X with) (X (X the) (X (X board) (X (X over) (X (X corporate) (X (X strategy) (X .))))))))))))))))))))))) (X (X mr.) (X (X Seelenfreund) (X (X is) (X (X executive) (X (X vice) (X (X president) (X (X and) (X (X chief) (X (X financial) (X (X officer) (X (X of) (X (X McKesson) (X (X and) (X (X will) (X (X continue) (X (X in) (X (X those) (X (X roles) (X .))))))))))))))))))) (X (X pcs) (X (X also) (X (X named) (X (X Rex) (X (X R.) (X (X Malson) (X (X ,) (X (X 57) (X (X ,) (X (X executive) (X (X vice) (X (X president) (X (X at) (X (X McKesson) (X (X ,) (X (X as) (X (X a) (X (X director) (X (X ,) (X (X filling) (X (X the) (X (X seat) (X (X vacated) (X (X by) (X (X Mr.) (X (X Field) (X .))))))))))))))))))))))))))) (X (X messrs.) (X (X Malson) (X (X and) (X (X Seelenfreund) (X (X are) (X (X directors) (X (X of) (X (X McKesson) (X (X ,) (X (X which) (X (X has) (X (X an) (X (X 86) (X (X %) (X (X stake) (X (X in) (X (X PCS) (X .)))))))))))))))))) (X (X medchem) (X (X Products) (X (X Inc.) (X (X said) (X (X a) (X (X U.S.) (X (X District) (X (X Court) (X (X in) (X (X Boston) (X (X ruled) (X (X that) (X (X a) (X (X challenge) (X (X by) (X (X MedChem) (X (X to) (X (X the) (X (X validity) (X (X of) (X (X a) (X (X U.S.) (X (X patent) (X (X held) (X (X by) (X (X Pharmacia) (X (X Inc.) (X (X was) (X (X ``) (X (X without) (X (X merit) (X (X .) (X ''))))))))))))))))))))))))))))))))) (X (X pharmacia) (X (X ,) (X (X based) (X (X in) (X (X Upsala) (X (X ,) (X (X Sweden) (X (X ,) (X (X had) (X (X charged) (X (X in) (X (X a) (X (X lawsuit) (X (X against) (X (X MedChem) (X (X that) (X (X MedChem) (X (X 's) (X (X AMVISC) (X (X product) (X (X line) (X (X infringes) (X (X on) (X (X the) (X (X Pharmacia) (X (X patent) (X .))))))))))))))))))))))))))) (X (X the) (X (X patent) (X (X is) (X (X related) (X (X to) (X (X hyaluronic) (X (X acid) (X (X ,) (X (X a) (X (X rooster-comb) (X (X extract) (X (X used) (X (X in) (X (X eye) (X (X surgery) (X .)))))))))))))))) (X (X in) (X (X its) (X (X lawsuit) (X (X ,) (X (X Pharmacia) (X (X is) (X (X seeking) (X (X unspecified) (X (X damages) (X (X and) (X (X a) (X (X preliminary) (X (X injunction) (X (X to) (X (X block) (X (X MedChem) (X (X from) (X (X selling) (X (X the) (X (X AMVISC) (X (X products) (X .)))))))))))))))))))))) (X (X a) (X (X MedChem) (X (X spokesman) (X (X said) (X (X the) (X (X products) (X (X contribute) (X (X about) (X (X a) (X (X third) (X (X of) (X (X MedChem) (X (X 's) (X (X sales) (X (X and) (X (X 10) (X (X %) (X (X to) (X (X 20) (X (X %) (X (X of) (X (X its) (X (X earnings) (X .)))))))))))))))))))))))) (X (X in) (X (X the) (X (X year) (X (X ended) (X (X Aug.) (X (X 31) (X (X ,) (X (X 1988) (X (X ,) (X (X MedChem) (X (X earned) (X (X $) (X (X 2.9) (X (X million) (X (X ,) (X (X or) (X (X 72) (X (X cents) (X (X a) (X (X share) (X (X ,) (X (X on) (X (X sales) (X (X of) (X (X $) (X (X 17.4) (X (X million) (X .)))))))))))))))))))))))))))) (X (X medchem) (X (X said) (X (X the) (X (X court) (X (X 's) (X (X ruling) (X (X was) (X (X issued) (X (X as) (X (X part) (X (X of) (X (X a) (X (X ``) (X (X first-phase) (X (X trial) (X (X '') (X (X in) (X (X the) (X (X patent-infringement) (X (X proceedings) (X (X and) (X (X concerns) (X (X only) (X (X one) (X (X of) (X (X its) (X (X defenses) (X (X in) (X (X the) (X (X case) (X .))))))))))))))))))))))))))))))) (X (X it) (X (X said) (X (X it) (X (X is) (X (X considering) (X (X ``) (X (X all) (X (X of) (X (X its) (X (X options) (X (X in) (X (X light) (X (X of) (X (X the) (X (X decision) (X (X ,) (X (X including) (X (X a) (X (X possible) (X (X appeal) (X (X .) (X '')))))))))))))))))))))) (X (X the) (X (X medical-products) (X (X company) (X (X added) (X (X that) (X (X it) (X (X plans) (X (X to) (X (X ``) (X (X assert) (X (X its) (X (X other) (X (X defenses) (X (X '') (X (X against) (X (X Pharmacia) (X (X 's) (X (X lawsuit) (X (X ,) (X (X including) (X (X the) (X (X claim) (X (X that) (X (X it) (X (X has) (X (X n't) (X (X infringed) (X (X on) (X (X Pharmacia) (X (X 's) (X (X patent) (X .)))))))))))))))))))))))))))))))) (X (X medchem) (X (X said) (X (X that) (X (X the) (X (X court) (X (X scheduled) (X (X a) (X (X conference) (X (X for) (X (X next) (X (X Monday) (X (X --) (X (X to) (X (X set) (X (X a) (X (X date) (X (X for) (X (X proceedings) (X (X on) (X (X Pharmacia) (X (X 's) (X (X motion) (X (X for) (X (X a) (X (X preliminary) (X (X injunction) (X .))))))))))))))))))))))))))) (X (X newspaper) (X (X publishers) (X (X are) (X (X reporting) (X (X mixed) (X (X third-quarter) (X (X results) (X (X ,) (X (X aided) (X (X by) (X (X favorable) (X (X newsprint) (X (X prices) (X (X and) (X (X hampered) (X (X by) (X (X flat) (X (X or) (X (X declining) (X (X advertising) (X (X linage) (X (X ,) (X (X especially) (X (X in) (X (X the) (X (X Northeast) (X .))))))))))))))))))))))))))) (X (X adding) (X (X to) (X (X unsteadiness) (X (X in) (X (X the) (X (X industry) (X (X ,) (X (X seasonal) (X (X retail) (X (X ad) (X (X spending) (X (X patterns) (X (X in) (X (X newspapers) (X (X have) (X (X been) (X (X upset) (X (X by) (X (X shifts) (X (X in) (X (X ownership) (X (X and) (X (X general) (X (X hardships) (X (X within) (X (X the) (X (X retail) (X (X industry) (X .))))))))))))))))))))))))))))) (X (X in) (X (X New) (X (X York) (X (X ,) (X (X the) (X (X Bonwit) (X (X Teller) (X (X and) (X (X B.) (X (X Altman) (X (X &) (X (X Co.) (X (X department) (X (X stores) (X (X have) (X (X filed) (X (X for) (X (X protection) (X (X from) (X (X creditors) (X (X under) (X (X Chapter) (X (X 11) (X (X of) (X (X the) (X (X federal) (X (X Bankruptcy) (X (X Code) (X (X ,) (X (X while) (X (X the) (X (X R.H.) (X (X Macy) (X (X &) (X (X Co.) (X (X ,) (X (X Bloomingdale) (X (X 's) (X (X and) (X (X Saks) (X (X Fifth) (X (X Avenue) (X (X department-store) (X (X chains) (X (X are) (X (X for) (X (X sale) (X .)))))))))))))))))))))))))))))))))))))))))))))))) (X (X many) (X (X papers) (X (X throughout) (X (X the) (X (X country) (X (X are) (X (X also) (X (X faced) (X (X with) (X (X a) (X (X slowdown) (X (X in) (X (X classified-ad) (X (X spending) (X (X ,) (X (X a) (X (X booming) (X (X category) (X (X for) (X (X newspapers) (X (X in) (X (X recent) (X (X years) (X .)))))))))))))))))))))))) (X (X until) (X (X recently) (X (X ,) (X (X industry) (X (X analysts) (X (X believed) (X (X decreases) (X (X in) (X (X retail) (X (X ad) (X (X spending) (X (X had) (X (X bottomed) (X (X out) (X (X and) (X (X would) (X (X in) (X (X fact) (X (X increase) (X (X in) (X (X this) (X (X year) (X (X 's) (X (X third) (X (X and) (X (X fourth) (X (X quarters) (X .)))))))))))))))))))))))))))) (X (X all) (X (X bets) (X (X are) (X (X off) (X (X ,) (X (X analysts) (X (X say) (X (X ,) (X (X because) (X (X of) (X (X the) (X (X shifting) (X (X ownership) (X (X of) (X (X the) (X (X retail) (X (X chains) (X .)))))))))))))))))) (X (X ``) (X (X Improved) (X (X paper) (X (X prices) (X (X will) (X (X help) (X (X offset) (X (X weakness) (X (X in) (X (X linage) (X (X ,) (X (X but) (X (X the) (X (X retailers) (X (X ') (X (X problems) (X (X have) (X (X affected) (X (X the) (X (X amount) (X (X of) (X (X ad) (X (X linage) (X (X they) (X (X usually) (X (X run) (X (X ,) (X (X '') (X (X said) (X (X Edward) (X (X J.) (X (X Atorino) (X (X ,) (X (X industry) (X (X analyst) (X (X for) (X (X Salomon) (X (X Brothers) (X (X Inc) (X .)))))))))))))))))))))))))))))))))))))))) (X (X ``) (X (X Retailers) (X (X are) (X (X just) (X (X in) (X (X disarray) (X (X .) (X '')))))))) (X (X for) (X (X instance) (X (X ,) (X (X Gannett) (X (X Co.) (X (X posted) (X (X an) (X (X 11) (X (X %) (X (X gain) (X (X in) (X (X net) (X (X income) (X (X ,) (X (X as) (X (X total) (X (X ad) (X (X pages) (X (X dropped) (X (X at) (X (X USA) (X (X Today) (X (X ,) (X (X but) (X (X advertising) (X (X revenue) (X (X rose) (X (X because) (X (X of) (X (X a) (X (X higher) (X (X circulation) (X (X rate) (X (X base) (X (X and) (X (X increased) (X (X rates) (X .)))))))))))))))))))))))))))))))))))))) (X (X gannett) (X (X 's) (X (X 83) (X (X daily) (X (X and) (X (X 35) (X (X non-daily) (X (X newspapers) (X (X reported) (X (X a) (X (X 3) (X (X %) (X (X increase) (X (X in) (X (X advertising) (X (X and) (X (X circulation) (X (X revenue) (X .))))))))))))))))))) (X (X total) (X (X advertising) (X (X linage) (X (X was) (X (X ``) (X (X modestly) (X (X '') (X (X lower) (X (X as) (X (X classified-ad) (X (X volume) (X (X increased) (X (X ,) (X (X while) (X (X there) (X (X was) (X (X ``) (X (X softer) (X (X demand) (X (X '') (X (X for) (X (X retail) (X (X and) (X (X national) (X (X ad) (X (X linage) (X (X ,) (X (X said) (X (X John) (X (X Curley) (X (X ,) (X (X Gannett) (X (X 's) (X (X chief) (X (X executive) (X (X officer) (X .))))))))))))))))))))))))))))))))))))) (X (X at) (X (X USA) (X (X Today) (X (X ,) (X (X ad) (X (X pages) (X (X totaled) (X (X 785) (X (X for) (X (X the) (X (X quarter) (X (X ,) (X (X down) (X (X 9.2) (X (X %) (X (X from) (X (X the) (X (X 1988) (X (X period) (X (X ,) (X (X which) (X (X was) (X (X helped) (X (X by) (X (X increased) (X (X ad) (X (X spending) (X (X from) (X (X the) (X (X Summer) (X (X Olympics) (X .)))))))))))))))))))))))))))))))) (X (X while) (X (X USA) (X (X Today) (X (X 's) (X (X total) (X (X paid) (X (X ad) (X (X pages) (X (X for) (X (X the) (X (X year) (X (X to) (X (X date) (X (X totaled) (X (X 2,735) (X (X ,) (X (X a) (X (X decrease) (X (X of) (X (X 4) (X (X %) (X (X from) (X (X last) (X (X year) (X (X ,) (X (X the) (X (X paper) (X (X 's) (X (X ad) (X (X revenue) (X (X increased) (X (X 8) (X (X %) (X (X in) (X (X the) (X (X quarter) (X (X and) (X (X 13) (X (X %) (X (X in) (X (X the) (X (X nine) (X (X months) (X .)))))))))))))))))))))))))))))))))))))))))))) (X (X in) (X (X the) (X (X nine) (X (X months) (X (X ,) (X (X Gannett) (X (X 's) (X (X net) (X (X rose) (X (X 9.5) (X (X %) (X (X to) (X (X $) (X (X 270) (X (X million) (X (X ,) (X (X or) (X (X $) (X (X 1.68) (X (X a) (X (X share) (X (X ,) (X (X from) (X (X $) (X (X 247) (X (X million) (X (X ,) (X (X or) (X (X $) (X (X 1.52) (X (X a) (X (X share) (X .))))))))))))))))))))))))))))))))) (X (X revenue) (X (X gained) (X (X 6) (X (X %) (X (X to) (X (X $) (X (X 2.55) (X (X billion) (X (X from) (X (X $) (X (X 2.4) (X (X billion) (X .))))))))))))) (X (X at) (X (X Dow) (X (X Jones) (X (X &) (X (X Co.) (X (X ,) (X (X third-quarter) (X (X net) (X (X income) (X (X fell) (X (X 9.9) (X (X %) (X (X from) (X (X the) (X (X year-earlier) (X (X period) (X .))))))))))))))))) (X (X net) (X (X fell) (X (X to) (X (X $) (X (X 28.8) (X (X million) (X (X ,) (X (X or) (X (X 29) (X (X cents) (X (X a) (X (X share) (X (X ,) (X (X from) (X (X $) (X (X 32) (X (X million) (X (X ,) (X (X or) (X (X 33) (X (X cents) (X (X a) (X (X share) (X .)))))))))))))))))))))))) (X (X the) (X (X year-earlier) (X (X period) (X (X included) (X (X a) (X (X one-time) (X (X gain) (X (X of) (X (X $) (X (X 3.5) (X (X million) (X (X ,) (X (X or) (X (X four) (X (X cents) (X (X a) (X (X share) (X .)))))))))))))))))) (X (X revenue) (X (X gained) (X (X 5.3) (X (X %) (X (X to) (X (X $) (X (X 404.1) (X (X million) (X (X from) (X (X $) (X (X 383.8) (X (X million) (X .))))))))))))) (X (X the) (X (X drop) (X (X in) (X (X profit) (X (X reflected) (X (X ,) (X (X in) (X (X part) (X (X ,) (X (X continued) (X (X softness) (X (X in) (X (X financial) (X (X advertising) (X (X at) (X (X The) (X (X Wall) (X (X Street) (X (X Journal) (X (X and) (X (X Barron) (X (X 's) (X (X magazine) (X .)))))))))))))))))))))))) (X (X ad) (X (X linage) (X (X at) (X (X the) (X (X Journal) (X (X fell) (X (X 6.1) (X (X %) (X (X in) (X (X the) (X (X third) (X (X quarter) (X .))))))))))))) (X (X affiliated) (X (X Publications) (X (X Inc.) (X (X reversed) (X (X a) (X (X year-earlier) (X (X third) (X (X quarter) (X (X net) (X (X loss) (X .))))))))))) (X (X the) (X (X publisher) (X (X of) (X (X the) (X (X Boston) (X (X Globe) (X (X reported) (X (X net) (X (X of) (X (X $) (X (X 8.5) (X (X million) (X (X ,) (X (X or) (X (X 12) (X (X cents) (X (X a) (X (X share) (X (X ,) (X (X compared) (X (X with) (X (X a) (X (X loss) (X (X of) (X (X $) (X (X 26.5) (X (X million) (X (X ,) (X (X or) (X (X 38) (X (X cents) (X (X a) (X (X share) (X (X ,) (X (X for) (X (X the) (X (X third) (X (X quarter) (X (X in) (X (X 1988) (X .))))))))))))))))))))))))))))))))))))))))) (X (X william) (X (X O.) (X (X Taylor) (X (X ,) (X (X the) (X (X parent) (X (X 's) (X (X chairman) (X (X and) (X (X chief) (X (X executive) (X (X officer) (X (X ,) (X (X said) (X (X earnings) (X (X continued) (X (X to) (X (X be) (X (X hurt) (X (X by) (X (X softness) (X (X in) (X (X ad) (X (X volume) (X (X at) (X (X the) (X (X Boston) (X (X newspaper) (X .))))))))))))))))))))))))))))) (X (X third-quarter) (X (X profit) (X (X estimates) (X (X for) (X (X several) (X (X companies) (X (X are) (X (X being) (X (X strongly) (X (X affected) (X (X by) (X (X the) (X (X price) (X (X of) (X (X newsprint) (X (X ,) (X (X which) (X (X in) (X (X the) (X (X last) (X (X two) (X (X years) (X (X has) (X (X had) (X (X several) (X (X price) (X (X increases) (X .)))))))))))))))))))))))))))) (X (X after) (X (X a) (X (X supply) (X (X crunch) (X (X caused) (X (X prices) (X (X to) (X (X rise) (X (X 14) (X (X %) (X (X since) (X (X 1986) (X (X to) (X (X $) (X (X 650) (X (X a) (X (X metric) (X (X ton) (X (X ,) (X (X analysts) (X (X are) (X (X encouraged) (X (X ,) (X (X because) (X (X they) (X (X do) (X (X n't) (X (X expect) (X (X a) (X (X price) (X (X increase) (X (X for) (X (X the) (X (X rest) (X (X of) (X (X this) (X (X year) (X .)))))))))))))))))))))))))))))))))))))) (X (X companies) (X (X with) (X (X daily) (X (X newspapers) (X (X in) (X (X the) (X (X Northeast) (X (X will) (X (X need) (X (X the) (X (X stable) (X (X newsprint) (X (X prices) (X (X to) (X (X ease) (X (X damage) (X (X from) (X (X weak) (X (X ad) (X (X linage) (X .))))))))))))))))))))) (X (X mr.) (X (X Atorino) (X (X at) (X (X Salomon) (X (X Brothers) (X (X said) (X (X he) (X (X estimates) (X (X that) (X (X Times) (X (X Mirror) (X (X Co.) (X (X 's) (X (X earnings) (X (X were) (X (X down) (X (X for) (X (X the) (X (X third) (X (X quarter) (X (X ,) (X (X because) (X (X of) (X (X soft) (X (X advertising) (X (X levels) (X (X at) (X (X its) (X (X Long) (X (X Island) (X (X Newsday) (X (X and) (X (X Hartford) (X (X Courant) (X (X newspapers) (X .)))))))))))))))))))))))))))))))))))) (X (X trouble) (X (X on) (X (X the) (X (X East) (X (X Coast) (X (X was) (X (X likely) (X (X offset) (X (X by) (X (X improved) (X (X ad) (X (X linage) (X (X at) (X (X the) (X (X Los) (X (X Angeles) (X (X Times) (X (X ,) (X (X which) (X (X this) (X (X week) (X (X also) (X (X unveiled) (X (X a) (X (X redesign) (X .)))))))))))))))))))))))))) (X (X new) (X (X York) (X (X Times) (X (X Co.) (X (X is) (X (X expected) (X (X to) (X (X report) (X (X lower) (X (X earnings) (X (X for) (X (X the) (X (X third) (X (X quarter) (X (X because) (X (X of) (X (X continued) (X (X weak) (X (X advertising) (X (X levels) (X (X at) (X (X its) (X (X flagship) (X (X New) (X (X York) (X (X Times) (X (X and) (X (X deep) (X (X discounting) (X (X of) (X (X newsprint) (X (X at) (X (X its) (X (X affiliate) (X (X ,) (X (X Forest) (X (X Products) (X (X Group) (X .))))))))))))))))))))))))))))))))))))))) (X (X ``) (X (X Times) (X (X Co.) (X (X 's) (X (X regional) (X (X daily) (X (X newspapers) (X (X are) (X (X holding) (X (X up) (X (X well) (X (X ,) (X (X but) (X (X there) (X (X is) (X (X little) (X (X sign) (X (X that) (X (X things) (X (X will) (X (X improve) (X (X in) (X (X the) (X (X New) (X (X York) (X (X market) (X (X ,) (X (X '') (X (X said) (X (X Alan) (X (X Kassan) (X (X ,) (X (X an) (X (X analyst) (X (X with) (X (X Shearson) (X (X Lehman) (X (X Hutton) (X .))))))))))))))))))))))))))))))))))))))) (X (X washington) (X (X Post) (X (X Co.) (X (X is) (X (X expected) (X (X to) (X (X report) (X (X improved) (X (X earnings) (X (X ,) (X (X largely) (X (X because) (X (X of) (X (X increased) (X (X cable) (X (X revenue) (X (X and) (X (X publishing) (X (X revenue) (X (X helped) (X (X by) (X (X an) (X (X improved) (X (X retail) (X (X market) (X (X in) (X (X the) (X (X Washington) (X (X area) (X .)))))))))))))))))))))))))))))) (X (X according) (X (X to) (X (X analysts) (X (X ,) (X (X profits) (X (X were) (X (X also) (X (X helped) (X (X by) (X (X successful) (X (X cost-cutting) (X (X measures) (X (X at) (X (X Newsweek) (X .))))))))))))))) (X (X the) (X (X news-weekly) (X (X has) (X (X faced) (X (X heightened) (X (X competition) (X (X from) (X (X rival) (X (X Time) (X (X magazine) (X (X and) (X (X a) (X (X relatively) (X (X flat) (X (X magazine) (X (X advertising) (X (X market) (X .)))))))))))))))))) (X (X knight-ridder) (X (X Inc.) (X (X is) (X (X faced) (X (X with) (X (X continued) (X (X uncertainty) (X (X over) (X (X the) (X (X pending) (X (X joint) (X (X operating) (X (X agreement) (X (X between) (X (X its) (X (X Detroit) (X (X Free) (X (X Press) (X (X and) (X (X Gannett) (X (X 's) (X (X Detroit) (X (X News) (X (X ,) (X (X and) (X (X has) (X (X told) (X (X analysts) (X (X that) (X (X earnings) (X (X were) (X (X down) (X (X in) (X (X the) (X (X third) (X (X quarter) (X .))))))))))))))))))))))))))))))))))))) (X (X however) (X (X ,) (X (X analysts) (X (X point) (X (X to) (X (X positive) (X (X advertising) (X (X spending) (X (X at) (X (X several) (X (X of) (X (X its) (X (X major) (X (X daily) (X (X newspapers) (X (X ,) (X (X such) (X (X as) (X (X the) (X (X Miami) (X (X Herald) (X (X and) (X (X San) (X (X Jose) (X (X Mercury) (X (X News) (X .))))))))))))))))))))))))))) (X (X ``) (X (X The) (X (X Miami) (X (X market) (X (X is) (X (X coming) (X (X back) (X (X strong) (X (X after) (X (X a) (X (X tough) (X (X couple) (X (X of) (X (X years) (X (X '') (X (X when) (X (X Knight-Ridder) (X (X ``) (X (X was) (X (X starting) (X (X up) (X (X a) (X (X Hispanic) (X (X edition) (X (X and) (X (X circulation) (X (X was) (X (X falling) (X (X ,) (X (X '') (X (X said) (X (X Bruce) (X (X Thorp) (X (X ,) (X (X an) (X (X analyst) (X (X for) (X (X Provident) (X (X National) (X (X Bank) (X .))))))))))))))))))))))))))))))))))))))))) (X (X general) (X (X Motors) (X (X Corp.) (X (X ,) (X (X in) (X (X a) (X (X series) (X (X of) (X (X moves) (X (X that) (X (X angered) (X (X union) (X (X officials) (X (X in) (X (X the) (X (X U.S.) (X (X and) (X (X Canada) (X (X ,) (X (X has) (X (X signaled) (X (X that) (X (X as) (X (X many) (X (X as) (X (X five) (X (X North) (X (X American) (X (X assembly) (X (X plants) (X (X may) (X (X not) (X (X survive) (X (X the) (X (X mid-1990s) (X (X as) (X (X the) (X (X corporation) (X (X struggles) (X (X to) (X (X cut) (X (X its) (X (X excess) (X (X vehicle-making) (X (X capacity) (X .)))))))))))))))))))))))))))))))))))))))))))))) (X (X in) (X (X announcements) (X (X to) (X (X workers) (X (X late) (X (X last) (X (X week) (X (X ,) (X (X GM) (X (X effectively) (X (X signed) (X (X death) (X (X notices) (X (X for) (X (X two) (X (X full-sized) (X (X van) (X (X assembly) (X (X plants) (X (X ,) (X (X and) (X (X cast) (X (X serious) (X (X doubt) (X (X on) (X (X the) (X (X futures) (X (X of) (X (X three) (X (X U.S.) (X (X car) (X (X factories) (X .))))))))))))))))))))))))))))))))) (X (X gm) (X (X is) (X (X under) (X (X intense) (X (X pressure) (X (X to) (X (X close) (X (X factories) (X (X that) (X (X became) (X (X unprofitable) (X (X as) (X (X the) (X (X giant) (X (X auto) (X (X maker) (X (X 's) (X (X U.S.) (X (X market) (X (X share) (X (X skidded) (X (X during) (X (X the) (X (X past) (X (X decade) (X .)))))))))))))))))))))))))) (X (X the) (X (X company) (X (X ,) (X (X currently) (X (X using) (X (X about) (X (X 80) (X (X %) (X (X of) (X (X its) (X (X North) (X (X American) (X (X vehicle) (X (X capacity) (X (X ,) (X (X has) (X (X vowed) (X (X it) (X (X will) (X (X run) (X (X at) (X (X 100) (X (X %) (X (X of) (X (X capacity) (X (X by) (X (X 1992) (X .)))))))))))))))))))))))))))) (X (X just) (X (X a) (X (X month) (X (X ago) (X (X ,) (X (X GM) (X (X announced) (X (X it) (X (X would) (X (X make) (X (X an) (X (X aging) (X (X assembly) (X (X plant) (X (X in) (X (X Lakewood) (X (X ,) (X (X Ga.) (X (X ,) (X (X the) (X (X eighth) (X (X U.S.) (X (X assembly) (X (X facility) (X (X to) (X (X close) (X (X since) (X (X 1987) (X .))))))))))))))))))))))))))))) (X (X now) (X (X ,) (X (X GM) (X (X appears) (X (X to) (X (X be) (X (X stepping) (X (X up) (X (X the) (X (X pace) (X (X of) (X (X its) (X (X factory) (X (X consolidation) (X (X to) (X (X get) (X (X in) (X (X shape) (X (X for) (X (X the) (X (X 1990s) (X .)))))))))))))))))))))) (X (X one) (X (X reason) (X (X is) (X (X mounting) (X (X competition) (X (X from) (X (X new) (X (X Japanese) (X (X car) (X (X plants) (X (X in) (X (X the) (X (X U.S.) (X (X that) (X (X are) (X (X pouring) (X (X out) (X (X more) (X (X than) (X (X one) (X (X million) (X (X vehicles) (X (X a) (X (X year) (X (X at) (X (X costs) (X (X lower) (X (X than) (X (X GM) (X (X can) (X (X match) (X .)))))))))))))))))))))))))))))))) (X (X another) (X (X is) (X (X that) (X (X United) (X (X Auto) (X (X Workers) (X (X union) (X (X officials) (X (X have) (X (X signaled) (X (X they) (X (X want) (X (X tighter) (X (X no-layoff) (X (X provisions) (X (X in) (X (X the) (X (X new) (X (X Big) (X (X Three) (X (X national) (X (X contract) (X (X that) (X (X will) (X (X be) (X (X negotiated) (X (X next) (X (X year) (X .))))))))))))))))))))))))))))) (X (X gm) (X (X officials) (X (X want) (X (X to) (X (X get) (X (X their) (X (X strategy) (X (X to) (X (X reduce) (X (X capacity) (X (X and) (X (X the) (X (X work) (X (X force) (X (X in) (X (X place) (X (X before) (X (X those) (X (X talks) (X (X begin) (X .))))))))))))))))))))) (X (X the) (X (X problem) (X (X ,) (X (X however) (X (X ,) (X (X is) (X (X that) (X (X GM) (X (X 's) (X (X moves) (X (X are) (X (X coming) (X (X at) (X (X a) (X (X time) (X (X when) (X (X UAW) (X (X leaders) (X (X are) (X (X trying) (X (X to) (X (X silence) (X (X dissidents) (X (X who) (X (X charge) (X (X the) (X (X union) (X (X is) (X (X too) (X (X passive) (X (X in) (X (X the) (X (X face) (X (X of) (X (X GM) (X (X layoffs) (X .))))))))))))))))))))))))))))))))))))) (X (X against) (X (X that) (X (X backdrop) (X (X ,) (X (X UAW) (X (X Vice) (X (X President) (X (X Stephen) (X (X P.) (X (X Yokich) (X (X ,) (X (X who) (X (X recently) (X (X became) (X (X head) (X (X of) (X (X the) (X (X union) (X (X 's) (X (X GM) (X (X department) (X (X ,) (X (X issued) (X (X a) (X (X statement) (X (X Friday) (X (X blasting) (X (X GM) (X (X 's) (X (X ``) (X (X flagrant) (X (X insensitivity) (X (X '') (X (X toward) (X (X union) (X (X members) (X .))))))))))))))))))))))))))))))))))))) (X (X the) (X (X auto) (X (X maker) (X (X 's) (X (X decision) (X (X to) (X (X let) (X (X word) (X (X of) (X (X the) (X (X latest) (X (X shutdowns) (X (X and) (X (X product) (X (X reassignments) (X (X trickle) (X (X out) (X (X in) (X (X separate) (X (X communiques) (X (X to) (X (X the) (X (X affected) (X (X plants) (X (X showed) (X (X ``) (X (X disarray) (X (X '') (X (X and) (X (X an) (X (X ``) (X (X inability) (X (X or) (X (X unwillingness) (X (X to) (X (X provide) (X (X consistent) (X (X information) (X (X ,) (X (X '') (X (X Mr.) (X (X Yokich) (X (X said) (X .)))))))))))))))))))))))))))))))))))))))))))) (X (X gm) (X (X officials) (X (X told) (X (X workers) (X (X late) (X (X last) (X (X week) (X (X of) (X (X the) (X (X following) (X (X moves) (X (X :) (X (X Production) (X (X of) (X (X full-sized) (X (X vans) (X (X will) (X (X be) (X (X consolidated) (X (X into) (X (X a) (X (X single) (X (X plant) (X (X in) (X (X Flint) (X (X ,) (X (X Mich) (X .)))))))))))))))))))))))))))) (X (X that) (X (X means) (X (X two) (X (X plants) (X (X --) (X (X one) (X (X in) (X (X Scarborough) (X (X ,) (X (X Ontario) (X (X ,) (X (X and) (X (X the) (X (X other) (X (X in) (X (X Lordstown) (X (X ,) (X (X Ohio) (X (X --) (X (X probably) (X (X will) (X (X be) (X (X shut) (X (X down) (X (X after) (X (X the) (X (X end) (X (X of) (X (X 1991) (X .)))))))))))))))))))))))))))))) (X (X the) (X (X shutdowns) (X (X will) (X (X idle) (X (X about) (X (X 3,000) (X (X Canadian) (X (X assembly) (X (X workers) (X (X and) (X (X about) (X (X 2,500) (X (X workers) (X (X in) (X (X Ohio) (X .)))))))))))))))) (X (X robert) (X (X White) (X (X ,) (X (X Canadian) (X (X Auto) (X (X Workers) (X (X union) (X (X president) (X (X ,) (X (X used) (X (X the) (X (X impending) (X (X Scarborough) (X (X shutdown) (X (X to) (X (X criticize) (X (X the) (X (X U.S.-Canada) (X (X free) (X (X trade) (X (X agreement) (X (X and) (X (X its) (X (X champion) (X (X ,) (X (X Prime) (X (X Minister) (X (X Brian) (X (X Mulroney) (X .)))))))))))))))))))))))))))))) (X (X but) (X (X Canadian) (X (X auto) (X (X workers) (X (X may) (X (X benefit) (X (X from) (X (X a) (X (X separate) (X (X GM) (X (X move) (X (X that) (X (X affects) (X (X three) (X (X U.S.) (X (X car) (X (X plants) (X (X and) (X (X one) (X (X in) (X (X Quebec) (X .)))))))))))))))))))))) (X (X workers) (X (X at) (X (X plants) (X (X in) (X (X Van) (X (X Nuys) (X (X ,) (X (X Calif.) (X (X ,) (X (X Oklahoma) (X (X City) (X (X and) (X (X Pontiac) (X (X ,) (X (X Mich.) (X (X ,) (X (X were) (X (X told) (X (X their) (X (X facilities) (X (X are) (X (X no) (X (X longer) (X (X being) (X (X considered) (X (X to) (X (X build) (X (X the) (X (X next) (X (X generation) (X (X of) (X (X the) (X (X Pontiac) (X (X Firebird) (X (X and) (X (X Chevrolet) (X (X Camaro) (X (X muscle) (X (X cars) (X .)))))))))))))))))))))))))))))))))))))))) (X (X gm) (X (X is) (X (X studying) (X (X whether) (X (X it) (X (X can) (X (X build) (X (X the) (X (X new) (X (X Camaro-Firebird) (X (X profitably) (X (X at) (X (X a) (X (X plant) (X (X in) (X (X St.) (X (X Therese) (X (X ,) (X (X Quebec) (X (X ,) (X (X company) (X (X and) (X (X union) (X (X officials) (X (X said) (X .)))))))))))))))))))))))))) (X (X that) (X (X announcement) (X (X left) (X (X union) (X (X officials) (X (X in) (X (X Van) (X (X Nuys) (X (X and) (X (X Oklahoma) (X (X City) (X (X uncertain) (X (X about) (X (X their) (X (X futures) (X .)))))))))))))))) (X (X the) (X (X Van) (X (X Nuys) (X (X plant) (X (X ,) (X (X which) (X (X employs) (X (X about) (X (X 3,000) (X (X workers) (X (X ,) (X (X does) (X (X n't) (X (X have) (X (X a) (X (X product) (X (X to) (X (X build) (X (X after) (X (X 1993) (X .))))))))))))))))))))) (X (X jerry) (X (X Shrieves) (X (X ,) (X (X UAW) (X (X local) (X (X president) (X (X ,) (X (X said) (X (X the) (X (X facility) (X (X was) (X (X asked) (X (X to) (X (X draw) (X (X up) (X (X plans) (X (X to) (X (X continue) (X (X working) (X (X as) (X (X a) (X (X ``) (X (X flex) (X (X plant) (X (X ,) (X (X '') (X (X which) (X (X could) (X (X build) (X (X several) (X (X different) (X (X types) (X (X of) (X (X products) (X (X on) (X (X short) (X (X notice) (X (X to) (X (X satisfy) (X (X demand) (X .))))))))))))))))))))))))))))))))))))))))) (X (X at) (X (X the) (X (X Oklahoma) (X (X City) (X (X plant) (X (X ,) (X (X which) (X (X employs) (X (X about) (X (X 6,000) (X (X workers) (X (X building) (X (X the) (X (X eight-year-old) (X (X A-body) (X (X mid-sized) (X (X cars) (X (X ,) (X (X Steve) (X (X Featherston) (X (X ,) (X (X UAW) (X (X local) (X (X vice) (X (X president) (X (X ,) (X (X said) (X (X the) (X (X plant) (X (X has) (X (X no) (X (X new) (X (X product) (X (X lined) (X (X up) (X (X ,) (X (X and) (X (X ``) (X (X none) (X (X of) (X (X us) (X (X knows) (X (X '') (X (X when) (X (X the) (X (X A-body) (X (X cars) (X (X will) (X (X die) (X .)))))))))))))))))))))))))))))))))))))))))))))))))) (X (X he) (X (X said) (X (X he) (X (X believes) (X (X GM) (X (X has) (X (X plans) (X (X to) (X (X keep) (X (X building) (X (X A-body) (X (X cars) (X (X into) (X (X the) (X (X mid-1990s) (X .)))))))))))))))) (X (X at) (X (X Pontiac) (X (X ,) (X (X however) (X (X ,) (X (X the) (X (X Camaro-Firebird) (X (X decision) (X (X appears) (X (X to) (X (X erase) (X (X UAW) (X (X hopes) (X (X that) (X (X GM) (X (X would) (X (X reopen) (X (X the) (X (X shuttered) (X (X assembly) (X (X plant) (X (X that) (X (X last) (X (X built) (X (X the) (X (X plastic-bodied) (X (X ,) (X (X two-seater) (X (X Pontiac) (X (X Fiero) (X (X model) (X .)))))))))))))))))))))))))))))))) (X (X the) (X (X Fiero) (X (X plant) (X (X was) (X (X viewed) (X (X as) (X (X a) (X (X model) (X (X of) (X (X union-management) (X (X cooperation) (X (X at) (X (X GM) (X (X before) (X (X slow) (X (X sales) (X (X of) (X (X the) (X (X Fiero) (X (X forced) (X (X the) (X (X company) (X (X to) (X (X close) (X (X the) (X (X factory) (X (X last) (X (X year) (X .))))))))))))))))))))))))))))) (X (X union) (X (X officials) (X (X have) (X (X taken) (X (X a) (X (X beating) (X (X politically) (X (X as) (X (X a) (X (X result) (X .))))))))))) (X (X dissident) (X (X UAW) (X (X members) (X (X have) (X (X used) (X (X the) (X (X Fiero) (X (X plant) (X (X as) (X (X a) (X (X symbol) (X (X of) (X (X labor-management) (X (X cooperation) (X (X 's) (X (X failure) (X .))))))))))))))))) (X (X institut) (X (X Merieux) (X (X S.A.) (X (X of) (X (X France) (X (X said) (X (X the) (X (X Canadian) (X (X government) (X (X raised) (X (X an) (X (X obstacle) (X (X to) (X (X its) (X (X proposed) (X (X acquisition) (X (X of) (X (X Connaught) (X (X BioSciences) (X (X Inc.) (X (X for) (X (X 942) (X (X million) (X (X Canadian) (X (X dollars) (X (X -LRB-) (X (X US$) (X (X 801.6) (X (X million) (X (X -RRB-) (X .))))))))))))))))))))))))))))))) (X (X merieux) (X (X said) (X (X the) (X (X government) (X (X 's) (X (X minister) (X (X of) (X (X industry) (X (X ,) (X (X science) (X (X and) (X (X technology) (X (X told) (X (X it) (X (X that) (X (X he) (X (X was) (X (X n't) (X (X convinced) (X (X that) (X (X the) (X (X purchase) (X (X is) (X (X likely) (X (X to) (X (X be) (X (X of) (X (X ``) (X (X net) (X (X benefit) (X (X '') (X (X to) (X (X Canada) (X .)))))))))))))))))))))))))))))))))) (X (X canadian) (X (X investment) (X (X rules) (X (X require) (X (X that) (X (X big) (X (X foreign) (X (X takeovers) (X (X meet) (X (X that) (X (X standard) (X .)))))))))))) (X (X the) (X (X French) (X (X company) (X (X said) (X (X the) (X (X government) (X (X gave) (X (X it) (X (X 30) (X (X days) (X (X in) (X (X which) (X (X to) (X (X submit) (X (X information) (X (X to) (X (X further) (X (X support) (X (X its) (X (X takeover) (X (X plan) (X .)))))))))))))))))))))) (X (X both) (X (X Merieux) (X (X and) (X (X Connaught) (X (X are) (X (X biotechnology) (X (X research) (X (X and) (X (X vaccine) (X (X manufacturing) (X (X concerns) (X .)))))))))))) (X (X the) (X (X government) (X (X 's) (X (X action) (X (X was) (X (X unusual) (X .))))))) (X (X alan) (X (X Nymark) (X (X ,) (X (X executive) (X (X vice) (X (X president) (X (X of) (X (X Investment) (X (X Canada) (X (X ,) (X (X which) (X (X oversees) (X (X foreign) (X (X takeovers) (X (X ,) (X (X said) (X (X it) (X (X marked) (X (X the) (X (X first) (X (X time) (X (X in) (X (X its) (X (X four-year) (X (X history) (X (X that) (X (X the) (X (X agency) (X (X has) (X (X made) (X (X an) (X (X adverse) (X (X net-benefit) (X (X decision) (X (X about) (X (X the) (X (X acquisition) (X (X of) (X (X a) (X (X publicly) (X (X traded) (X (X company) (X .))))))))))))))))))))))))))))))))))))))))))) (X (X he) (X (X said) (X (X it) (X (X has) (X (X reached) (X (X the) (X (X same) (X (X conclusions) (X (X about) (X (X some) (X (X attempts) (X (X to) (X (X buy) (X (X closely) (X (X held) (X (X concerns) (X (X ,) (X (X but) (X (X eventually) (X (X allowed) (X (X those) (X (X acquisitions) (X (X to) (X (X proceed) (X .))))))))))))))))))))))))) (X (X ``) (X (X This) (X (X is) (X (X n't) (X (X a) (X (X change) (X (X in) (X (X government) (X (X policy) (X (X ;) (X (X this) (X (X provision) (X (X has) (X (X been) (X (X used) (X (X before) (X (X ,) (X (X '') (X (X said) (X (X Jodi) (X (X Redmond) (X (X ,) (X (X press) (X (X secretary) (X (X for) (X (X Harvie) (X (X Andre) (X (X ,) (X (X Canada) (X (X 's) (X (X minister) (X (X of) (X (X industry) (X (X ,) (X (X science) (X (X and) (X (X technology) (X .)))))))))))))))))))))))))))))))))))))) (X (X mr.) (X (X Andre) (X (X issued) (X (X the) (X (X ruling) (X (X based) (X (X on) (X (X a) (X (X recommendation) (X (X by) (X (X Investment) (X (X Canada) (X .))))))))))))) (X (X spokesmen) (X (X for) (X (X Merieux) (X (X and) (X (X Connaught) (X (X said) (X (X they) (X (X had) (X (X n't) (X (X been) (X (X informed) (X (X of) (X (X specific) (X (X areas) (X (X of) (X (X concern) (X (X by) (X (X either) (X (X the) (X (X government) (X (X or) (X (X Investment) (X (X Canada) (X (X ,) (X (X but) (X (X added) (X (X they) (X (X hope) (X (X to) (X (X have) (X (X more) (X (X information) (X (X early) (X (X this) (X (X week) (X .)))))))))))))))))))))))))))))))))))) (X (X investment) (X (X Canada) (X (X declined) (X (X to) (X (X comment) (X (X on) (X (X the) (X (X reasons) (X (X for) (X (X the) (X (X government) (X (X decision) (X .))))))))))))) (X (X viren) (X (X Mehta) (X (X ,) (X (X a) (X (X partner) (X (X with) (X (X Mehta) (X (X &) (X (X Isaly) (X (X ,) (X (X a) (X (X New) (X (X York-based) (X (X pharmaceutical) (X (X industry) (X (X research) (X (X firm) (X (X ,) (X (X said) (X (X the) (X (X government) (X (X 's) (X (X ruling) (X (X was) (X (X n't) (X (X unexpected) (X .))))))))))))))))))))))))))) (X (X ``) (X (X This) (X (X has) (X (X become) (X (X a) (X (X very) (X (X politicized) (X (X deal) (X (X ,) (X (X concerning) (X (X Canada) (X (X 's) (X (X only) (X (X large) (X (X ,) (X (X world-class) (X (X bio-research) (X (X or) (X (X pharmaceutical) (X (X company) (X (X ,) (X (X '') (X (X Mr.) (X (X Mehta) (X (X said) (X .)))))))))))))))))))))))))) (X (X mr.) (X (X Mehta) (X (X said) (X (X the) (X (X move) (X (X that) (X (X could) (X (X allow) (X (X the) (X (X transaction) (X (X to) (X (X go) (X (X ahead) (X (X as) (X (X planned) (X (X could) (X (X be) (X (X an) (X (X out-of-court) (X (X settlement) (X (X of) (X (X Connaught) (X (X 's) (X (X dispute) (X (X with) (X (X the) (X (X University) (X (X of) (X (X Toronto) (X .)))))))))))))))))))))))))))))) (X (X the) (X (X University) (X (X is) (X (X seeking) (X (X to) (X (X block) (X (X the) (X (X acquisition) (X (X of) (X (X Connaught) (X (X by) (X (X foreign) (X (X interests) (X (X ,) (X (X citing) (X (X concerns) (X (X about) (X (X the) (X (X amount) (X (X of) (X (X research) (X (X that) (X (X would) (X (X be) (X (X done) (X (X in) (X (X Canada) (X .)))))))))))))))))))))))))))) (X (X the) (X (X university) (X (X is) (X (X considering) (X (X a) (X (X settlement) (X (X proposal) (X (X made) (X (X by) (X (X Connaught) (X .))))))))))) (X (X while) (X (X neither) (X (X side) (X (X will) (X (X disclose) (X (X its) (X (X contents) (X (X ,) (X (X Mr.) (X (X Mehta) (X (X expects) (X (X it) (X (X to) (X (X contain) (X (X more) (X (X specific) (X (X guarantees) (X (X on) (X (X research) (X (X and) (X (X development) (X (X spending) (X (X levels) (X (X in) (X (X Canada) (X (X than) (X (X Merieux) (X (X offered) (X (X to) (X (X Investment) (X (X Canada) (X .)))))))))))))))))))))))))))))))) (X (X some) (X (X analysts) (X (X ,) (X (X such) (X (X as) (X (X Murray) (X (X Grossner) (X (X of) (X (X Toronto-based) (X (X Richardson) (X (X Greenshields) (X (X Inc.) (X (X ,) (X (X believe) (X (X the) (X (X government) (X (X ruling) (X (X leaves) (X (X the) (X (X door) (X (X open) (X (X for) (X (X other) (X (X bidders) (X (X ,) (X (X such) (X (X as) (X (X Switzerland) (X (X 's) (X (X Ciba-Geigy) (X (X and) (X (X Chiron) (X (X Corp.) (X (X of) (X (X Emeryville) (X (X ,) (X (X Calif) (X .)))))))))))))))))))))))))))))))))))))) (X (X officials) (X (X for) (X (X the) (X (X two) (X (X concerns) (X (X ,) (X (X which) (X (X are) (X (X bidding) (X (X C$) (X (X 30) (X (X a) (X (X share) (X (X for) (X (X Connaught) (X (X ,) (X (X could) (X (X n't) (X (X be) (X (X reached) (X (X for) (X (X comment) (X .))))))))))))))))))))))) (X (X french) (X (X state-owned) (X (X Rhone-Poulenc) (X (X S.A.) (X (X holds) (X (X 51) (X (X %) (X (X of) (X (X Merieux) (X .)))))))))) (X (X weatherford) (X (X International) (X (X Inc.) (X (X said) (X (X it) (X (X canceled) (X (X plans) (X (X for) (X (X a) (X (X preferred-stock) (X (X swap) (X (X but) (X (X may) (X (X resume) (X (X payment) (X (X of) (X (X dividends) (X (X on) (X (X the) (X (X stock) (X (X ,) (X (X and) (X (X added) (X (X that) (X (X it) (X (X expects) (X (X to) (X (X publicly) (X (X offer) (X (X about) (X (X 10) (X (X million) (X (X common) (X (X shares) (X .))))))))))))))))))))))))))))))))))) (X (X the) (X (X company) (X (X said) (X (X it) (X (X planned) (X (X to) (X (X offer) (X (X an) (X (X undetermined) (X (X number) (X (X of) (X (X common) (X (X shares) (X (X in) (X (X exchange) (X (X for) (X (X the) (X (X 585,000) (X (X shares) (X (X of) (X (X its) (X (X preferred) (X (X stock) (X (X outstanding) (X .))))))))))))))))))))))))) (X (X the) (X (X exchange) (X (X ratio) (X (X was) (X (X never) (X (X established) (X .))))))) (X (X weatherford) (X (X said) (X (X market) (X (X conditions) (X (X led) (X (X to) (X (X the) (X (X cancellation) (X (X of) (X (X the) (X (X planned) (X (X exchange) (X .))))))))))))) (X (X the) (X (X energy-services) (X (X concern) (X (X said) (X (X ,) (X (X however) (X (X ,) (X (X that) (X (X in) (X (X January) (X (X 1990) (X (X ,) (X (X it) (X (X may) (X (X resume) (X (X payments) (X (X of) (X (X dividends) (X (X on) (X (X the) (X (X preferred) (X (X stock) (X .))))))))))))))))))))))) (X (X weatherford) (X (X suspended) (X (X its) (X (X preferred-dividend) (X (X payment) (X (X in) (X (X October) (X (X 1985) (X (X and) (X (X said) (X (X it) (X (X has) (X (X n't) (X (X any) (X (X plans) (X (X to) (X (X catch) (X (X up) (X (X on) (X (X dividends) (X (X in) (X (X arrears) (X (X about) (X (X $) (X (X 6) (X (X million) (X (X ,) (X (X but) (X (X will) (X (X do) (X (X so) (X (X some) (X (X time) (X (X in) (X (X the) (X (X future) (X .))))))))))))))))))))))))))))))))))))) (X (X additionally) (X (X ,) (X (X the) (X (X company) (X (X said) (X (X it) (X (X filed) (X (X with) (X (X the) (X (X Securities) (X (X and) (X (X Exchange) (X (X Commission) (X (X for) (X (X the) (X (X proposed) (X (X offering) (X (X of) (X (X 10) (X (X million) (X (X shares) (X (X of) (X (X common) (X (X stock) (X (X ,) (X (X expected) (X (X to) (X (X be) (X (X offered) (X (X in) (X (X November) (X .)))))))))))))))))))))))))))))))) (X (X the) (X (X company) (X (X said) (X (X Salomon) (X (X Brothers) (X (X Inc.) (X (X and) (X (X Howard) (X (X ,) (X (X Weil) (X (X ,) (X (X Labouisse) (X (X ,) (X (X Friedrichs) (X (X Inc.) (X (X ,) (X (X underwriters) (X (X for) (X (X the) (X (X offering) (X (X ,) (X (X were) (X (X granted) (X (X an) (X (X option) (X (X to) (X (X buy) (X (X as) (X (X much) (X (X as) (X (X an) (X (X additional) (X (X 1.5) (X (X million) (X (X shares) (X (X to) (X (X cover) (X (X over-allotments) (X .))))))))))))))))))))))))))))))))))))))) (X (X proceeds) (X (X will) (X (X be) (X (X used) (X (X to) (X (X eliminate) (X (X and) (X (X restructure) (X (X bank) (X (X debt) (X .))))))))))) (X (X weatherford) (X (X currently) (X (X has) (X (X approximately) (X (X 11.1) (X (X million) (X (X common) (X (X shares) (X (X outstanding) (X .)))))))))) (X (X earnings) (X (X for) (X (X most) (X (X of) (X (X the) (X (X nation) (X (X 's) (X (X major) (X (X pharmaceutical) (X (X makers) (X (X are) (X (X believed) (X (X to) (X (X have) (X (X moved) (X (X ahead) (X (X briskly) (X (X in) (X (X the) (X (X third) (X (X quarter) (X (X ,) (X (X as) (X (X companies) (X (X with) (X (X newer) (X (X ,) (X (X big-selling) (X (X prescription) (X (X drugs) (X (X fared) (X (X especially) (X (X well) (X .)))))))))))))))))))))))))))))))))) (X (X for) (X (X the) (X (X third) (X (X consecutive) (X (X quarter) (X (X ,) (X (X however) (X (X ,) (X (X most) (X (X of) (X (X the) (X (X companies) (X (X ') (X (X revenues) (X (X were) (X (X battered) (X (X by) (X (X adverse) (X (X foreign-currency) (X (X translations) (X (X as) (X (X a) (X (X result) (X (X of) (X (X the) (X (X strong) (X (X dollar) (X (X abroad) (X .))))))))))))))))))))))))))))) (X (X analysts) (X (X said) (X (X that) (X (X Merck) (X (X &) (X (X Co.) (X (X ,) (X (X Eli) (X (X Lilly) (X (X &) (X (X Co.) (X (X ,) (X (X Warner-Lambert) (X (X Co.) (X (X and) (X (X the) (X (X Squibb) (X (X Corp.) (X (X unit) (X (X of) (X (X Bristol-Myers) (X (X Squibb) (X (X Co.) (X (X all) (X (X benefited) (X (X from) (X (X strong) (X (X sales) (X (X of) (X (X relatively) (X (X new) (X (X ,) (X (X higher-priced) (X (X medicines) (X (X that) (X (X provide) (X (X wide) (X (X profit) (X (X margins) (X .)))))))))))))))))))))))))))))))))))))))) (X (X less) (X (X robust) (X (X earnings) (X (X at) (X (X Pfizer) (X (X Inc.) (X (X and) (X (X Upjohn) (X (X Co.) (X (X were) (X (X attributed) (X (X to) (X (X those) (X (X companies) (X (X ') (X (X older) (X (X products) (X (X ,) (X (X many) (X (X of) (X (X which) (X (X face) (X (X stiffening) (X (X competition) (X (X from) (X (X generic) (X (X drugs) (X (X and) (X (X other) (X (X medicines) (X .))))))))))))))))))))))))))))))) (X (X joseph) (X (X Riccardo) (X (X ,) (X (X an) (X (X analyst) (X (X with) (X (X Bear) (X (X ,) (X (X Stearns) (X (X &) (X (X Co.) (X (X ,) (X (X said) (X (X that) (X (X over) (X (X the) (X (X past) (X (X few) (X (X years) (X (X most) (X (X drug) (X (X makers) (X (X have) (X (X shed) (X (X their) (X (X slow-growing) (X (X businesses) (X (X and) (X (X instituted) (X (X other) (X (X cost) (X (X savings) (X (X ,) (X (X such) (X (X as) (X (X consolidating) (X (X manufacturing) (X (X plants) (X (X and) (X (X administrative) (X (X staffs) (X .)))))))))))))))))))))))))))))))))))))))))) (X (X as) (X (X a) (X (X result) (X (X ,) (X (X ``) (X (X major) (X (X new) (X (X products) (X (X are) (X (X having) (X (X significant) (X (X impact) (X (X ,) (X (X even) (X (X on) (X (X a) (X (X company) (X (X with) (X (X very) (X (X large) (X (X revenues) (X (X ,) (X (X '') (X (X Mr.) (X (X Riccardo) (X (X said) (X .))))))))))))))))))))))))))) (X (X analysts) (X (X said) (X (X profit) (X (X for) (X (X the) (X (X dozen) (X (X or) (X (X so) (X (X big) (X (X drug) (X (X makers) (X (X ,) (X (X as) (X (X a) (X (X group) (X (X ,) (X (X is) (X (X estimated) (X (X to) (X (X have) (X (X climbed) (X (X between) (X (X 11) (X (X %) (X (X and) (X (X 14) (X (X %) (X .)))))))))))))))))))))))))))) (X (X while) (X (X that) (X (X 's) (X (X not) (X (X spectacular) (X (X ,) (X (X Neil) (X (X Sweig) (X (X ,) (X (X an) (X (X analyst) (X (X with) (X (X Prudential) (X (X Bache) (X (X ,) (X (X said) (X (X that) (X (X the) (X (X rate) (X (X of) (X (X growth) (X (X will) (X (X ``) (X (X look) (X (X especially) (X (X good) (X (X as) (X (X compared) (X (X to) (X (X other) (X (X companies) (X (X if) (X (X the) (X (X economy) (X (X turns) (X (X downward) (X (X .) (X '')))))))))))))))))))))))))))))))))))))) (X (X mr.) (X (X Sweig) (X (X estimated) (X (X that) (X (X Merck) (X (X 's) (X (X profit) (X (X for) (X (X the) (X (X quarter) (X (X rose) (X (X by) (X (X about) (X (X 22) (X (X %) (X (X ,) (X (X propelled) (X (X by) (X (X sales) (X (X of) (X (X its) (X (X line-up) (X (X of) (X (X fast-growing) (X (X prescription) (X (X drugs) (X (X ,) (X (X including) (X (X its) (X (X anti-cholesterol) (X (X drug) (X (X ,) (X (X Mevacor) (X (X ;) (X (X a) (X (X high) (X (X blood) (X (X pressure) (X (X medicine) (X (X ,) (X (X Vasotec) (X (X ;) (X (X Primaxin) (X (X ,) (X (X an) (X (X antibiotic) (X (X ,) (X (X and) (X (X Pepcid) (X (X ,) (X (X an) (X (X anti-ulcer) (X (X medication) (X .)))))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X profit) (X (X climbed) (X (X even) (X (X though) (X (X Merck) (X (X 's) (X (X sales) (X (X were) (X (X reduced) (X (X by) (X (X ``) (X (X one) (X (X to) (X (X three) (X (X percentage) (X (X points) (X (X '') (X (X as) (X (X a) (X (X result) (X (X of) (X (X the) (X (X strong) (X (X dollar) (X (X ,) (X (X Mr.) (X (X Sweig) (X (X said) (X .))))))))))))))))))))))))))))) (X (X in) (X (X the) (X (X third) (X (X quarter) (X (X of) (X (X 1988) (X (X ,) (X (X Merck) (X (X earned) (X (X $) (X (X 311.8) (X (X million) (X (X ,) (X (X or) (X (X 79) (X (X cents) (X (X a) (X (X share) (X .))))))))))))))))))) (X (X in) (X (X Rahway) (X (X ,) (X (X N.J.) (X (X ,) (X (X a) (X (X Merck) (X (X spokesman) (X (X said) (X (X the) (X (X company) (X (X does) (X (X n't) (X (X make) (X (X earnings) (X (X projections) (X .))))))))))))))))) (X (X mr.) (X (X Sweig) (X (X said) (X (X he) (X (X estimated) (X (X that) (X (X Lilly) (X (X 's) (X (X earnings) (X (X for) (X (X the) (X (X quarter) (X (X jumped) (X (X about) (X (X 20) (X (X %) (X (X ,) (X (X largely) (X (X because) (X (X of) (X (X the) (X (X performance) (X (X of) (X (X its) (X (X new) (X (X anti-depressant) (X (X Prozac) (X .)))))))))))))))))))))))))))) (X (X the) (X (X drug) (X (X ,) (X (X introduced) (X (X last) (X (X year) (X (X ,) (X (X is) (X (X expected) (X (X to) (X (X generate) (X (X sales) (X (X of) (X (X about) (X (X $) (X (X 300) (X (X million) (X (X this) (X (X year) (X .)))))))))))))))))))) (X (X ``) (X (X It) (X (X 's) (X (X turning) (X (X out) (X (X to) (X (X be) (X (X a) (X (X real) (X (X blockbuster) (X (X ,) (X (X '') (X (X Mr.) (X (X Sweig) (X (X said) (X .)))))))))))))))) (X (X in) (X (X last) (X (X year) (X (X 's) (X (X third) (X (X quarter) (X (X ,) (X (X Lilly) (X (X earned) (X (X $) (X (X 171.4) (X (X million) (X (X ,) (X (X or) (X (X $) (X (X 1.20) (X (X a) (X (X share) (X .))))))))))))))))))) (X (X in) (X (X Indianapolis) (X (X ,) (X (X Lilly) (X (X declined) (X (X comment) (X .))))))) (X (X several) (X (X analysts) (X (X said) (X (X they) (X (X expected) (X (X Warner-Lambert) (X (X 's) (X (X profit) (X (X also) (X (X to) (X (X increase) (X (X by) (X (X more) (X (X than) (X (X 20) (X (X %) (X (X from) (X (X $) (X (X 87.7) (X (X million) (X (X ,) (X (X or) (X (X $) (X (X 1.25) (X (X a) (X (X share) (X (X ,) (X (X it) (X (X reported) (X (X in) (X (X the) (X (X like) (X (X period) (X (X last) (X (X year) (X .)))))))))))))))))))))))))))))))))))) (X (X the) (X (X company) (X (X is) (X (X praised) (X (X by) (X (X analysts) (X (X for) (X (X sharply) (X (X lowering) (X (X its) (X (X costs) (X (X in) (X (X recent) (X (X years) (X (X and) (X (X shedding) (X (X numerous) (X (X companies) (X (X with) (X (X low) (X (X profit) (X (X margins) (X .))))))))))))))))))))))) (X (X the) (X (X company) (X (X 's) (X (X lean) (X (X operation) (X (X ,) (X (X analysts) (X (X said) (X (X ,) (X (X allowed) (X (X sharp-rising) (X (X sales) (X (X from) (X (X its) (X (X cholesterol) (X (X drug) (X (X ,) (X (X Lopid) (X (X ,) (X (X to) (X (X power) (X (X earnings) (X (X growth) (X .)))))))))))))))))))))))) (X (X lopid) (X (X sales) (X (X are) (X (X expected) (X (X to) (X (X be) (X (X about) (X (X $) (X (X 300) (X (X million) (X (X this) (X (X year) (X (X ,) (X (X up) (X (X from) (X (X $) (X (X 190) (X (X million) (X (X in) (X (X 1988) (X .))))))))))))))))))))) (X (X in) (X (X Morris) (X (X Plains) (X (X ,) (X (X N.J.) (X (X ,) (X (X a) (X (X spokesman) (X (X for) (X (X the) (X (X company) (X (X said) (X (X the) (X (X analysts) (X (X ') (X (X projections) (X (X are) (X (X ``) (X (X in) (X (X the) (X (X ballpark) (X (X .) (X ''))))))))))))))))))))))) (X (X squibb) (X (X 's) (X (X profit) (X (X ,) (X (X estimated) (X (X by) (X (X analysts) (X (X to) (X (X be) (X (X about) (X (X 18) (X (X %) (X (X above) (X (X the) (X (X $) (X (X 123) (X (X million) (X (X ,) (X (X or) (X (X $) (X (X 1.25) (X (X a) (X (X share) (X (X ,) (X (X it) (X (X earned) (X (X in) (X (X the) (X (X third) (X (X quarter) (X (X of) (X (X 1988) (X (X ,) (X (X was) (X (X the) (X (X result) (X (X of) (X (X especially) (X (X strong) (X (X sales) (X (X of) (X (X its) (X (X Capoten) (X (X drug) (X (X for) (X (X treating) (X (X high) (X (X blood) (X (X pressure) (X (X and) (X (X other) (X (X heart) (X (X disease) (X .)))))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X company) (X (X was) (X (X officially) (X (X merged) (X (X with) (X (X Bristol-Myers) (X (X Co.) (X (X earlier) (X (X this) (X (X month) (X .)))))))))))) (X (X bristol-myers) (X (X declined) (X (X to) (X (X comment) (X .))))) (X (X mr.) (X (X Riccardo) (X (X of) (X (X Bear) (X (X Stearns) (X (X said) (X (X that) (X (X Schering-Plough) (X (X Corp.) (X (X 's) (X (X expected) (X (X profit) (X (X rise) (X (X of) (X (X about) (X (X 18) (X (X %) (X (X to) (X (X 20) (X (X %) (X (X ,) (X (X and) (X (X Bristol-Meyers) (X (X 's) (X (X expected) (X (X profit) (X (X increase) (X (X of) (X (X about) (X (X 13) (X (X %) (X (X are) (X (X largely) (X (X because) (X (X ``) (X (X those) (X (X companies) (X (X are) (X (X really) (X (X managed) (X (X well) (X (X .) (X ''))))))))))))))))))))))))))))))))))))))))))) (X (X scheringplough) (X (X earned) (X (X $) (X (X 94.4) (X (X million) (X (X ,) (X (X or) (X (X 84) (X (X cents) (X (X a) (X (X share) (X (X ,) (X (X while) (X (X Bristol-Myers) (X (X earned) (X (X $) (X (X 232.3) (X (X million) (X (X ,) (X (X or) (X (X 81) (X (X cents) (X (X a) (X (X share) (X (X ,) (X (X in) (X (X the) (X (X like) (X (X period) (X (X a) (X (X year) (X (X earlier) (X .))))))))))))))))))))))))))))))))) (X (X in) (X (X Madison) (X (X ,) (X (X N.J.) (X (X ,) (X (X a) (X (X spokesman) (X (X for) (X (X Schering-Plough) (X (X said) (X (X the) (X (X company) (X (X has) (X (X ``) (X (X no) (X (X problems) (X (X '') (X (X with) (X (X the) (X (X average) (X (X estimate) (X (X by) (X (X a) (X (X analysts) (X (X that) (X (X third-quarter) (X (X earnings) (X (X per) (X (X share) (X (X rose) (X (X by) (X (X about) (X (X 19) (X (X %) (X (X ,) (X (X to) (X (X $) (X (X 1) (X .))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X company) (X (X expects) (X (X to) (X (X achieve) (X (X the) (X (X 20) (X (X %) (X (X increase) (X (X in) (X (X full-year) (X (X earnings) (X (X per) (X (X share) (X (X ,) (X (X as) (X (X it) (X (X projected) (X (X in) (X (X the) (X (X spring) (X (X ,) (X (X the) (X (X spokesman) (X (X said) (X .)))))))))))))))))))))))))) (X (X meanwhile) (X (X ,) (X (X analysts) (X (X said) (X (X Pfizer) (X (X 's) (X (X recent) (X (X string) (X (X of) (X (X lackluster) (X (X quarterly) (X (X performances) (X (X continued) (X (X ,) (X (X as) (X (X earnings) (X (X in) (X (X the) (X (X quarter) (X (X were) (X (X expected) (X (X to) (X (X decline) (X (X by) (X (X about) (X (X 5) (X (X %) (X .)))))))))))))))))))))))))))) (X (X sales) (X (X of) (X (X Pfizer) (X (X 's) (X (X important) (X (X drugs) (X (X ,) (X (X Feldene) (X (X for) (X (X treating) (X (X arthritis) (X (X ,) (X (X and) (X (X Procardia) (X (X ,) (X (X a) (X (X heart) (X (X medicine) (X (X ,) (X (X have) (X (X shrunk) (X (X because) (X (X of) (X (X increased) (X (X competition) (X .)))))))))))))))))))))))))) (X (X ``) (X (X The) (X (X -LRB-) (X (X strong) (X (X -RRB-) (X (X dollar) (X (X hurt) (X (X Pfizer) (X (X a) (X (X lot) (X (X ,) (X (X too) (X (X ,) (X (X '') (X (X Mr.) (X (X Sweig) (X (X said) (X .)))))))))))))))))) (X (X in) (X (X the) (X (X third) (X (X quarter) (X (X last) (X (X year) (X (X ,) (X (X Pfizer) (X (X earned) (X (X $) (X (X 216.8) (X (X million) (X (X ,) (X (X or) (X (X $) (X (X 1.29) (X (X a) (X (X share) (X .))))))))))))))))))) (X (X in) (X (X New) (X (X York) (X (X ,) (X (X the) (X (X company) (X (X declined) (X (X comment) (X .))))))))) (X (X analysts) (X (X said) (X (X they) (X (X expected) (X (X Upjohn) (X (X 's) (X (X profit) (X (X to) (X (X be) (X (X flat) (X (X or) (X (X rise) (X (X by) (X (X only) (X (X about) (X (X 2) (X (X %) (X (X to) (X (X 4) (X (X %) (X (X as) (X (X compared) (X (X with) (X (X $) (X (X 89.6) (X (X million) (X (X ,) (X (X or) (X (X 49) (X (X cents) (X (X a) (X (X share) (X (X ,) (X (X it) (X (X earned) (X (X a) (X (X year) (X (X ago) (X .))))))))))))))))))))))))))))))))))))))) (X (X upjohn) (X (X 's) (X (X biggest-selling) (X (X drugs) (X (X are) (X (X Xanax) (X (X ,) (X (X a) (X (X tranquilizer) (X (X ,) (X (X and) (X (X Halcion) (X (X ,) (X (X a) (X (X sedative) (X .)))))))))))))))) (X (X sales) (X (X of) (X (X both) (X (X drugs) (X (X have) (X (X been) (X (X hurt) (X (X by) (X (X new) (X (X state) (X (X laws) (X (X restricting) (X (X the) (X (X prescriptions) (X (X of) (X (X certain) (X (X tranquilizing) (X (X medicines) (X (X and) (X (X adverse) (X (X publicity) (X (X about) (X (X the) (X (X excessive) (X (X use) (X (X of) (X (X the) (X (X drugs) (X .))))))))))))))))))))))))))))) (X (X also) (X (X ,) (X (X the) (X (X company) (X (X 's) (X (X hair-growing) (X (X drug) (X (X ,) (X (X Rogaine) (X (X ,) (X (X is) (X (X selling) (X (X well) (X (X --) (X (X at) (X (X about) (X (X $) (X (X 125) (X (X million) (X (X for) (X (X the) (X (X year) (X (X ,) (X (X but) (X (X the) (X (X company) (X (X 's) (X (X profit) (X (X from) (X (X the) (X (X drug) (X (X has) (X (X been) (X (X reduced) (X (X by) (X (X Upjohn) (X (X 's) (X (X expensive) (X (X print) (X (X and) (X (X television) (X (X campaigns) (X (X for) (X (X advertising) (X (X ,) (X (X analysts) (X (X said) (X .)))))))))))))))))))))))))))))))))))))))))))))))) (X (X in) (X (X Kalamazoo) (X (X ,) (X (X Mich.) (X (X ,) (X (X Upjohn) (X (X declined) (X (X comment) (X .))))))))) (X (X amid) (X (X a) (X (X crowd) (X (X of) (X (X crashing) (X (X stocks) (X (X ,) (X (X Relational) (X (X Technology) (X (X Inc.) (X (X 's) (X (X stock) (X (X fell) (X (X particularly) (X (X hard) (X (X Friday) (X (X ,) (X (X dropping) (X (X 23) (X (X %) (X (X because) (X (X its) (X (X problems) (X (X were) (X (X compounded) (X (X by) (X (X disclosure) (X (X of) (X (X an) (X (X unexpected) (X (X loss) (X (X for) (X (X its) (X (X fiscal) (X (X first) (X (X quarter) (X .))))))))))))))))))))))))))))))))))))) (X (X the) (X (X database) (X (X software) (X (X company) (X (X said) (X (X it) (X (X expects) (X (X a) (X (X $) (X (X 2) (X (X million) (X (X net) (X (X loss) (X (X for) (X (X the) (X (X fiscal) (X (X first) (X (X quarter) (X (X ended) (X (X Sept.) (X (X 30) (X .)))))))))))))))))))))) (X (X it) (X (X said) (X (X analysts) (X (X had) (X (X been) (X (X expecting) (X (X a) (X (X small) (X (X profit) (X (X for) (X (X the) (X (X period) (X .))))))))))))) (X (X revenue) (X (X is) (X (X expected) (X (X to) (X (X be) (X (X ``) (X (X up) (X (X modestly) (X (X '') (X (X from) (X (X the) (X (X $) (X (X 26.5) (X (X million) (X (X reported) (X (X a) (X (X year) (X (X ago) (X .))))))))))))))))))) (X (X relational) (X (X Technology) (X (X reported) (X (X net) (X (X income) (X (X of) (X (X $) (X (X 1.5) (X (X million) (X (X ,) (X (X or) (X (X 12) (X (X cents) (X (X a) (X (X share) (X (X ,) (X (X in) (X (X the) (X (X year-earlier) (X (X period) (X .))))))))))))))))))))) (X (X ``) (X (X While) (X (X our) (X (X international) (X (X operations) (X (X showed) (X (X strong) (X (X growth) (X (X ,) (X (X our) (X (X domestic) (X (X business) (X (X was) (X (X substantially) (X (X below) (X (X expectations) (X (X ,) (X (X '') (X (X said) (X (X Paul) (X (X Newton) (X (X ,) (X (X president) (X (X and) (X (X chief) (X (X executive) (X (X officer) (X .)))))))))))))))))))))))))))) (X (X a) (X (X spokesman) (X (X said) (X (X the) (X (X company) (X (X 's) (X (X first) (X (X quarter) (X (X is) (X (X historically) (X (X soft) (X (X ,) (X (X and) (X (X computer) (X (X companies) (X (X in) (X (X general) (X (X are) (X (X experiencing) (X (X slower) (X (X sales) (X .)))))))))))))))))))))) (X (X mr.) (X (X Newton) (X (X said) (X (X he) (X (X accepted) (X (X the) (X (X resignation) (X (X of) (X (X Thomas) (X (X Wilson) (X (X ,) (X (X vice) (X (X president) (X (X of) (X (X corporate) (X (X sales) (X (X ,) (X (X and) (X (X that) (X (X his) (X (X marketing) (X (X responsibilities) (X (X have) (X (X been) (X (X reassigned) (X .)))))))))))))))))))))))))) (X (X the) (X (X company) (X (X said) (X (X Mr.) (X (X Wilson) (X (X 's) (X (X resignation) (X (X was) (X (X n't) (X (X related) (X (X to) (X (X the) (X (X sales) (X (X shortfall) (X .))))))))))))))) (X (X relational) (X (X Technology) (X (X went) (X (X public) (X (X in) (X (X May) (X (X 1988) (X (X at) (X (X $) (X (X 14) (X (X a) (X (X share) (X .))))))))))))) (X (X it) (X (X fell) (X (X $) (X (X 1.875) (X (X a) (X (X share) (X (X Friday) (X (X ,) (X (X to) (X (X $) (X (X 6.25) (X (X ,) (X (X a) (X (X new) (X (X low) (X (X ,) (X (X in) (X (X over-the-counter) (X (X trading) (X .)))))))))))))))))))) (X (X its) (X (X high) (X (X for) (X (X the) (X (X past) (X (X year) (X (X was) (X (X $) (X (X 16.375) (X (X a) (X (X share) (X .)))))))))))) (X (X in) (X (X the) (X (X previous) (X (X quarter) (X (X ,) (X (X the) (X (X company) (X (X earned) (X (X $) (X (X 4.5) (X (X million) (X (X ,) (X (X or) (X (X 37) (X (X cents) (X (X a) (X (X share) (X (X ,) (X (X on) (X (X sales) (X (X of) (X (X $) (X (X 47.2) (X (X million) (X .))))))))))))))))))))))))) (X (X the) (X (X Bronx) (X (X has) (X (X a) (X (X wonderful) (X (X botanical) (X (X garden) (X (X ,) (X (X a) (X (X great) (X (X zoo) (X (X ,) (X (X its) (X (X own) (X (X charming) (X (X Little) (X (X Italy) (X (X -LRB-) (X (X on) (X (X Arthur) (X (X Avenue) (X (X -RRB-) (X (X and) (X (X ,) (X (X of) (X (X course) (X (X ,) (X (X the) (X (X Yankees) (X .)))))))))))))))))))))))))))))) (X (X however) (X (X ,) (X (X most) (X (X people) (X (X ,) (X (X having) (X (X been) (X (X subjected) (X (X to) (X (X news) (X (X footage) (X (X of) (X (X the) (X (X devastated) (X (X South) (X (X Bronx) (X (X ,) (X (X look) (X (X at) (X (X the) (X (X borough) (X (X the) (X (X way) (X (X Tom) (X (X Wolfe) (X (X 's) (X (X Sherman) (X (X McCoy) (X (X did) (X (X in) (X (X ``) (X (X Bonfire) (X (X of) (X (X the) (X (X Vanities) (X (X '') (X (X --) (X (X as) (X (X a) (X (X wrong) (X (X turn) (X (X into) (X (X hell) (X .)))))))))))))))))))))))))))))))))))))))))))) (X (X but) (X (X Laura) (X (X Cunningham) (X (X 's) (X (X Bronx) (X (X ,) (X (X her) (X (X childhood) (X (X Bronx) (X (X of) (X (X the) (X (X '50s) (X (X ,) (X (X is) (X (X something) (X (X else) (X (X altogether) (X .)))))))))))))))))) (X (X in) (X (X a) (X (X lovely) (X (X ,) (X (X novelistic) (X (X memoir) (X (X ,) (X (X ``) (X (X Sleeping) (X (X Arrangements) (X (X '') (X (X -LRB-) (X (X Knopf) (X (X ,) (X (X 195) (X (X pages) (X (X ,) (X (X $) (X (X 18.95) (X (X -RRB-) (X (X ,) (X (X she) (X (X remembers) (X (X an) (X (X exotic) (X (X playground) (X (X ,) (X (X peopled) (X (X mainly) (X (X by) (X (X Jewish) (X (X eccentrics) (X (X and) (X (X the) (X (X occasional) (X (X Catholic) (X (X -LRB-) (X (X real) (X (X oddballs) (X (X like) (X (X her) (X (X sexpot) (X (X friend) (X (X ,) (X (X the) (X (X hell-kitten) (X (X Diana) (X (X ,) (X (X age) (X (X five) (X (X -RRB-) (X .)))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X ms.) (X (X Cunningham) (X (X ,) (X (X a) (X (X novelist) (X (X and) (X (X playwright) (X (X ,) (X (X has) (X (X a) (X (X vivid) (X (X and) (X (X dramatically) (X (X outsized) (X (X sense) (X (X of) (X (X recall) (X .)))))))))))))))))) (X (X she) (X (X transforms) (X (X her) (X (X ``) (X (X Bronx) (X (X of) (X (X the) (X (X emotions) (X (X ,) (X (X a) (X (X place) (X (X where) (X (X the) (X (X flats) (X (X of) (X (X mediocrity) (X (X are) (X (X only) (X (X relieved) (X (X by) (X (X steep) (X (X descents) (X (X into) (X (X hysteria) (X (X '') (X (X into) (X (X the) (X (X ``) (X (X Babylonian) (X (X Bronx) (X (X ,) (X (X '') (X (X a) (X (X world) (X (X simmering) (X (X with) (X (X sex) (X (X and) (X (X death) (X (X and) (X (X intrigue) (X .)))))))))))))))))))))))))))))))))))))))))) (X (X in) (X (X the) (X (X Babylonian) (X (X Bronx) (X (X ,) (X (X Jewish) (X (X working-class) (X (X people) (X (X lived) (X (X in) (X (X drab) (X (X ,) (X (X Soviet-style) (X (X buildings) (X (X ``) (X (X glamorized) (X (X '') (X (X with) (X (X names) (X (X like) (X (X AnaMor) (X (X Towers) (X (X -LRB-) (X (X after) (X (X owners) (X (X Anna) (X (X and) (X (X Morris) (X (X Snezak) (X (X -RRB-) (X (X ,) (X (X whose) (X (X lobbies) (X (X and) (X (X hallways) (X (X were) (X (X decorated) (X (X with) (X (X murals) (X (X of) (X (X ancient) (X (X Syrians) (X (X and) (X (X Greeks) (X (X ,) (X (X friezes) (X (X of) (X (X Pompeii) (X .))))))))))))))))))))))))))))))))))))))))))))))))) (X (X for) (X (X Ms.) (X (X Cunningham) (X (X the) (X (X architectural) (X (X discombobulation) (X (X matched) (X (X the) (X (X discrepancy) (X (X she) (X (X felt) (X (X living) (X (X in) (X (X the) (X (X AnaMor) (X (X Towers) (X (X as) (X (X a) (X (X little) (X (X girl) (X (X :) (X (X ``) (X (X ...) (X (X outwardly) (X (X ordinary) (X (X ,) (X (X inwardly) (X (X ornate) (X (X ,) (X (X owing) (X (X all) (X (X inspiration) (X (X to) (X (X heathen) (X (X cultures) (X (X .) (X ''))))))))))))))))))))))))))))))))))))) (X (X sharp-witted) (X (X and) (X (X funny) (X (X but) (X (X never) (X (X mean) (X (X ,) (X (X she) (X (X 's) (X (X a) (X (X memorialist) (X (X a) (X (X bit) (X (X like) (X (X Truman) (X (X Capote) (X (X ,) (X (X if) (X (X he) (X (X 'd) (X (X been) (X (X Jewish) (X (X and) (X (X female) (X (X and) (X (X less) (X (X bitchy) (X .)))))))))))))))))))))))))))) (X (X little) (X (X Lily) (X (X ,) (X (X as) (X (X Ms.) (X (X Cunningham) (X (X calls) (X (X herself) (X (X in) (X (X the) (X (X book) (X (X ,) (X (X really) (X (X was) (X (X n't) (X (X ordinary) (X .))))))))))))))))) (X (X she) (X (X was) (X (X raised) (X (X ,) (X (X for) (X (X the) (X (X first) (X (X eight) (X (X years) (X (X ,) (X (X by) (X (X her) (X (X mother) (X (X ,) (X (X Rosie) (X (X ,) (X (X whom) (X (X she) (X (X remembers) (X (X as) (X (X a) (X (X loving) (X (X liar) (X (X ,) (X (X who) (X (X realigned) (X (X history) (X (X to) (X (X explain) (X (X why) (X (X Lily) (X (X 's) (X (X father) (X (X did) (X (X n't) (X (X live) (X (X with) (X (X them) (X .))))))))))))))))))))))))))))))))))))))) (X (X rosie) (X (X reinvented) (X (X this) (X (X man) (X (X ,) (X (X who) (X (X may) (X (X or) (X (X may) (X (X not) (X (X have) (X (X known) (X (X about) (X (X his) (X (X child) (X (X ,) (X (X as) (X (X a) (X (X war) (X (X hero) (X (X for) (X (X Lily) (X (X 's) (X (X benefit) (X .))))))))))))))))))))))))) (X (X rosie) (X (X died) (X (X young) (X (X and) (X (X Lily) (X (X has) (X (X remembered) (X (X her) (X (X as) (X (X a) (X (X romantic) (X (X figure) (X (X ,) (X (X who) (X (X did) (X (X n't) (X (X interfere) (X (X much) (X (X with) (X (X her) (X (X child) (X (X 's) (X (X education) (X (X on) (X (X the) (X (X streets) (X .))))))))))))))))))))))))))) (X (X the) (X (X games) (X (X Bronx) (X (X children) (X (X played) (X (X -LRB-) (X (X holding) (X (X kids) (X (X down) (X (X and) (X (X stripping) (X (X them) (X (X ,) (X (X for) (X (X example) (X (X -RRB-) (X (X seem) (X (X tame) (X (X by) (X (X today) (X (X 's) (X (X crack) (X (X standards) (X (X ,) (X (X but) (X (X Ms.) (X (X Cunningham) (X (X makes) (X (X it) (X (X all) (X (X sound) (X (X like) (X (X a) (X (X great) (X (X adventure) (X .)))))))))))))))))))))))))))))))))))) (X (X ``) (X (X Without) (X (X official) (X (X knowledge) (X (X of) (X (X sex) (X (X or) (X (X death) (X (X ,) (X (X we) (X (X flirted) (X (X with) (X (X both) (X (X ,) (X (X '') (X (X she) (X (X writes) (X .)))))))))))))))))) (X (X she) (X (X analyzed) (X (X families) (X (X by) (X (X their) (X (X sleeping) (X (X arrangements) (X .)))))))) (X (X her) (X (X friend) (X (X Susan) (X (X ,) (X (X whose) (X (X parents) (X (X kept) (X (X reminding) (X (X her) (X (X she) (X (X was) (X (X unwanted) (X (X ,) (X (X slept) (X (X on) (X (X a) (X (X narrow) (X (X bed) (X (X wedged) (X (X into) (X (X her) (X (X parents) (X (X ') (X (X bedroom) (X (X ,) (X (X as) (X (X though) (X (X she) (X (X were) (X (X a) (X (X temporary) (X (X visitor) (X .))))))))))))))))))))))))))))))))) (X (X her) (X (X friend) (X (X Diana) (X (X 's) (X (X father) (X (X was) (X (X a) (X (X professional) (X (X thief) (X (X ;) (X (X they) (X (X did) (X (X n't) (X (X seem) (X (X to) (X (X have) (X (X any) (X (X bedrooms) (X (X at) (X (X all) (X .))))))))))))))))))))) (X (X maybe) (X (X Lily) (X (X became) (X (X so) (X (X obsessed) (X (X with) (X (X where) (X (X people) (X (X slept) (X (X and) (X (X how) (X (X because) (X (X her) (X (X own) (X (X arrangements) (X (X kept) (X (X shifting) (X .)))))))))))))))))) (X (X when) (X (X Rosie) (X (X died) (X (X ,) (X (X her) (X (X uncles) (X (X moved) (X (X in) (X (X --) (X (X and) (X (X let) (X (X her) (X (X make) (X (X the) (X (X sleeping) (X (X and) (X (X other) (X (X household) (X (X arrangements) (X .)))))))))))))))))))) (X (X they) (X (X painted) (X (X the) (X (X apartment) (X (X orange) (X (X ,) (X (X pink) (X (X and) (X (X white) (X (X ,) (X (X according) (X (X to) (X (X her) (X (X instructions) (X .))))))))))))))) (X (X with) (X (X loving) (X (X detail) (X (X she) (X (X recalls) (X (X her) (X (X Uncle) (X (X Gabe) (X (X ,) (X (X an) (X (X Orthodox) (X (X Jew) (X (X and) (X (X song) (X (X lyricist) (X (X -LRB-) (X (X who) (X (X rhymed) (X (X river) (X (X with) (X (X liver) (X (X in) (X (X a) (X (X love) (X (X song) (X (X -RRB-) (X (X ;) (X (X and) (X (X Uncle) (X (X Len) (X (X ,) (X (X a) (X (X mysterious) (X (X part-time) (X (X investigator) (X (X who) (X (X looked) (X (X like) (X (X Lincoln) (X (X and) (X (X carried) (X (X a) (X (X change) (X (X of) (X (X clothing) (X (X in) (X (X a) (X (X Manila) (X (X envelope) (X (X ,) (X (X like) (X (X an) (X (X ``) (X (X undercover) (X (X President) (X (X on) (X (X a) (X (X good-will) (X (X mission) (X (X .) (X ''))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X they) (X (X came) (X (X by) (X (X their) (X (X strangeness) (X (X honestly) (X .))))))) (X (X lily) (X (X 's) (X (X grandmother) (X (X ,) (X (X no) (X (X cookie) (X (X baker) (X (X ,) (X (X excised) (X (X the) (X (X heads) (X (X of) (X (X disliked) (X (X relatives) (X (X from) (X (X the) (X (X family) (X (X album) (X (X ,) (X (X and) (X (X lugged) (X (X around) (X (X her) (X (X perennial) (X (X work-in-progress) (X (X ,) (X (X ``) (X (X Philosophy) (X (X for) (X (X Women) (X (X .) (X '')))))))))))))))))))))))))))))))) (X (X the) (X (X book) (X (X loses) (X (X some) (X (X momentum) (X (X toward) (X (X the) (X (X end) (X (X ,) (X (X when) (X (X Lily) (X (X becomes) (X (X more) (X (X preoccupied) (X (X with) (X (X dating) (X (X boys) (X (X and) (X (X less) (X (X with) (X (X her) (X (X delightfully) (X (X weird) (X (X family) (X .))))))))))))))))))))))))) (X (X for) (X (X the) (X (X most) (X (X part) (X (X ,) (X (X though) (X (X ,) (X (X there) (X (X 's) (X (X much) (X (X pleasure) (X (X in) (X (X her) (X (X saucy) (X (X ,) (X (X poignant) (X (X probe) (X (X into) (X (X the) (X (X mysteries) (X (X of) (X (X the) (X (X Babylonian) (X (X Bronx) (X .))))))))))))))))))))))))) (X (X the) (X (X Bronx) (X (X also) (X (X figures) (X (X in) (X (X Bruce) (X (X Jay) (X (X Friedman) (X (X 's) (X (X latest) (X (X novel) (X (X ,) (X (X which) (X (X flashes) (X (X back) (X (X to) (X (X the) (X (X New) (X (X York) (X (X of) (X (X the) (X (X '50s) (X .))))))))))))))))))))))) (X (X but) (X (X both) (X (X the) (X (X past) (X (X and) (X (X present) (X (X worlds) (X (X of) (X (X ``) (X (X The) (X (X Current) (X (X Climate) (X (X '') (X (X -LRB-) (X (X Atlantic) (X (X Monthly) (X (X Press) (X (X ,) (X (X 200) (X (X pages) (X (X ,) (X (X $) (X (X 18.95) (X (X -RRB-) (X (X feel) (X (X cramped) (X (X and) (X (X static) (X .))))))))))))))))))))))))))))) (X (X for) (X (X his) (X (X sixth) (X (X novel) (X (X ,) (X (X Mr.) (X (X Friedman) (X (X tried) (X (X to) (X (X resuscitate) (X (X the) (X (X protagonist) (X (X of) (X (X his) (X (X 1972) (X (X work) (X (X ,) (X (X ``) (X (X About) (X (X Harry) (X (X Towns) (X (X .) (X ''))))))))))))))))))))))) (X (X harry) (X (X is) (X (X now) (X (X a) (X (X 57-year-old) (X (X writer) (X (X ,) (X (X whose) (X (X continuing) (X (X flirtation) (X (X with) (X (X drugs) (X (X and) (X (X marginal) (X (X types) (X (X in) (X (X Hollywood) (X (X and) (X (X New) (X (X York) (X (X seems) (X (X quaintly) (X (X out-of-synch) (X .)))))))))))))))))))))))) (X (X harry) (X (X fondly) (X (X remembers) (X (X the) (X (X ``) (X (X old) (X (X '') (X (X days) (X (X of) (X (X the) (X (X early) (X (X '70s) (X (X ,) (X (X when) (X (X people) (X (X like) (X (X his) (X (X friend) (X (X Travis) (X (X would) (X (X take) (X (X a) (X (X psychiatrist) (X (X on) (X (X a) (X (X date) (X (X to) (X (X analyze) (X (X what) (X (X Travis) (X (X was) (X (X doing) (X (X wrong) (X .)))))))))))))))))))))))))))))))))) (X (X ``) (X (X An) (X (X L.A.) (X (X solution) (X (X ,) (X (X '') (X (X explains) (X (X Mr.) (X (X Friedman) (X .)))))))))) (X (X line) (X (X by) (X (X line) (X (X Mr.) (X (X Friedman) (X (X 's) (X (X weary) (X (X cynicism) (X (X can) (X (X be) (X (X amusing) (X (X ,) (X (X especially) (X (X when) (X (X he) (X (X 's) (X (X riffing) (X (X on) (X (X the) (X (X Hollywood) (X (X social) (X (X scheme) (X (X --) (X (X the) (X (X way) (X (X people) (X (X size) (X (X each) (X (X other) (X (X up) (X (X ,) (X (X immediately) (X (X canceling) (X (X the) (X (X desperate) (X (X ones) (X (X who) (X (X merely) (X (X almost) (X (X made) (X (X it) (X .)))))))))))))))))))))))))))))))))))))))))) (X (X harry) (X (X has) (X (X avoided) (X (X all) (X (X that) (X (X by) (X (X living) (X (X in) (X (X a) (X (X Long) (X (X Island) (X (X suburb) (X (X with) (X (X his) (X (X wife) (X (X ,) (X (X who) (X (X 's) (X (X so) (X (X addicted) (X (X to) (X (X soap) (X (X operas) (X (X and) (X (X mystery) (X (X novels) (X (X she) (X (X barely) (X (X seems) (X (X to) (X (X notice) (X (X when) (X (X her) (X (X husband) (X (X disappears) (X (X for) (X (X drug-seeking) (X (X forays) (X (X into) (X (X Manhattan) (X .))))))))))))))))))))))))))))))))))))))))) (X (X but) (X (X it) (X (X does) (X (X n't) (X (X take) (X (X too) (X (X many) (X (X lines) (X (X to) (X (X figure) (X (X Harry) (X (X out) (X .))))))))))))) (X (X he) (X (X 's) (X (X a) (X (X bore) (X .))))) (X (X gulf) (X (X Resources) (X (X &) (X (X Chemical) (X (X Corp.) (X (X said) (X (X it) (X (X agreed) (X (X to) (X (X pay) (X (X $) (X (X 1.5) (X (X million) (X (X as) (X (X part) (X (X of) (X (X an) (X (X accord) (X (X with) (X (X the) (X (X Environmental) (X (X Protection) (X (X Agency) (X (X regarding) (X (X an) (X (X environmental) (X (X cleanup) (X (X of) (X (X a) (X (X defunct) (X (X smelter) (X (X the) (X (X company) (X (X formerly) (X (X operated) (X (X in) (X (X Idaho) (X .)))))))))))))))))))))))))))))))))))))) (X (X in) (X (X 1984) (X (X the) (X (X EPA) (X (X notified) (X (X Gulf) (X (X Resources) (X (X ,) (X (X which) (X (X was) (X (X a) (X (X part-owner) (X (X of) (X (X the) (X (X smelter) (X (X ,) (X (X that) (X (X it) (X (X was) (X (X potentially) (X (X liable) (X (X for) (X (X sharing) (X (X cleanup) (X (X costs) (X (X at) (X (X the) (X (X site) (X (X under) (X (X the) (X (X federal) (X (X Superfund) (X (X program) (X .)))))))))))))))))))))))))))))))))) (X (X the) (X (X 21-square-mile) (X (X area) (X (X is) (X (X contaminated) (X (X with) (X (X lead) (X (X ,) (X (X zinc) (X (X and) (X (X other) (X (X metals) (X .))))))))))))) (X (X gulf) (X (X Resources) (X (X earlier) (X (X this) (X (X year) (X (X proposed) (X (X a) (X (X reorganization) (X (X plan) (X (X that) (X (X would) (X (X make) (X (X it) (X (X a) (X (X unit) (X (X of) (X (X a) (X (X Bermuda) (X (X concern) (X (X ,) (X (X potentially) (X (X exempting) (X (X it) (X (X from) (X (X liability) (X (X for) (X (X the) (X (X smelter) (X (X 's) (X (X cleanup) (X (X costs) (X .)))))))))))))))))))))))))))))))) (X (X the) (X (X company) (X (X said) (X (X that) (X (X as) (X (X part) (X (X of) (X (X its) (X (X agreement) (X (X with) (X (X the) (X (X EPA) (X (X ,) (X (X it) (X (X ``) (X (X made) (X (X certain) (X (X voluntary) (X (X undertakings) (X (X with) (X (X respect) (X (X to) (X (X intercorporate) (X (X transactions) (X (X entered) (X (X into) (X (X after) (X (X the) (X (X reorganization) (X (X .) (X ''))))))))))))))))))))))))))))))) (X (X the) (X (X company) (X (X ,) (X (X which) (X (X issued) (X (X a) (X (X statement) (X (X on) (X (X the) (X (X agreement) (X (X late) (X (X Friday) (X (X ,) (X (X said) (X (X that) (X (X $) (X (X 1) (X (X million) (X (X of) (X (X the) (X (X payment) (X (X was) (X (X previously) (X (X provided) (X (X for) (X (X in) (X (X its) (X (X financial) (X (X statements) (X (X and) (X (X that) (X (X $) (X (X 500,000) (X (X will) (X (X be) (X (X recognized) (X (X in) (X (X its) (X (X 1989) (X (X third-quarter) (X (X statement) (X .)))))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X agreement) (X (X and) (X (X consent) (X (X decree) (X (X are) (X (X subject) (X (X to) (X (X court) (X (X approval) (X (X ,) (X (X the) (X (X company) (X (X said) (X .))))))))))))))) (X (X gulf) (X (X Resources) (X (X added) (X (X that) (X (X it) (X (X ``) (X (X will) (X (X seek) (X (X to) (X (X recover) (X (X equitable) (X (X contribution) (X (X from) (X (X others) (X (X for) (X (X both) (X (X the) (X (X amount) (X (X of) (X (X the) (X (X settlement) (X (X and) (X (X any) (X (X other) (X (X liabilities) (X (X it) (X (X may) (X (X incur) (X (X under) (X (X the) (X (X Superfund) (X (X law) (X (X .) (X '')))))))))))))))))))))))))))))))))) (X (X under) (X (X the) (X (X agreement) (X (X ,) (X (X Gulf) (X (X must) (X (X give) (X (X the) (X (X U.S.) (X (X government) (X (X 45) (X (X days) (X (X ') (X (X advance) (X (X written) (X (X notice) (X (X before) (X (X issuing) (X (X any) (X (X dividends) (X (X on) (X (X common) (X (X stock) (X .)))))))))))))))))))))))) (X (X the) (X (X company) (X (X 's) (X (X net) (X (X worth) (X (X can) (X (X not) (X (X fall) (X (X below) (X (X $) (X (X 185) (X (X million) (X (X after) (X (X the) (X (X dividends) (X (X are) (X (X issued) (X .)))))))))))))))))) (X (X ``) (X (X The) (X (X terms) (X (X of) (X (X that) (X (X agreement) (X (X only) (X (X become) (X (X effective) (X (X the) (X (X date) (X (X of) (X (X Gulf) (X (X 's) (X (X reorganization) (X (X ,) (X (X which) (X (X we) (X (X anticipate) (X (X will) (X (X occur) (X (X sometime) (X (X in) (X (X early) (X (X 1990) (X (X ,) (X (X '') (X (X said) (X (X Lawrence) (X (X R.) (X (X Mehl) (X (X ,) (X (X Gulf) (X (X 's) (X (X general) (X (X counsel) (X .))))))))))))))))))))))))))))))))))))) (X (X in) (X (X addition) (X (X ,) (X (X Gulf) (X (X must) (X (X give) (X (X the) (X (X government) (X (X 20) (X (X days) (X (X ') (X (X advance) (X (X written) (X (X notice) (X (X of) (X (X any) (X (X loans) (X (X exceeding) (X (X $) (X (X 50) (X (X million) (X (X that) (X (X are) (X (X made) (X (X to) (X (X the) (X (X Bermuda-based) (X (X holding) (X (X company) (X .)))))))))))))))))))))))))))))) (X (X gulf) (X (X 's) (X (X net) (X (X worth) (X (X after) (X (X those) (X (X transaction) (X (X must) (X (X be) (X (X at) (X (X least) (X (X $) (X (X 150) (X (X million) (X .))))))))))))))) (X (X separately) (X (X ,) (X (X the) (X (X company) (X (X said) (X (X it) (X (X expects) (X (X to) (X (X hold) (X (X a) (X (X special) (X (X meeting) (X (X for) (X (X shareholders) (X (X in) (X (X early) (X (X 1990) (X (X to) (X (X vote) (X (X on) (X (X its) (X (X proposed) (X (X reorganization) (X .)))))))))))))))))))))))) (X (X many) (X (X of) (X (X the) (X (X nation) (X (X 's) (X (X highest-ranking) (X (X executives) (X (X saluted) (X (X Friday) (X (X 's) (X (X market) (X (X plunge) (X (X as) (X (X an) (X (X overdue) (X (X comeuppance) (X (X for) (X (X speculators) (X (X and) (X (X takeover) (X (X players) (X .)))))))))))))))))))))) (X (X assuming) (X (X that) (X (X the) (X (X market) (X (X does) (X (X n't) (X (X head) (X (X into) (X (X a) (X (X bottomless) (X (X free) (X (X fall) (X (X ,) (X (X some) (X (X executives) (X (X think) (X (X Friday) (X (X 's) (X (X action) (X (X could) (X (X prove) (X (X a) (X (X harbinger) (X (X of) (X (X good) (X (X news) (X (X --) (X (X as) (X (X a) (X (X sign) (X (X that) (X (X the) (X (X leveraged) (X (X buy-out) (X (X and) (X (X takeover) (X (X frenzy) (X (X of) (X (X recent) (X (X years) (X (X may) (X (X be) (X (X abating) (X .)))))))))))))))))))))))))))))))))))))))))))) (X (X ``) (X (X This) (X (X is) (X (X a) (X (X reaction) (X (X to) (X (X artificial) (X (X LBO) (X (X valuations) (X (X ,) (X (X rather) (X (X than) (X (X to) (X (X any) (X (X fundamentals) (X (X ,) (X (X '') (X (X said) (X (X John) (X (X Young) (X (X ,) (X (X chairman) (X (X of) (X (X Hewlett-Packard) (X (X Co.) (X (X ,) (X (X whose) (X (X shares) (X (X dropped) (X (X $) (X (X 3.125) (X (X to) (X (X $) (X (X 48.125) (X .))))))))))))))))))))))))))))))))))) (X (X ``) (X (X If) (X (X we) (X (X get) (X (X rid) (X (X of) (X (X a) (X (X lot) (X (X of) (X (X that) (X (X nonsense) (X (X ,) (X (X it) (X (X will) (X (X be) (X (X a) (X (X big) (X (X plus) (X (X .) (X '')))))))))))))))))))) (X (X a) (X (X few) (X (X of) (X (X the) (X (X executives) (X (X here) (X (X for) (X (X the) (X (X fall) (X (X meeting) (X (X of) (X (X the) (X (X Business) (X (X Council) (X (X ,) (X (X a) (X (X group) (X (X that) (X (X meets) (X (X to) (X (X discuss) (X (X national) (X (X issues) (X (X ,) (X (X were) (X (X only) (X (X too) (X (X happy) (X (X to) (X (X personalize) (X (X their) (X (X criticism) (X .))))))))))))))))))))))))))))))))) (X (X ``) (X (X People) (X (X wish) (X (X the) (X (X government) (X (X would) (X (X do) (X (X something) (X (X about) (X (X leveraged) (X (X buy-outs) (X (X ,) (X (X do) (X (X something) (X (X about) (X (X takeovers) (X (X ,) (X (X do) (X (X something) (X (X about) (X (X Donald) (X (X Trump) (X (X ,) (X (X '') (X (X said) (X (X Rand) (X (X Araskog) (X (X ,) (X (X chairman) (X (X of) (X (X ITT) (X (X Corp.) (X (X ,) (X (X whose) (X (X stock) (X (X dropped) (X (X $) (X (X 3.375) (X .))))))))))))))))))))))))))))))))))))))) (X (X ``) (X (X Where) (X (X 's) (X (X the) (X (X leadership) (X ?)))))) (X (X where) (X (X 's) (X (X the) (X (X guy) (X (X who) (X (X can) (X (X say) (X (X :) (X (X `) (X (X Enough) (X (X is) (X (X enough) (X (X ') (X (X '') (X ?))))))))))))))) (X (X the) (X (X executives) (X (X were) (X (X remarkably) (X (X unperturbed) (X (X by) (X (X the) (X (X plunge) (X (X even) (X (X though) (X (X it) (X (X lopped) (X (X billions) (X (X of) (X (X dollars) (X (X off) (X (X the) (X (X value) (X (X of) (X (X their) (X (X companies) (X (X --) (X (X and) (X (X millions) (X (X off) (X (X their) (X (X personal) (X (X fortunes) (X .))))))))))))))))))))))))))))) (X (X ``) (X (X I) (X (X 'm) (X (X not) (X (X going) (X (X to) (X (X worry) (X (X about) (X (X one) (X (X day) (X (X 's) (X (X decline) (X (X ,) (X (X '') (X (X said) (X (X Kenneth) (X (X Olsen) (X (X ,) (X (X Digital) (X (X Equipment) (X (X Corp.) (X (X president) (X (X ,) (X (X who) (X (X was) (X (X leisurely) (X (X strolling) (X (X through) (X (X the) (X (X bright) (X (X orange) (X (X and) (X (X yellow) (X (X leaves) (X (X of) (X (X the) (X (X mountains) (X (X here) (X (X after) (X (X his) (X (X company) (X (X 's) (X (X shares) (X (X plunged) (X (X $) (X (X 5.75) (X (X to) (X (X close) (X (X at) (X (X $) (X (X 86.50) (X .)))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X ``) (X (X I) (X (X did) (X (X n't) (X (X bother) (X (X calling) (X (X anybody) (X (X ;) (X (X I) (X (X did) (X (X n't) (X (X even) (X (X turn) (X (X on) (X (X TV) (X (X .) (X ''))))))))))))))))) (X (X ``) (X (X There) (X (X has) (X (X n't) (X (X been) (X (X any) (X (X fundamental) (X (X change) (X (X in) (X (X the) (X (X economy) (X (X ,) (X (X '') (X (X added) (X (X John) (X (X Smale) (X (X ,) (X (X whose) (X (X Procter) (X (X &) (X (X Gamble) (X (X Co.) (X (X took) (X (X an) (X (X $) (X (X 8.75) (X (X slide) (X (X to) (X (X close) (X (X at) (X (X $) (X (X 120.75) (X .))))))))))))))))))))))))))))))))) (X (X ``) (X (X The) (X (X fact) (X (X that) (X (X this) (X (X happened) (X (X two) (X (X years) (X (X ago) (X (X and) (X (X there) (X (X was) (X (X a) (X (X recovery) (X (X gives) (X (X people) (X (X some) (X (X comfort) (X (X that) (X (X this) (X (X wo) (X (X n't) (X (X be) (X (X a) (X (X problem) (X (X .) (X ''))))))))))))))))))))))))))) (X (X of) (X (X course) (X (X ,) (X (X established) (X (X corporate) (X (X managements) (X (X often) (X (X tend) (X (X to) (X (X applaud) (X (X the) (X (X setbacks) (X (X of) (X (X stock) (X (X speculators) (X (X and) (X (X takeover) (X (X artists) (X .))))))))))))))))))) (X (X indeed) (X (X ,) (X (X one) (X (X chief) (X (X executive) (X (X who) (X (X was) (X (X downright) (X (X delighted) (X (X by) (X (X Friday) (X (X 's) (X (X events) (X (X was) (X (X Robert) (X (X Crandall) (X (X ,) (X (X chairman) (X (X of) (X (X AMR) (X (X Corp.) (X (X ,) (X (X the) (X (X parent) (X (X of) (X (X American) (X (X Airlines) (X (X and) (X (X the) (X (X target) (X (X of) (X (X a) (X (X takeover) (X (X offer) (X (X by) (X (X Mr.) (X (X Trump) (X .)))))))))))))))))))))))))))))))))))))) (X (X asked) (X (X whether) (X (X Friday) (X (X 's) (X (X action) (X (X could) (X (X help) (X (X him) (X (X avoid) (X (X being) (X (X Trumped) (X (X by) (X (X the) (X (X New) (X (X York) (X (X real) (X (X estate) (X (X magnate) (X (X ,) (X (X Mr.) (X (X Crandall) (X (X smiled) (X (X broadly) (X (X and) (X (X said) (X (X :) (X (X ``) (X (X No) (X (X comment) (X (X .) (X ''))))))))))))))))))))))))))))))) (X (X on) (X (X Friday) (X (X morning) (X (X ,) (X (X before) (X (X the) (X (X market) (X (X 's) (X (X sell-off) (X (X ,) (X (X the) (X (X business) (X (X leaders) (X (X issued) (X (X a) (X (X report) (X (X predicting) (X (X the) (X (X economy) (X (X would) (X (X grow) (X (X at) (X (X roughly) (X (X an) (X (X inflation-adjusted) (X (X 2) (X (X %) (X (X annual) (X (X rate) (X (X ,) (X (X through) (X (X next) (X (X year) (X (X ,) (X (X then) (X (X accelerate) (X (X anew) (X (X in) (X (X 1991) (X .)))))))))))))))))))))))))))))))))))))))) (X (X of) (X (X the) (X (X 19) (X (X economists) (X (X who) (X (X worked) (X (X on) (X (X the) (X (X Business) (X (X Council) (X (X forecast) (X (X ,) (X (X only) (X (X two) (X (X projected) (X (X periods) (X (X of) (X (X decline) (X (X in) (X (X the) (X (X nation) (X (X 's) (X (X output) (X (X over) (X (X the) (X (X next) (X (X two) (X (X years) (X (X ,) (X (X and) (X (X in) (X (X ``) (X (X both) (X (X instances) (X (X the) (X (X declines) (X (X are) (X (X too) (X (X modest) (X (X to) (X (X warrant) (X (X the) (X (X phrase) (X (X recession) (X (X ,) (X (X '') (X (X said) (X (X Lewis) (X (X Preston) (X (X ,) (X (X chairman) (X (X of) (X (X J.P.) (X (X Morgan) (X (X &) (X (X Co.) (X (X and) (X (X vice) (X (X chairman) (X (X of) (X (X the) (X (X Business) (X (X Council) (X .)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X real) (X (X estate) (X (X slump) (X (X that) (X (X 's) (X (X pushing) (X (X down) (X (X the) (X (X price) (X (X of) (X (X New) (X (X York) (X (X office) (X (X space) (X (X and) (X (X housing) (X (X is) (X (X also) (X (X affecting) (X (X the) (X (X city) (X (X 's) (X (X retail) (X (X real) (X (X estate) (X (X market) (X .)))))))))))))))))))))))))))) (X (X in) (X (X Manhattan) (X (X ,) (X (X once-desirable) (X (X store) (X (X sites) (X (X sit) (X (X vacant) (X (X and) (X (X newly) (X (X constructed) (X (X space) (X (X has) (X (X been) (X (X slow) (X (X to) (X (X fill) (X .)))))))))))))))))) (X (X retail) (X (X real) (X (X estate) (X (X brokers) (X (X say) (X (X tenants) (X (X are) (X (X reluctant) (X (X to) (X (X sign) (X (X leases) (X (X because) (X (X of) (X (X uncertainty) (X (X about) (X (X the) (X (X local) (X (X economy) (X (X ,) (X (X turmoil) (X (X in) (X (X their) (X (X own) (X (X industries) (X (X and) (X (X a) (X (X belief) (X (X that) (X (X rents) (X (X have) (X (X not) (X (X yet) (X (X hit) (X (X bottom) (X .))))))))))))))))))))))))))))))))))) (X (X ``) (X (X There) (X (X is) (X (X an) (X (X unbelievable) (X (X amount) (X (X of) (X (X space) (X (X available) (X (X ,) (X (X '') (X (X says) (X (X Faith) (X (X Consolo) (X (X ,) (X (X senior) (X (X vice) (X (X president) (X (X at) (X (X Garrick-Aug) (X (X Associates) (X (X Store) (X (X Leasing) (X (X Inc) (X .))))))))))))))))))))))))) (X (X there) (X (X are) (X (X about) (X (X 2,000) (X (X stores) (X (X for) (X (X rent) (X (X ,) (X (X up) (X (X from) (X (X a) (X (X more) (X (X typical) (X (X range) (X (X of) (X (X 1,200) (X (X to) (X (X 1,500) (X .))))))))))))))))))) (X (X ``) (X (X This) (X (X further) (X (X confuses) (X (X retailers) (X (X ,) (X (X '') (X (X she) (X (X says) (X .)))))))))) (X (X ``) (X (X They) (X (X wonder) (X (X should) (X (X they) (X (X sign) (X (X a) (X (X lease) (X (X if) (X (X prices) (X (X are) (X (X still) (X (X coming) (X (X down) (X ?))))))))))))))) (X (X is) (X (X this) (X (X the) (X (X wrong) (X (X time) (X (X to) (X (X open) (X (X a) (X (X store) (X ?)))))))))) (X (X who) (X (X is) (X (X going) (X (X to) (X (X be) (X (X in) (X (X the) (X (X space) (X (X next) (X (X door) (X (X ?) (X '')))))))))))) (X (X in) (X (X addition) (X (X ,) (X (X Ms.) (X (X Consolo) (X (X says) (X (X ,) (X (X tenants) (X (X usually) (X (X can) (X (X negotiate) (X (X to) (X (X pay) (X (X rents) (X (X that) (X (X are) (X (X about) (X (X one-quarter) (X (X lower) (X (X than) (X (X landlords) (X (X ') (X (X initial) (X (X asking) (X (X price) (X .)))))))))))))))))))))))))) (X (X a) (X (X handful) (X (X of) (X (X hot) (X (X retail) (X (X locations) (X (X ,) (X (X such) (X (X as) (X (X the) (X (X 57th) (X (X Street) (X (X and) (X (X Madison) (X (X and) (X (X Fifth) (X (X Avenue) (X (X areas) (X (X ,) (X (X have) (X (X been) (X (X able) (X (X to) (X (X sustain) (X (X what) (X (X many) (X (X see) (X (X as) (X (X astronomical) (X (X rents) (X .))))))))))))))))))))))))))))))) (X (X and) (X (X ,) (X (X in) (X (X some) (X (X neighborhoods) (X (X ,) (X (X rents) (X (X have) (X (X merely) (X (X hit) (X (X a) (X (X plateau) (X .))))))))))))) (X (X but) (X (X on) (X (X average) (X (X ,) (X (X Manhattan) (X (X retail) (X (X rents) (X (X have) (X (X dropped) (X (X 10) (X (X %) (X (X to) (X (X 15) (X (X %) (X (X in) (X (X the) (X (X past) (X (X six) (X (X months) (X (X alone) (X (X ,) (X (X experts) (X (X say) (X .)))))))))))))))))))))))) (X (X that) (X (X follows) (X (X a) (X (X more) (X (X subtle) (X (X decline) (X (X in) (X (X the) (X (X prior) (X (X six) (X (X months) (X (X ,) (X (X after) (X (X Manhattan) (X (X rents) (X (X had) (X (X run) (X (X up) (X (X rapidly) (X (X since) (X (X 1986) (X .)))))))))))))))))))))) (X (X the) (X (X same) (X (X factors) (X (X limiting) (X (X demand) (X (X for) (X (X office) (X (X space) (X (X have) (X (X affected) (X (X retailing) (X .)))))))))))) (X (X ``) (X (X As) (X (X businesses) (X (X contract) (X (X or) (X (X depart) (X (X ,) (X (X the) (X (X number) (X (X of) (X (X employees) (X (X who) (X (X might) (X (X use) (X (X retail) (X (X services) (X (X shrinks) (X (X ,) (X (X '') (X (X says) (X (X Edward) (X (X A.) (X (X Friedman) (X (X ,) (X (X senior) (X (X vice) (X (X president) (X (X of) (X (X Helmsley) (X (X Spear) (X (X Inc) (X .)))))))))))))))))))))))))))))))) (X (X he) (X (X says) (X (X financial) (X (X problems) (X (X plaguing) (X (X electronics) (X (X ,) (X (X fur) (X (X and) (X (X furniture) (X (X companies) (X (X --) (X (X key) (X (X categories) (X (X in) (X (X the) (X (X local) (X (X retail) (X (X economy) (X (X --) (X (X have) (X (X further) (X (X deflated) (X (X the) (X (X market) (X .)))))))))))))))))))))))))) (X (X hardest) (X (X hit) (X (X are) (X (X what) (X (X he) (X (X calls) (X (X ``) (X (X secondary) (X (X '') (X (X sites) (X (X that) (X (X primarily) (X (X serve) (X (X neighborhood) (X (X residents) (X .)))))))))))))))) (X (X in) (X (X these) (X (X locations) (X (X ,) (X (X Mr.) (X (X Friedman) (X (X says) (X (X ,) (X (X ``) (X (X Retailers) (X (X are) (X (X increasingly) (X (X cautious) (X (X about) (X (X expanding) (X (X and) (X (X rents) (X (X have) (X (X remained) (X (X steady) (X (X or) (X (X in) (X (X some) (X (X cases) (X (X have) (X (X declined) (X (X .) (X '')))))))))))))))))))))))))))) (X (X weakness) (X (X in) (X (X the) (X (X restaurant) (X (X industry) (X (X ,) (X (X which) (X (X is) (X (X leaving) (X (X retail) (X (X space) (X (X vacant) (X (X ,) (X (X exacerbates) (X (X the) (X (X problem) (X (X for) (X (X landlords) (X .))))))))))))))))))) (X (X it) (X (X is) (X (X also) (X (X no) (X (X comfort) (X (X to) (X (X landlords) (X (X and) (X (X small) (X (X New) (X (X York) (X (X retailers) (X (X when) (X (X the) (X (X future) (X (X of) (X (X larger) (X (X department) (X (X stores) (X (X ,) (X (X which) (X (X anchor) (X (X retail) (X (X neighborhoods) (X (X ,) (X (X are) (X (X in) (X (X doubt) (X .))))))))))))))))))))))))))))) (X (X hooker) (X (X Corp.) (X (X ,) (X (X parent) (X (X of) (X (X Bonwit) (X (X Teller) (X (X and) (X (X B.) (X (X Altman) (X (X 's) (X (X ,) (X (X is) (X (X mired) (X (X in) (X (X bankruptcy) (X (X proceedings) (X (X and) (X (X Bloomingdale) (X (X 's) (X (X is) (X (X for) (X (X sale) (X (X by) (X (X its) (X (X owner) (X (X ,) (X (X Campeau) (X (X Corp) (X .)))))))))))))))))))))))))))))) (X (X the) (X (X trend) (X (X toward) (X (X lower) (X (X rents) (X (X may) (X (X seem) (X (X surprising) (X (X given) (X (X that) (X (X some) (X (X communities) (X (X in) (X (X New) (X (X York) (X (X are) (X (X bemoaning) (X (X the) (X (X loss) (X (X of) (X (X favorite) (X (X local) (X (X businesses) (X (X to) (X (X high) (X (X rents) (X .))))))))))))))))))))))))))) (X (X but) (X (X ,) (X (X despite) (X (X the) (X (X recent) (X (X softening) (X (X ,) (X (X for) (X (X many) (X (X of) (X (X these) (X (X retailers) (X (X there) (X (X 's) (X (X still) (X (X been) (X (X too) (X (X big) (X (X a) (X (X jump) (X (X from) (X (X the) (X (X rental) (X (X rates) (X (X of) (X (X the) (X (X late) (X (X 1970s) (X (X ,) (X (X when) (X (X their) (X (X leases) (X (X were) (X (X signed) (X .))))))))))))))))))))))))))))))))))) (X (X certainly) (X (X ,) (X (X the) (X (X recent) (X (X drop) (X (X in) (X (X prices) (X (X does) (X (X n't) (X (X mean) (X (X Manhattan) (X (X comes) (X (X cheap) (X .)))))))))))))) (X (X new) (X (X York) (X (X retail) (X (X rents) (X (X still) (X (X run) (X (X well) (X (X above) (X (X the) (X (X going) (X (X rate) (X (X in) (X (X other) (X (X U.S.) (X (X cities) (X .)))))))))))))))) (X (X madison) (X (X and) (X (X Fifth) (X (X Avenues) (X (X and) (X (X East) (X (X 57th) (X (X Street) (X (X can) (X (X command) (X (X rents) (X (X of) (X (X up) (X (X to) (X (X $) (X (X 500) (X (X a) (X (X square) (X (X foot) (X (X ,) (X (X and) (X (X $) (X (X 250) (X (X is) (X (X not) (X (X uncommon) (X .))))))))))))))))))))))))))) (X (X the) (X (X thriving) (X (X 34th) (X (X Street) (X (X area) (X (X offers) (X (X rents) (X (X of) (X (X about) (X (X $) (X (X 100) (X (X a) (X (X square) (X (X foot) (X (X ,) (X (X as) (X (X do) (X (X up-and-coming) (X (X locations) (X (X along) (X (X lower) (X (X Fifth) (X (X Avenue) (X .)))))))))))))))))))))))) (X (X by) (X (X contrast) (X (X ,) (X (X rentals) (X (X in) (X (X the) (X (X best) (X (X retail) (X (X locations) (X (X in) (X (X Boston) (X (X ,) (X (X San) (X (X Francisco) (X (X and) (X (X Chicago) (X (X rarely) (X (X top) (X (X $) (X (X 100) (X (X a) (X (X square) (X (X foot) (X .)))))))))))))))))))))))) (X (X and) (X (X rents) (X (X on) (X (X Beverly) (X (X Hills) (X (X ') (X (X Rodeo) (X (X Drive) (X (X generally) (X (X do) (X (X n't) (X (X exceed) (X (X about) (X (X $) (X (X 125) (X (X a) (X (X square) (X (X foot) (X .))))))))))))))))))) (X (X the) (X (X New) (X (X York) (X (X Stock) (X (X Exchange) (X (X said) (X (X two) (X (X securities) (X (X will) (X (X begin) (X (X trading) (X (X this) (X (X week) (X .)))))))))))))) (X (X precision) (X (X Castparts) (X (X Corp.) (X (X ,) (X (X Portland) (X (X ,) (X (X Ore.) (X (X ,) (X (X will) (X (X begin) (X (X trading) (X (X with) (X (X the) (X (X symbol) (X (X PCP) (X .)))))))))))))))) (X (X it) (X (X makes) (X (X investment) (X (X castings) (X (X and) (X (X has) (X (X traded) (X (X over-the-counter) (X .))))))))) (X (X royal) (X (X Bank) (X (X of) (X (X Scotland) (X (X Group) (X (X PLC) (X (X ,) (X (X an) (X (X Edinburgh) (X (X ,) (X (X Scotland) (X (X ,) (X (X financial) (X (X services) (X (X company) (X (X ,) (X (X will) (X (X list) (X (X American) (X (X depositary) (X (X shares) (X (X ,) (X (X representing) (X (X preferred) (X (X shares) (X (X ,) (X (X with) (X (X the) (X (X symbol) (X (X RBSPr) (X .))))))))))))))))))))))))))))))) (X (X it) (X (X will) (X (X continue) (X (X to) (X (X trade) (X (X on) (X (X the) (X (X International) (X (X Stock) (X (X Exchange) (X (X ,) (X (X London) (X .))))))))))))) (X (X the) (X (X American) (X (X Stock) (X (X Exchange) (X (X listed) (X (X shares) (X (X of) (X (X two) (X (X companies) (X .)))))))))) (X (X aim) (X (X Telephones) (X (X Inc.) (X (X ,) (X (X a) (X (X Parsippany) (X (X ,) (X (X N.J.) (X (X ,) (X (X telecommunications) (X (X equipment) (X (X supply) (X (X company) (X (X ,) (X (X started) (X (X trading) (X (X with) (X (X the) (X (X symbol) (X (X AIM) (X .))))))))))))))))))))) (X (X it) (X (X had) (X (X traded) (X (X over-the-counter) (X .))))) (X (X columbia) (X (X Laboratories) (X (X Inc.) (X (X ,) (X (X Miami) (X (X ,) (X (X began) (X (X trading) (X (X with) (X (X the) (X (X symbol) (X (X COB) (X .))))))))))))) (X (X the) (X (X pharmaceuticals) (X (X maker) (X (X had) (X (X traded) (X (X over-the-counter) (X .))))))) (X (X the) (X (X National) (X (X Market) (X (X System) (X (X of) (X (X the) (X (X Nasdaq) (X (X over-the-counter) (X (X market) (X (X listed) (X (X shares) (X (X of) (X (X one) (X (X company) (X .))))))))))))))) (X (X employee) (X (X Benefit) (X (X Plans) (X (X Inc.) (X (X ,) (X (X a) (X (X Minneapolis) (X (X health-care) (X (X services) (X (X company) (X (X ,) (X (X was) (X (X listed) (X (X with) (X (X the) (X (X symbol) (X (X EBPI) (X .)))))))))))))))))) (X (X when) (X (X Justice) (X (X William) (X (X Brennan) (X (X marks) (X (X the) (X (X start) (X (X of) (X (X his) (X (X 34th) (X (X year) (X (X on) (X (X the) (X (X Supreme) (X (X Court) (X (X today) (X (X ,) (X (X the) (X (X occasion) (X (X will) (X (X differ) (X (X sharply) (X (X from) (X (X previous) (X (X anniversaries) (X (X of) (X (X his) (X (X tenure) (X .))))))))))))))))))))))))))))) (X (X for) (X (X the) (X (X first) (X (X time) (X (X ,) (X (X the) (X (X 83-year-old) (X (X justice) (X (X finds) (X (X his) (X (X influence) (X (X almost) (X (X exclusively) (X (X in) (X (X dissent) (X (X ,) (X (X rather) (X (X than) (X (X as) (X (X a) (X (X force) (X (X in) (X (X the) (X (X high) (X (X court) (X (X 's) (X (X majority) (X .)))))))))))))))))))))))))))) (X (X this) (X (X role) (X (X reversal) (X (X holds) (X (X true) (X (X ,) (X (X as) (X (X well) (X (X ,) (X (X for) (X (X his) (X (X three) (X (X liberal) (X (X and) (X (X moderate) (X (X allies) (X (X ,) (X (X Justices) (X (X Thurgood) (X (X Marshall) (X (X ,) (X (X Harry) (X (X Blackmun) (X (X and) (X (X John) (X (X Stevens) (X .))))))))))))))))))))))))))) (X (X but) (X (X are) (X (X these) (X (X four) (X (X players) (X (X ,) (X (X three) (X (X of) (X (X them) (X (X in) (X (X their) (X (X 80s) (X (X ,) (X (X ready) (X (X to) (X (X assume) (X (X a) (X (X different) (X (X role) (X (X after) (X (X 88) (X (X years) (X (X ,) (X (X collectively) (X (X ,) (X (X of) (X (X service) (X (X on) (X (X the) (X (X high) (X (X court) (X ?)))))))))))))))))))))))))))))))) (X (X every) (X (X indication) (X (X is) (X (X that) (X (X the) (X (X four) (X (X are) (X (X prepared) (X (X to) (X (X accept) (X (X this) (X (X new) (X (X role) (X (X ,) (X (X and) (X (X the) (X (X frustrations) (X (X that) (X (X go) (X (X with) (X (X it) (X (X ,) (X (X but) (X (X in) (X (X different) (X (X ways) (X .))))))))))))))))))))))))))) (X (X justices) (X (X Brennan) (X (X and) (X (X Stevens) (X (X appear) (X (X philosophical) (X (X about) (X (X it) (X (X ;) (X (X Justices) (X (X Marshall) (X (X and) (X (X Blackmun) (X (X appear) (X (X fighting) (X (X mad) (X .))))))))))))))))) (X (X the) (X (X four) (X (X justices) (X (X are) (X (X no) (X (X newcomers) (X (X to) (X (X dissent) (X (X ,) (X (X often) (X (X joining) (X (X forces) (X (X in) (X (X the) (X (X past) (X (X decade) (X (X to) (X (X criticize) (X (X the) (X (X court) (X (X 's) (X (X conservative) (X (X drift) (X .)))))))))))))))))))))))) (X (X but) (X (X always) (X (X ,) (X (X in) (X (X years) (X (X past) (X (X ,) (X (X they) (X (X have) (X (X bucked) (X (X the) (X (X trend) (X (X and) (X (X have) (X (X been) (X (X able) (X (X to) (X (X pick) (X (X up) (X (X a) (X (X fifth) (X (X vote) (X (X to) (X (X eke) (X (X out) (X (X a) (X (X number) (X (X of) (X (X major) (X (X victories) (X (X in) (X (X civil) (X (X rights) (X (X and) (X (X liberties) (X (X cases) (X .))))))))))))))))))))))))))))))))))))) (X (X now) (X (X ,) (X (X however) (X (X ,) (X (X as) (X (X the) (X (X court) (X (X 's) (X (X new) (X (X five-member) (X (X conservative) (X (X majority) (X (X continues) (X (X to) (X (X solidify) (X (X ,) (X (X victories) (X (X for) (X (X the) (X (X liberals) (X (X are) (X (X rare) (X .))))))))))))))))))))))) (X (X the) (X (X change) (X (X is) (X (X most) (X (X dramatic) (X (X for) (X (X Justice) (X (X Brennan) (X (X ,) (X (X the) (X (X last) (X (X survivor) (X (X of) (X (X the) (X (X mid-1960s) (X (X liberal) (X (X majority) (X (X under) (X (X Chief) (X (X Justice) (X (X Earl) (X (X Warren) (X .))))))))))))))))))))))) (X (X in) (X (X the) (X (X seven) (X (X Supreme) (X (X Court) (X (X terms) (X (X from) (X (X the) (X (X fall) (X (X of) (X (X 1962) (X (X through) (X (X the) (X (X spring) (X (X of) (X (X 1967) (X (X ,) (X (X the) (X (X height) (X (X of) (X (X the) (X (X Warren) (X (X Court) (X (X 's) (X (X power) (X (X ,) (X (X Justice) (X (X Brennan) (X (X cast) (X (X only) (X (X 25) (X (X dissenting) (X (X votes) (X (X in) (X (X 555) (X (X cases) (X (X decided) (X (X by) (X (X the) (X (X court) (X .))))))))))))))))))))))))))))))))))))))))) (X (X last) (X (X term) (X (X alone) (X (X he) (X (X cast) (X (X 52) (X (X dissenting) (X (X votes) (X (X in) (X (X 133) (X (X decisions) (X (X ,) (X (X with) (X (X the) (X (X contentious) (X (X flag-burning) (X (X ruling) (X (X as) (X (X his) (X (X only) (X (X big) (X (X victory) (X .))))))))))))))))))))))) (X (X but) (X (X Justice) (X (X Brennan) (X (X foresaw) (X (X his) (X (X new) (X (X role) (X (X ,) (X (X strongly) (X (X defending) (X (X the) (X (X importance) (X (X of) (X (X dissents) (X (X in) (X (X a) (X (X 1985) (X (X speech) (X .))))))))))))))))))) (X (X ``) (X (X Each) (X (X time) (X (X the) (X (X court) (X (X revisits) (X (X an) (X (X issue) (X (X ,) (X (X the) (X (X justices) (X (X will) (X (X be) (X (X forced) (X (X by) (X (X a) (X (X dissent) (X (X to) (X (X reconsider) (X (X the) (X (X fundamental) (X (X questions) (X (X and) (X (X to) (X (X rethink) (X (X the) (X (X result) (X (X ,) (X (X '') (X (X he) (X (X said) (X .)))))))))))))))))))))))))))))))) (X (X moreover) (X (X ,) (X (X in) (X (X recent) (X (X months) (X (X he) (X (X has) (X (X said) (X (X that) (X (X when) (X (X he) (X (X was) (X (X on) (X (X the) (X (X winning) (X (X side) (X (X in) (X (X the) (X (X 1960s) (X (X ,) (X (X he) (X (X knew) (X (X that) (X (X the) (X (X tables) (X (X might) (X (X turn) (X (X in) (X (X the) (X (X future) (X .))))))))))))))))))))))))))))))) (X (X he) (X (X has) (X (X said) (X (X that) (X (X he) (X (X now) (X (X knows) (X (X how) (X (X Justice) (X (X John) (X (X Harlan) (X (X felt) (X (X ,) (X (X a) (X (X reference) (X (X to) (X (X the) (X (X late) (X (X conservative) (X (X justice) (X (X who) (X (X was) (X (X the) (X (X most) (X (X frequent) (X (X dissenter) (X (X from) (X (X the) (X (X Warren) (X (X Court) (X (X 's) (X (X opinions) (X .))))))))))))))))))))))))))))))))) (X (X associates) (X (X of) (X (X 81-year-old) (X (X Justice) (X (X Marshall) (X (X say) (X (X he) (X (X was) (X (X ``) (X (X depressed) (X (X '') (X (X about) (X (X the) (X (X court) (X (X 's) (X (X direction) (X (X last) (X (X spring) (X (X ,) (X (X but) (X (X is) (X (X feisty) (X (X about) (X (X his) (X (X role) (X (X and) (X (X determined) (X (X to) (X (X speak) (X (X out) (X (X against) (X (X the) (X (X court) (X (X 's) (X (X cutbacks) (X (X in) (X (X civil) (X (X rights) (X .))))))))))))))))))))))))))))))))))))))) (X (X ``) (X (X We) (X (X could) (X (X sweep) (X (X it) (X (X under) (X (X the) (X (X rug) (X (X and) (X (X hide) (X (X it) (X (X ,) (X (X but) (X (X I) (X (X 'm) (X (X not) (X (X going) (X (X to) (X (X do) (X (X it) (X (X ,) (X (X '') (X (X he) (X (X said) (X (X in) (X (X a) (X (X speech) (X (X last) (X (X month) (X .)))))))))))))))))))))))))))))) (X (X he) (X (X ,) (X (X like) (X (X Justice) (X (X Brennan) (X (X ,) (X (X considers) (X (X dissents) (X (X highly) (X (X important) (X (X for) (X (X the) (X (X future) (X (X ,) (X (X a) (X (X point) (X (X that) (X (X has) (X (X n't) (X (X escaped) (X (X legal) (X (X scholars) (X .))))))))))))))))))))))) (X (X harvard) (X (X Law) (X (X School) (X (X Professor) (X (X Laurence) (X (X Tribe) (X (X says) (X (X there) (X (X is) (X (X a) (X (X ``) (X (X generation-skipping) (X (X '') (X (X flavor) (X (X to) (X (X current) (X (X dissents) (X .)))))))))))))))))) (X (X the) (X (X dissenters) (X (X in) (X (X the) (X (X Warren) (X (X Court) (X (X ,) (X (X he) (X (X says) (X (X ,) (X (X appeared) (X (X to) (X (X be) (X (X writing) (X (X for) (X (X the) (X (X short-term) (X (X ,) (X (X suggesting) (X (X that) (X (X the) (X (X court) (X (X 's) (X (X direction) (X (X might) (X (X change) (X (X soon) (X .)))))))))))))))))))))))))))) (X (X ``) (X (X Brennan) (X (X and) (X (X Marshall) (X (X are) (X (X speaking) (X (X in) (X (X their) (X (X dissents) (X (X to) (X (X a) (X (X more) (X (X distant) (X (X future) (X (X ,) (X (X '') (X (X he) (X (X says) (X .))))))))))))))))))) (X (X justice) (X (X Blackmun) (X (X ,) (X (X who) (X (X will) (X (X turn) (X (X 81) (X (X next) (X (X month) (X (X ,) (X (X also) (X (X seems) (X (X feisty) (X (X about) (X (X his) (X (X new) (X (X role) (X .)))))))))))))))))) (X (X associates) (X (X say) (X (X he) (X (X takes) (X (X some) (X (X defeats) (X (X more) (X (X personally) (X (X than) (X (X his) (X (X colleagues) (X (X ,) (X (X especially) (X (X attempts) (X (X to) (X (X curtail) (X (X the) (X (X right) (X (X to) (X (X abortion) (X (X first) (X (X recognized) (X (X in) (X (X his) (X (X 1973) (X (X opinion) (X (X ,) (X (X Roe) (X (X vs.) (X (X Wade) (X .))))))))))))))))))))))))))))))) (X (X friends) (X (X and) (X (X associates) (X (X who) (X (X saw) (X (X Justice) (X (X Blackmun) (X (X during) (X (X the) (X (X summer) (X (X said) (X (X he) (X (X was) (X (X no) (X (X more) (X (X discouraged) (X (X about) (X (X the) (X (X court) (X (X than) (X (X in) (X (X recent) (X (X years) (X .)))))))))))))))))))))))) (X (X and) (X (X his) (X (X outlook) (X (X improved) (X (X after) (X (X successful) (X (X cataract) (X (X surgery) (X (X in) (X (X August) (X .))))))))))) (X (X but) (X (X his) (X (X level) (X (X of) (X (X frustration) (X (X showed) (X (X in) (X (X a) (X (X recent) (X (X ,) (X (X impassioned) (X (X speech) (X (X to) (X (X a) (X (X group) (X (X of) (X (X hundreds) (X (X of) (X (X lawyers) (X (X in) (X (X Chicago) (X .)))))))))))))))))))))) (X (X he) (X (X concluded) (X (X his) (X (X remarks) (X (X by) (X (X quoting) (X (X ,) (X (X emotionally) (X (X and) (X (X at) (X (X some) (X (X length) (X (X ,) (X (X according) (X (X to) (X (X those) (X (X present) (X (X ,) (X (X the) (X (X late) (X (X Martin) (X (X Luther) (X (X King) (X (X 's) (X (X famous) (X (X ``) (X (X I) (X (X Have) (X (X a) (X (X Dream) (X (X '') (X (X speech) (X (X from) (X (X the) (X (X 1963) (X (X March) (X (X on) (X (X Washington) (X .))))))))))))))))))))))))))))))))))))))) (X (X justice) (X (X Stevens) (X (X ,) (X (X 69) (X (X ,) (X (X is) (X (X probably) (X (X the) (X (X most) (X (X philosophical) (X (X of) (X (X the) (X (X dissenters) (X (X about) (X (X his) (X (X role) (X (X ,) (X (X in) (X (X part) (X (X because) (X (X he) (X (X may) (X (X be) (X (X the) (X (X least) (X (X liberal) (X (X of) (X (X the) (X (X four) (X (X ,) (X (X but) (X (X also) (X (X because) (X (X he) (X (X enjoys) (X (X the) (X (X intellectual) (X (X challenge) (X (X of) (X (X arguing) (X (X with) (X (X the) (X (X majority) (X (X more) (X (X than) (X (X the) (X (X others) (X .)))))))))))))))))))))))))))))))))))))))))))))))) (X (X if) (X (X the) (X (X role) (X (X these) (X (X four) (X (X dissenters) (X (X are) (X (X assuming) (X (X is) (X (X a) (X (X familiar) (X (X one) (X (X in) (X (X modern) (X (X Supreme) (X (X Court) (X (X history) (X (X ,) (X (X it) (X (X also) (X (X differs) (X (X in) (X (X an) (X (X important) (X (X way) (X (X from) (X (X recent) (X (X history) (X (X ,) (X (X court) (X (X watchers) (X (X say) (X .))))))))))))))))))))))))))))))))) (X (X ``) (X (X The) (X (X dissenters) (X (X of) (X (X the) (X (X Warren) (X (X Court) (X (X were) (X (X often) (X (X defending) (X (X a) (X (X legal) (X (X legacy) (X (X that) (X (X they) (X (X inherited) (X (X ,) (X (X '') (X (X says) (X (X Prof.) (X (X A.E.) (X (X Dick) (X (X Howard) (X (X of) (X (X the) (X (X University) (X (X of) (X (X Virginia) (X (X Law) (X (X School) (X (X ,) (X (X ``) (X (X but) (X (X the) (X (X dissenters) (X (X today) (X (X are) (X (X defending) (X (X a) (X (X legacy) (X (X that) (X (X they) (X (X created) (X .)))))))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X government) (X (X sold) (X (X the) (X (X deposits) (X (X of) (X (X four) (X (X savings-and-loan) (X (X institutions) (X (X ,) (X (X in) (X (X its) (X (X first) (X (X wave) (X (X of) (X (X sales) (X (X of) (X (X big) (X (X ,) (X (X sick) (X (X thrifts) (X (X ,) (X (X but) (X (X low) (X (X bids) (X (X prevented) (X (X the) (X (X sale) (X (X of) (X (X a) (X (X fifth) (X .)))))))))))))))))))))))))))))))) (X (X the) (X (X four) (X (X S&Ls) (X (X were) (X (X sold) (X (X to) (X (X large) (X (X banks) (X (X ,) (X (X as) (X (X was) (X (X the) (X (X case) (X (X with) (X (X most) (X (X of) (X (X the) (X (X 28) (X (X previous) (X (X transactions) (X (X initiated) (X (X by) (X (X the) (X (X Resolution) (X (X Trust) (X (X Corp.) (X (X since) (X (X it) (X (X was) (X (X created) (X (X in) (X (X the) (X (X S&L) (X (X bailout) (X (X legislation) (X (X two) (X (X months) (X (X ago) (X .))))))))))))))))))))))))))))))))))))))) (X (X two) (X (X of) (X (X the) (X (X four) (X (X big) (X (X thrifts) (X (X were) (X (X sold) (X (X to) (X (X NCNB) (X (X Corp.) (X (X ,) (X (X Charlotte) (X (X ,) (X (X N.C.) (X (X ,) (X (X which) (X (X has) (X (X aggressively) (X (X expanded) (X (X its) (X (X markets) (X (X ,) (X (X particularly) (X (X in) (X (X Texas) (X (X and) (X (X Florida) (X .))))))))))))))))))))))))))))) (X (X a) (X (X Canadian) (X (X bank) (X (X bought) (X (X another) (X (X thrift) (X (X ,) (X (X in) (X (X the) (X (X first) (X (X RTC) (X (X transaction) (X (X with) (X (X a) (X (X foreign) (X (X bank) (X .))))))))))))))))) (X (X under) (X (X these) (X (X deals) (X (X ,) (X (X the) (X (X RTC) (X (X sells) (X (X just) (X (X the) (X (X deposits) (X (X and) (X (X the) (X (X healthy) (X (X assets) (X .))))))))))))))) (X (X these) (X (X ``) (X (X clean-bank) (X (X '') (X (X transactions) (X (X leave) (X (X the) (X (X bulk) (X (X of) (X (X bad) (X (X assets) (X (X ,) (X (X mostly) (X (X real) (X (X estate) (X (X ,) (X (X with) (X (X the) (X (X government) (X (X ,) (X (X to) (X (X be) (X (X sold) (X (X later) (X .))))))))))))))))))))))))) (X (X in) (X (X these) (X (X four) (X (X ,) (X (X for) (X (X instance) (X (X ,) (X (X the) (X (X RTC) (X (X is) (X (X stuck) (X (X with) (X (X $) (X (X 4.51) (X (X billion) (X (X in) (X (X bad) (X (X assets) (X .))))))))))))))))))) (X (X acquirers) (X (X paid) (X (X premiums) (X (X ranging) (X (X from) (X (X 1.5) (X (X %) (X (X to) (X (X 3.7) (X (X %) (X (X for) (X (X the) (X (X deposits) (X (X and) (X (X branch) (X (X systems) (X (X ,) (X (X roughly) (X (X in) (X (X line) (X (X with) (X (X what) (X (X analysts) (X (X were) (X (X expecting) (X .)))))))))))))))))))))))))) (X (X the) (X (X buyers) (X (X will) (X (X also) (X (X be) (X (X locked) (X (X into) (X (X deposit) (X (X rates) (X (X for) (X (X just) (X (X two) (X (X weeks) (X (X ,) (X (X as) (X (X has) (X (X been) (X (X the) (X (X case) (X (X with) (X (X previous) (X (X deals) (X .))))))))))))))))))))))) (X (X after) (X (X that) (X (X ,) (X (X the) (X (X buyers) (X (X may) (X (X repudiate) (X (X the) (X (X rates) (X (X paid) (X (X by) (X (X the) (X (X former) (X (X thrifts) (X .))))))))))))))) (X (X but) (X (X it) (X (X 's) (X (X uncertain) (X (X whether) (X (X these) (X (X institutions) (X (X will) (X (X take) (X (X those) (X (X steps) (X .)))))))))))) (X (X ncnb) (X (X ,) (X (X for) (X (X example) (X (X ,) (X (X has) (X (X been) (X (X one) (X (X of) (X (X the) (X (X highest) (X (X rate) (X (X payers) (X (X in) (X (X the) (X (X Texas) (X (X market) (X (X ,) (X (X and) (X (X in) (X (X Florida) (X (X ,) (X (X rates) (X (X are) (X (X especially) (X (X sensitive) (X (X in) (X (X retirement) (X (X communities) (X .)))))))))))))))))))))))))))))) (X (X the) (X (X RTC) (X (X had) (X (X previously) (X (X targeted) (X (X five) (X (X thrifts) (X (X for) (X (X quick) (X (X sales) (X (X in) (X (X order) (X (X to) (X (X spend) (X (X cash) (X (X by) (X (X certain) (X (X budgetary) (X (X deadlines) (X (X ,) (X (X but) (X (X the) (X (X delays) (X (X illustrate) (X (X the) (X (X tough) (X (X chore) (X (X facing) (X (X the) (X (X agency) (X .))))))))))))))))))))))))))))))) (X (X ``) (X (X These) (X (X thrifts) (X (X are) (X (X beached) (X (X whales) (X (X ,) (X (X '') (X (X said) (X (X Bert) (X (X Ely) (X (X ,) (X (X an) (X (X industry) (X (X consultant) (X (X based) (X (X in) (X (X Alexandria) (X (X ,) (X (X Va) (X .))))))))))))))))))))) (X (X for) (X (X example) (X (X ,) (X (X the) (X (X delay) (X (X in) (X (X selling) (X (X People) (X (X 's) (X (X Heritage) (X (X Savings) (X (X ,) (X (X Salina) (X (X ,) (X (X Kan.) (X (X ,) (X (X with) (X (X $) (X (X 1.7) (X (X billion) (X (X in) (X (X assets) (X (X ,) (X (X has) (X (X forced) (X (X the) (X (X RTC) (X (X to) (X (X consider) (X (X selling) (X (X off) (X (X the) (X (X thrift) (X (X branch-by-branch) (X (X ,) (X (X instead) (X (X of) (X (X as) (X (X a) (X (X whole) (X (X institution) (X .)))))))))))))))))))))))))))))))))))))))))) (X (X ncnb) (X (X continued) (X (X its) (X (X foray) (X (X into) (X (X the) (X (X Florida) (X (X and) (X (X Texas) (X (X markets) (X .))))))))))) (X (X ncnb) (X (X will) (X (X acquire) (X (X University) (X (X Federal) (X (X Savings) (X (X Association) (X (X ,) (X (X Houston) (X (X ,) (X (X which) (X (X had) (X (X assets) (X (X of) (X (X $) (X (X 2.8) (X (X billion) (X .)))))))))))))))))) (X (X ncnb) (X (X Texas) (X (X National) (X (X Bank) (X (X will) (X (X pay) (X (X the) (X (X RTC) (X (X a) (X (X premium) (X (X of) (X (X $) (X (X 129) (X (X million) (X (X for) (X (X $) (X (X 3.5) (X (X billion) (X (X in) (X (X deposits) (X .))))))))))))))))))))) (X (X as) (X (X a) (X (X measure) (X (X of) (X (X the) (X (X depths) (X (X to) (X (X which) (X (X the) (X (X Texas) (X (X real) (X (X estate) (X (X market) (X (X has) (X (X sunk) (X (X ,) (X (X the) (X (X RTC) (X (X will) (X (X pay) (X (X $) (X (X 3.8) (X (X billion) (X (X to) (X (X NCNB) (X (X to) (X (X take) (X (X $) (X (X 750) (X (X million) (X (X of) (X (X bad) (X (X assets) (X .)))))))))))))))))))))))))))))))))) (X (X ncnb) (X (X also) (X (X acquired) (X (X Freedom) (X (X Savings) (X (X &) (X (X Loan) (X (X Association) (X (X ,) (X (X Tampa) (X (X ,) (X (X Fla.) (X (X ,) (X (X which) (X (X had) (X (X total) (X (X assets) (X (X of) (X (X $) (X (X 900) (X (X million) (X .)))))))))))))))))))))) (X (X ncnb) (X (X will) (X (X pay) (X (X the) (X (X RTC) (X (X a) (X (X premium) (X (X of) (X (X $) (X (X 40.4) (X (X million) (X (X for) (X (X $) (X (X 1.1) (X (X billion) (X (X in) (X (X deposits) (X .)))))))))))))))))) (X (X ncnb) (X (X will) (X (X also) (X (X acquire) (X (X $) (X (X 266) (X (X million) (X (X of) (X (X Freedom) (X (X 's) (X (X assets) (X (X from) (X (X the) (X (X RTC) (X (X ,) (X (X which) (X (X will) (X (X require) (X (X $) (X (X 875) (X (X million) (X (X in) (X (X assistance) (X .)))))))))))))))))))))))) (X (X meridian) (X (X Bancorp) (X (X Inc.) (X (X ,) (X (X Reading) (X (X ,) (X (X Pa.) (X (X ,) (X (X will) (X (X acquire) (X (X Hill) (X (X Financial) (X (X Savings) (X (X Association) (X (X ,) (X (X Red) (X (X Hill) (X (X ,) (X (X Pa.) (X (X ,) (X (X which) (X (X had) (X (X $) (X (X 2.3) (X (X billion) (X (X in) (X (X assets) (X .)))))))))))))))))))))))))))) (X (X meridian) (X (X will) (X (X pay) (X (X a) (X (X premium) (X (X of) (X (X $) (X (X 30.5) (X (X million) (X (X to) (X (X assume) (X (X $) (X (X 2) (X (X billion) (X (X in) (X (X deposits) (X .))))))))))))))))) (X (X it) (X (X will) (X (X also) (X (X purchase) (X (X $) (X (X 845) (X (X million) (X (X of) (X (X the) (X (X thrift) (X (X 's) (X (X assets) (X (X ,) (X (X with) (X (X $) (X (X 1.9) (X (X billion) (X (X in) (X (X RTC) (X (X assistance) (X .))))))))))))))))))))) (X (X in) (X (X the) (X (X first) (X (X RTC) (X (X transaction) (X (X with) (X (X a) (X (X foreign) (X (X buyer) (X (X ,) (X (X Royal) (X (X Trustco) (X (X Ltd.) (X (X ,) (X (X Toronto) (X (X ,) (X (X will) (X (X acquire) (X (X Pacific) (X (X Savings) (X (X Bank) (X (X ,) (X (X Costa) (X (X Mesa) (X (X ,) (X (X Calif.) (X (X ,) (X (X which) (X (X had) (X (X $) (X (X 949) (X (X million) (X (X in) (X (X assets) (X .))))))))))))))))))))))))))))))))))) (X (X royal) (X (X Trustco) (X (X will) (X (X pay) (X (X the) (X (X RTC) (X (X $) (X (X 25) (X (X million) (X (X to) (X (X assume) (X (X $) (X (X 989) (X (X million) (X (X in) (X (X deposits) (X .))))))))))))))))) (X (X it) (X (X will) (X (X also) (X (X purchase) (X (X $) (X (X 473) (X (X million) (X (X in) (X (X assets) (X (X ,) (X (X and) (X (X receive) (X (X $) (X (X 550) (X (X million) (X (X in) (X (X assistance) (X (X from) (X (X the) (X (X RTC) (X .))))))))))))))))))))) (X (X the) (X (X following) (X (X issues) (X (X were) (X (X recently) (X (X filed) (X (X with) (X (X the) (X (X Securities) (X (X and) (X (X Exchange) (X (X Commission) (X :))))))))))))) (X (X american) (X (X Cyanamid) (X (X Co.) (X (X ,) (X (X offering) (X (X of) (X (X 1,250,000) (X (X common) (X (X shares) (X (X ,) (X (X via) (X (X Merrill) (X (X Lynch) (X (X Capital) (X (X Markets) (X .)))))))))))))))) (X (X limited) (X (X Inc.) (X (X ,) (X (X offering) (X (X of) (X (X up) (X (X to) (X (X $) (X (X 300) (X (X million) (X (X of) (X (X debt) (X (X securities) (X (X and) (X (X warrants) (X .)))))))))))))))) (X (X nuveen) (X (X California) (X (X Performance) (X (X Plus) (X (X Municipal) (X (X Fund) (X (X Inc.) (X (X ,) (X (X initial) (X (X offering) (X (X of) (X (X five) (X (X million) (X (X common) (X (X shares) (X (X ,) (X (X via) (X (X Alex) (X (X .) (X (X Brown) (X (X &) (X (X Sons) (X (X Inc.) (X (X ,) (X (X John) (X (X Nuveen) (X (X &) (X (X Co.) (X (X ,) (X (X Prudential-Bache) (X (X Capital) (X (X Funding) (X (X ,) (X (X and) (X (X Bateman) (X (X Eichler) (X (X ,) (X (X Hill) (X (X Richards) (X .)))))))))))))))))))))))))))))))))))))))) (X (X pacificare) (X (X Health) (X (X Systems) (X (X Inc.) (X (X ,) (X (X proposed) (X (X offering) (X (X of) (X (X 1.5) (X (X million) (X (X common) (X (X shares) (X (X ,) (X (X of) (X (X which) (X (X 700,000) (X (X shares) (X (X will) (X (X be) (X (X offered) (X (X by) (X (X PacifiCare) (X (X and) (X (X 800,000) (X (X shares) (X (X by) (X (X UniHealth) (X (X America) (X (X Inc) (X (X .) (X (X -LRB-) (X (X PacifiCare) (X (X 's) (X (X 71) (X (X %) (X (X -RRB-) (X (X ,) (X (X via) (X (X Dillon) (X (X ,) (X (X Read) (X (X &) (X (X Co.) (X (X Inc.) (X (X ,) (X (X Goldman) (X (X ,) (X (X Sachs) (X (X &) (X (X Co.) (X (X and) (X (X Dean) (X (X Witter) (X (X Reynolds) (X (X Inc) (X .)))))))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X pricor) (X (X Inc.) (X (X ,) (X (X offering) (X (X of) (X (X one) (X (X million) (X (X new) (X (X shares) (X (X of) (X (X common) (X (X stock) (X (X and) (X (X 300,000) (X (X shares) (X (X by) (X (X holders) (X (X ,) (X (X via) (X (X Drexel) (X (X Burnham) (X (X Lambert) (X (X Inc.) (X (X and) (X (X J.C.) (X (X Bradford) (X (X &) (X (X Co) (X .))))))))))))))))))))))))))))) (X (X trans) (X (X World) (X (X Airlines) (X (X Inc.) (X (X ,) (X (X offering) (X (X of) (X (X $) (X (X 150) (X (X million) (X (X senior) (X (X notes) (X (X ,) (X (X via) (X (X Drexel) (X (X Burnham) (X .))))))))))))))))) (X (X time) (X (X magazine) (X (X ,) (X (X in) (X (X a) (X (X move) (X (X to) (X (X reduce) (X (X the) (X (X costs) (X (X of) (X (X wooing) (X (X new) (X (X subscribers) (X (X ,) (X (X is) (X (X lowering) (X (X its) (X (X circulation) (X (X guarantee) (X (X to) (X (X advertisers) (X (X for) (X (X the) (X (X second) (X (X consecutive) (X (X year) (X (X ,) (X (X increasing) (X (X its) (X (X subscription) (X (X rates) (X (X and) (X (X cutting) (X (X back) (X (X on) (X (X merchandise) (X (X giveaways) (X .))))))))))))))))))))))))))))))))))))))) (X (X in) (X (X an) (X (X announcement) (X (X to) (X (X its) (X (X staff) (X (X last) (X (X week) (X (X ,) (X (X executives) (X (X at) (X (X Time) (X (X Warner) (X (X Inc.) (X (X 's) (X (X weekly) (X (X magazine) (X (X said) (X (X Time) (X (X will) (X (X ``) (X (X dramatically) (X (X de-emphasize) (X (X '') (X (X its) (X (X use) (X (X of) (X (X electronic) (X (X giveaways) (X (X such) (X (X as) (X (X telephones) (X (X in) (X (X television) (X (X subscription) (X (X drives) (X (X ;) (X (X cut) (X (X the) (X (X circulation) (X (X it) (X (X guarantees) (X (X advertisers) (X (X by) (X (X 300,000) (X (X ,) (X (X to) (X (X four) (X (X million) (X (X ;) (X (X and) (X (X increase) (X (X the) (X (X cost) (X (X of) (X (X its) (X (X annual) (X (X subscription) (X (X rate) (X (X by) (X (X about) (X (X $) (X (X 4) (X (X to) (X (X $) (X (X 55) (X .))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X in) (X (X a) (X (X related) (X (X development) (X (X ,) (X (X the) (X (X news-weekly) (X (X ,) (X (X for) (X (X the) (X (X fourth) (X (X year) (X (X in) (X (X a) (X (X row) (X (X ,) (X (X said) (X (X it) (X (X wo) (X (X n't) (X (X increase) (X (X its) (X (X advertising) (X (X rates) (X (X in) (X (X 1990) (X (X ;) (X (X a) (X (X full) (X (X ,) (X (X four-color) (X (X page) (X (X in) (X (X the) (X (X magazine) (X (X costs) (X (X about) (X (X $) (X (X 120,000) (X .)))))))))))))))))))))))))))))))))))))))) (X (X however) (X (X ,) (X (X because) (X (X the) (X (X guaranteed) (X (X circulation) (X (X base) (X (X is) (X (X being) (X (X lowered) (X (X ,) (X (X ad) (X (X rates) (X (X will) (X (X be) (X (X effectively) (X (X 7.5) (X (X %) (X (X higher) (X (X per) (X (X subscriber) (X (X ,) (X (X according) (X (X to) (X (X Richard) (X (X Heinemann) (X (X ,) (X (X Time) (X (X associate) (X (X publisher) (X .))))))))))))))))))))))))))))))) (X (X time) (X (X is) (X (X following) (X (X the) (X (X course) (X (X of) (X (X some) (X (X other) (X (X mass-circulation) (X (X magazines) (X (X that) (X (X in) (X (X recent) (X (X years) (X (X have) (X (X challenged) (X (X the) (X (X publishing) (X (X myth) (X (X that) (X (X maintaining) (X (X artificially) (X (X high) (X (X ,) (X (X and) (X (X expensive) (X (X ,) (X (X circulations) (X (X is) (X (X the) (X (X way) (X (X to) (X (X draw) (X (X advertisers) (X .))))))))))))))))))))))))))))))))))) (X (X in) (X (X recent) (X (X years) (X (X ,) (X (X Reader) (X (X 's) (X (X Digest) (X (X ,) (X (X New) (X (X York) (X (X Times) (X (X Co.) (X (X 's) (X (X McCall) (X (X 's) (X (X ,) (X (X and) (X (X most) (X (X recently) (X (X News) (X (X Corp.) (X (X 's) (X (X TV) (X (X Guide) (X (X ,) (X (X have) (X (X cut) (X (X their) (X (X massive) (X (X circulation) (X (X rate) (X (X bases) (X (X to) (X (X eliminate) (X (X marginal) (X (X circulation) (X (X and) (X (X hold) (X (X down) (X (X rates) (X (X for) (X (X advertisers) (X .))))))))))))))))))))))))))))))))))))))))))) (X (X deep) (X (X discounts) (X (X in) (X (X subscriptions) (X (X and) (X (X offers) (X (X of) (X (X free) (X (X clock) (X (X radios) (X (X and) (X (X watches) (X (X have) (X (X become) (X (X accepted) (X (X forms) (X (X of) (X (X attracting) (X (X new) (X (X subscribers) (X (X in) (X (X the) (X (X hyper-competitive) (X (X world) (X (X of) (X (X magazine) (X (X news-weeklies) (X .)))))))))))))))))))))))))))) (X (X but) (X (X Time) (X (X ,) (X (X as) (X (X part) (X (X of) (X (X the) (X (X more) (X (X cost-conscious) (X (X Time) (X (X Warner) (X (X ,) (X (X wants) (X (X to) (X (X wean) (X (X itself) (X (X away) (X (X from) (X (X expensive) (X (X gimmicks) (X .))))))))))))))))))))) (X (X besides) (X (X ,) (X (X Time) (X (X executives) (X (X think) (X (X selling) (X (X a) (X (X news) (X (X magazine) (X (X with) (X (X a) (X (X clock) (X (X radio) (X (X is) (X (X tacky) (X .)))))))))))))))) (X (X ``) (X (X Giveaways) (X (X just) (X (X give) (X (X people) (X (X the) (X (X wrong) (X (X image) (X (X ,) (X (X '') (X (X said) (X (X Mr.) (X (X Heinemann) (X .)))))))))))))) (X (X ``) (X (X That) (X (X perception) (X (X takes) (X (X the) (X (X focus) (X (X off) (X (X the) (X (X magazine) (X (X .) (X ''))))))))))) (X (X time) (X (X magazine) (X (X executives) (X (X predictably) (X (X paint) (X (X the) (X (X circulation) (X (X cut) (X (X as) (X (X a) (X (X show) (X (X of) (X (X strength) (X (X and) (X (X actually) (X (X a) (X (X benefit) (X (X to) (X (X advertisers) (X .)))))))))))))))))))) (X (X ``) (X (X What) (X (X we) (X (X are) (X (X doing) (X (X is) (X (X screening) (X (X out) (X (X the) (X (X readers) (X (X who) (X (X are) (X (X only) (X (X casually) (X (X related) (X (X to) (X (X the) (X (X magazine) (X (X and) (X (X do) (X (X n't) (X (X really) (X (X read) (X (X it) (X (X ,) (X (X '') (X (X said) (X (X Mr.) (X (X Heinemann) (X .)))))))))))))))))))))))))))))) (X (X ``) (X (X We) (X (X are) (X (X trying) (X (X to) (X (X create) (X (X quality) (X (X and) (X (X involvement) (X (X .) (X ''))))))))))) (X (X however) (X (X ,) (X (X Time) (X (X executives) (X (X used) (X (X the) (X (X same) (X (X explanation) (X (X when) (X (X in) (X (X October) (X (X 1988) (X (X the) (X (X magazine) (X (X cut) (X (X its) (X (X guaranteed) (X (X circulation) (X (X from) (X (X 4.6) (X (X million) (X (X to) (X (X 4.3) (X (X million) (X .))))))))))))))))))))))))) (X (X and) (X (X Time) (X (X 's) (X (X paid) (X (X circulation) (X (X ,) (X (X according) (X (X to) (X (X Audit) (X (X Bureau) (X (X of) (X (X Circulations) (X (X ,) (X (X dropped) (X (X 7.3) (X (X %) (X (X to) (X (X 4,393,237) (X (X in) (X (X the) (X (X six) (X (X months) (X (X ended) (X (X June) (X (X 30) (X (X ,) (X (X 1989) (X .)))))))))))))))))))))))))))) (X (X still) (X (X ,) (X (X Time) (X (X 's) (X (X move) (X (X is) (X (X being) (X (X received) (X (X well) (X (X ,) (X (X once) (X (X again) (X .))))))))))))) (X (X ``) (X (X It) (X (X 's) (X (X terrific) (X (X for) (X (X advertisers) (X (X to) (X (X know) (X (X the) (X (X reader) (X (X will) (X (X be) (X (X paying) (X (X more) (X (X ,) (X (X '') (X (X said) (X (X Michael) (X (X Drexler) (X (X ,) (X (X national) (X (X media) (X (X director) (X (X at) (X (X Bozell) (X (X Inc.) (X (X ad) (X (X agency) (X .))))))))))))))))))))))))))))) (X (X ``) (X (X A) (X (X few) (X (X drops) (X (X in) (X (X circulation) (X (X are) (X (X of) (X (X no) (X (X consequence) (X .))))))))))) (X (X it) (X (X 's) (X (X not) (X (X a) (X (X show) (X (X of) (X (X weakness) (X (X ;) (X (X they) (X (X are) (X (X improving) (X (X the) (X (X quality) (X (X of) (X (X circulation) (X (X while) (X (X insuring) (X (X their) (X (X profits) (X (X .) (X ''))))))))))))))))))))) (X (X mr.) (X (X Heinemann) (X (X said) (X (X the) (X (X changes) (X (X represent) (X (X a) (X (X new) (X (X focus) (X (X in) (X (X the) (X (X magazine) (X (X industry) (X (X :) (X (X a) (X (X magazine) (X (X 's) (X (X net) (X (X revenue) (X (X per) (X (X subscriber) (X (X ,) (X (X or) (X (X the) (X (X actual) (X (X revenue) (X (X from) (X (X subscribers) (X (X after) (X (X discounts) (X (X and) (X (X the) (X (X cost) (X (X of) (X (X premiums) (X (X have) (X (X been) (X (X stripped) (X (X away) (X .)))))))))))))))))))))))))))))))))))))))) (X (X ``) (X (X The) (X (X question) (X (X is) (X (X how) (X (X much) (X (X are) (X (X we) (X (X getting) (X (X from) (X (X each) (X (X reader) (X (X ,) (X (X '') (X (X said) (X (X Mr.) (X (X Heinemann) (X .)))))))))))))))))) (X (X time) (X (X 's) (X (X rivals) (X (X news-weeklies) (X (X ,) (X (X Washington) (X (X Post) (X (X Co.) (X (X 's) (X (X Newsweek) (X (X and) (X (X U.S.) (X (X News) (X (X &) (X (X World) (X (X Report) (X (X ,) (X (X are) (X (X less) (X (X reliant) (X (X on) (X (X electronic) (X (X giveaways) (X (X ,) (X (X and) (X (X in) (X (X recent) (X (X years) (X (X both) (X (X have) (X (X been) (X (X increasing) (X (X their) (X (X circulation) (X (X rate) (X (X bases) (X .))))))))))))))))))))))))))))))))))))) (X (X both) (X (X magazines) (X (X are) (X (X expected) (X (X to) (X (X announce) (X (X their) (X (X ad) (X (X rates) (X (X and) (X (X circulation) (X (X levels) (X (X for) (X (X 1990) (X (X within) (X (X a) (X (X month) (X .)))))))))))))))))) (X (X when) (X (X the) (X (X news) (X (X broke) (X (X of) (X (X an) (X (X attempted) (X (X coup) (X (X in) (X (X Panama) (X (X two) (X (X weeks) (X (X ago) (X (X ,) (X (X Sen.) (X (X Christopher) (X (X Dodd) (X (X called) (X (X the) (X (X State) (X (X Department) (X (X for) (X (X a) (X (X briefing) (X .))))))))))))))))))))))))) (X (X ``) (X (X They) (X (X said) (X (X ,) (X (X `) (X (X follow) (X (X CNN) (X (X ,) (X (X ') (X (X '') (X (X he) (X (X told) (X (X reporters) (X .)))))))))))))) (X (X that) (X (X shows) (X (X how) (X (X far) (X (X Ted) (X (X Turner) (X (X 's) (X (X Cable) (X (X News) (X (X Network) (X (X has) (X (X come) (X (X since) (X (X its) (X (X birth) (X (X nine) (X (X years) (X (X ago) (X (X ,) (X (X when) (X (X it) (X (X was) (X (X considered) (X (X the) (X (X laughingstock) (X (X of) (X (X television) (X (X news) (X .))))))))))))))))))))))))))))) (X (X it) (X (X is) (X (X bigger) (X (X ,) (X (X faster) (X (X and) (X (X more) (X (X profitable) (X (X than) (X (X the) (X (X news) (X (X divisions) (X (X of) (X (X any) (X (X of) (X (X the) (X (X three) (X (X major) (X (X broadcast) (X (X networks) (X .))))))))))))))))))))) (X (X its) (X (X niche) (X (X as) (X (X the) (X (X ``) (X (X network) (X (X of) (X (X record) (X (X '') (X (X during) (X (X major) (X (X crises) (X (X draws) (X (X elite) (X (X audiences) (X (X around) (X (X the) (X (X world) (X .))))))))))))))))))) (X (X but) (X (X for) (X (X all) (X (X its) (X (X success) (X (X ,) (X (X CNN) (X (X has) (X (X hit) (X (X a) (X (X plateau) (X .)))))))))))) (X (X although) (X (X viewership) (X (X soars) (X (X when) (X (X big) (X (X news) (X (X breaks) (X (X ,) (X (X it) (X (X ebbs) (X (X during) (X (X periods) (X (X of) (X (X calm) (X .))))))))))))))) (X (X cnn) (X (X executives) (X (X worry) (X (X that) (X (X the) (X (X network) (X (X 's) (X (X punchy) (X (X but) (X (X repetitive) (X (X news) (X (X format) (X (X may) (X (X be) (X (X getting) (X (X stale) (X (X and) (X (X wo) (X (X n't) (X (X keep) (X (X viewers) (X (X coming) (X (X back) (X (X as) (X (X the) (X (X alternatives) (X (X multiply) (X (X for) (X (X news) (X (X and) (X (X information) (X (X on) (X (X cable-TV) (X .)))))))))))))))))))))))))))))))))) (X (X ``) (X (X Just) (X (X the) (X (X fact) (X (X we) (X (X 're) (X (X on) (X (X 24) (X (X hours) (X (X is) (X (X no) (X (X longer) (X (X bulletin) (X (X ,) (X (X '') (X (X says) (X (X Ed) (X (X Turner) (X (X ,) (X (X CNN) (X (X 's) (X (X executive) (X (X vice) (X (X president) (X (X ,) (X (X news) (X (X gathering) (X (X -LRB-) (X (X and) (X (X no) (X (X relation) (X (X to) (X (X Ted) (X (X Turner) (X (X -RRB-) (X .)))))))))))))))))))))))))))))))))))) (X (X ``) (X (X You) (X (X ca) (X (X n't) (X (X live) (X (X on) (X (X that) (X (X .) (X ''))))))))) (X (X so) (X (X CNN) (X (X ,) (X (X a) (X (X unit) (X (X of) (X (X Atlanta-based) (X (X Turner) (X (X Broadcasting) (X (X System) (X (X Inc.) (X (X ,) (X (X is) (X (X trying) (X (X to) (X (X reposition) (X (X itself) (X (X as) (X (X a) (X (X primary) (X (X channel) (X (X ,) (X (X or) (X (X what) (X (X people) (X (X in) (X (X the) (X (X television) (X (X industry) (X (X call) (X (X a) (X (X ``) (X (X top) (X (X of) (X (X mind) (X (X '') (X (X network) (X .)))))))))))))))))))))))))))))))))))))) (X (X tonight) (X (X ,) (X (X to) (X (X kick) (X (X off) (X (X the) (X (X effort) (X (X ,) (X (X CNN) (X (X will) (X (X premiere) (X (X its) (X (X first) (X (X prime-time) (X (X newscast) (X (X in) (X (X years) (X (X ,) (X (X an) (X (X hourlong) (X (X show) (X (X at) (X (X 6) (X (X p.m) (X (X .) (X (X Eastern) (X (X time) (X (X to) (X (X air) (X (X head-to-head) (X (X against) (X (X the) (X (X network) (X (X newscasts) (X .))))))))))))))))))))))))))))))))))) (X (X the) (X (X show) (X (X will) (X (X be) (X (X co-anchored) (X (X by) (X (X Bernard) (X (X Shaw) (X (X and) (X (X Catherine) (X (X Crier) (X (X ,) (X (X a) (X (X 34-year-old) (X (X former) (X (X Texas) (X (X judge) (X (X and) (X (X campus) (X (X beauty) (X (X queen) (X (X who) (X (X has) (X (X never) (X (X held) (X (X a) (X (X job) (X (X in) (X (X television) (X (X or) (X (X journalism) (X .)))))))))))))))))))))))))))))))) (X (X the) (X (X new) (X (X show) (X (X is) (X (X perhaps) (X (X the) (X (X boldest) (X (X in) (X (X a) (X (X number) (X (X of) (X (X steps) (X (X the) (X (X network) (X (X is) (X (X taking) (X (X to) (X (X build) (X (X audience) (X (X loyalty) (X (X by) (X (X shifting) (X (X away) (X (X from) (X (X its) (X (X current) (X (X format) (X (X toward) (X (X more) (X (X full-length) (X (X ``) (X (X signature) (X (X '') (X (X programming) (X (X with) (X (X recognizable) (X (X stars) (X .)))))))))))))))))))))))))))))))))))))) (X (X to) (X (X distinguish) (X (X itself) (X (X ,) (X (X CNN) (X (X is) (X (X also) (X (X expanding) (X (X international) (X (X coverage) (X (X and) (X (X adding) (X (X a) (X (X second) (X (X global-news) (X (X program) (X .))))))))))))))))) (X (X it) (X (X is) (X (X paying) (X (X higher) (X (X salaries) (X (X --) (X (X after) (X (X years) (X (X of) (X (X scrimping) (X (X --) (X (X to) (X (X lure) (X (X and) (X (X keep) (X (X experienced) (X (X staffers) (X .)))))))))))))))))) (X (X and) (X (X it) (X (X is) (X (X embarking) (X (X on) (X (X an) (X (X expensive) (X (X gamble) (X (X to) (X (X break) (X (X major) (X (X stories) (X (X with) (X (X a) (X (X large) (X (X investigative-reporting) (X (X team) (X .)))))))))))))))))) (X (X ``) (X (X The) (X (X next) (X (X stage) (X (X is) (X (X to) (X (X get) (X (X beyond) (X (X the) (X (X opinion) (X (X leaders) (X (X who) (X (X use) (X (X us) (X (X as) (X (X a) (X (X point) (X (X of) (X (X reference) (X (X to) (X (X become) (X (X a) (X (X point) (X (X of) (X (X reference) (X (X at) (X (X ordinary) (X (X dinner) (X (X tables) (X (X ,) (X (X '') (X (X says) (X (X Jon) (X (X Petrovich) (X (X ,) (X (X executive) (X (X vice) (X (X president) (X (X of) (X (X Headline) (X (X News) (X (X ,) (X (X CNN) (X (X 's) (X (X sister) (X (X network) (X .))))))))))))))))))))))))))))))))))))))))))))))) (X (X but) (X (X that) (X (X wo) (X (X n't) (X (X be) (X (X easy) (X .))))))) (X (X networks) (X (X ,) (X (X like) (X (X other) (X (X consumer) (X (X products) (X (X ,) (X (X develop) (X (X images) (X (X in) (X (X peoples) (X (X ') (X (X minds) (X (X that) (X (X are) (X (X n't) (X (X easy) (X (X to) (X (X change) (X .)))))))))))))))))))) (X (X it) (X (X also) (X (X takes) (X (X money) (X (X that) (X (X CNN) (X (X has) (X (X been) (X (X reluctant) (X (X to) (X (X spend) (X (X to) (X (X make) (X (X programs) (X (X and) (X (X hire) (X (X talent) (X (X that) (X (X viewers) (X (X will) (X (X tune) (X (X in) (X (X specially) (X (X to) (X (X see) (X .)))))))))))))))))))))))))) (X (X and) (X (X the) (X (X cable-TV) (X (X operators) (X (X --) (X (X CNN) (X (X 's) (X (X distributors) (X (X and) (X (X part) (X (X owners) (X (X --) (X (X like) (X (X things) (X (X just) (X (X the) (X (X way) (X (X they) (X (X are) (X .)))))))))))))))))))) (X (X the) (X (X repositioning) (X (X bid) (X (X is) (X (X aimed) (X (X at) (X (X CNN) (X (X 's) (X (X unsteady) (X (X viewership) (X (X --) (X (X and) (X (X what) (X (X may) (X (X happen) (X (X to) (X (X it) (X (X as) (X (X the) (X (X cable-TV) (X (X news) (X (X market) (X (X grows) (X (X more) (X (X competitive) (X .)))))))))))))))))))))))))) (X (X already) (X (X ,) (X (X CNN) (X (X is) (X (X facing) (X (X stronger) (X (X competition) (X (X from) (X (X Financial) (X (X News) (X (X Network) (X (X Inc.) (X (X and) (X (X General) (X (X Electric) (X (X Co.) (X (X 's) (X (X Consumer) (X (X News) (X (X and) (X (X Business) (X (X Channel) (X (X ,) (X (X both) (X (X of) (X (X which) (X (X are) (X (X likely) (X (X to) (X (X pursue) (X (X more) (X (X general) (X (X news) (X (X in) (X (X the) (X (X future) (X .))))))))))))))))))))))))))))))))))))) (X (X in) (X (X addition) (X (X ,) (X (X many) (X (X cable-TV) (X (X systems) (X (X themselves) (X (X are) (X (X airing) (X (X more) (X (X local) (X (X and) (X (X regional) (X (X news) (X (X programs) (X (X produced) (X (X by) (X (X local) (X (X broadcast) (X (X stations) (X .))))))))))))))))))))) (X (X cnn) (X (X wants) (X (X to) (X (X change) (X (X its) (X (X viewers) (X (X ') (X (X habits) (X .))))))))) (X (X its) (X (X watchers) (X (X are) (X (X ,) (X (X on) (X (X the) (X (X whole) (X (X ,) (X (X a) (X (X disloyal) (X (X group) (X (X of) (X (X channel-zapping) (X (X ``) (X (X grazers) (X (X '') (X (X and) (X (X news) (X (X junkies) (X (X ,) (X (X who) (X (X spend) (X (X an) (X (X average) (X (X of) (X (X just) (X (X 26) (X (X minutes) (X (X a) (X (X day) (X (X watching) (X (X CNN) (X (X ,) (X (X according) (X (X to) (X (X audience) (X (X research) (X .)))))))))))))))))))))))))))))))))))))) (X (X that) (X (X 's) (X (X less) (X (X than) (X (X one-third) (X (X the) (X (X time) (X (X that) (X (X viewers) (X (X watch) (X (X the) (X (X major) (X (X broadcast) (X (X networks) (X .))))))))))))))) (X (X the) (X (X brief) (X (X attention) (X (X viewers) (X (X give) (X (X CNN) (X (X could) (X (X put) (X (X it) (X (X at) (X (X a) (X (X disadvantage) (X (X as) (X (X ratings) (X (X data) (X (X ,) (X (X and) (X (X advertising) (X (X ,) (X (X become) (X (X more) (X (X important) (X (X to) (X (X cable-TV) (X (X channels) (X .)))))))))))))))))))))))))) (X (X cnn) (X (X 's) (X (X viewer) (X (X habits) (X (X have) (X (X been) (X (X molded) (X (X by) (X (X its) (X (X format) (X .))))))))))) (X (X its) (X (X strategy) (X (X in) (X (X the) (X (X past) (X (X has) (X (X been) (X (X to) (X (X serve) (X (X as) (X (X a) (X (X TV) (X (X wire) (X (X service) (X .))))))))))))))) (X (X it) (X (X focused) (X (X on) (X (X building) (X (X up) (X (X its) (X (X news) (X (X bureaus) (X (X around) (X (X the) (X (X world) (X (X ,) (X (X so) (X (X as) (X (X events) (X (X took) (X (X place) (X (X it) (X (X could) (X (X go) (X (X live) (X (X quicker) (X (X and) (X (X longer) (X (X than) (X (X other) (X (X networks) (X .)))))))))))))))))))))))))))) (X (X it) (X (X filled) (X (X its) (X (X daily) (X (X schedule) (X (X with) (X (X newscasts) (X (X called) (X (X ``) (X (X Daybreak) (X (X ,) (X (X '') (X (X ``) (X (X Daywatch) (X (X ,) (X (X '') (X (X ``) (X (X Newsday) (X (X ,) (X (X '') (X (X and) (X (X ``) (X (X Newsnight) (X (X ,) (X (X '') (X (X but) (X (X the) (X (X shows) (X (X varied) (X (X little) (X (X in) (X (X content) (X (X ,) (X (X personality) (X (X or) (X (X look) (X .))))))))))))))))))))))))))))))))))))) (X (X now) (X (X ,) (X (X the) (X (X push) (X (X is) (X (X on) (X (X for) (X (X more-distinctive) (X (X shows) (X .)))))))))) (X (X ``) (X (X Our) (X (X goal) (X (X is) (X (X to) (X (X create) (X (X more) (X (X programs) (X (X with) (X (X an) (X (X individual) (X (X identity) (X (X ,) (X (X '') (X (X says) (X (X Paul) (X (X Amos) (X (X ,) (X (X CNN) (X (X executive) (X (X vice) (X (X president) (X (X for) (X (X programming) (X .))))))))))))))))))))))))) (X (X accordingly) (X (X ,) (X (X CNN) (X (X is) (X (X adding) (X (X a) (X (X world-affairs) (X (X show) (X (X in) (X (X the) (X (X morning) (X (X because) (X (X surveys) (X (X show) (X (X its) (X (X global-news) (X (X hour) (X (X in) (X (X the) (X (X afternoon) (X (X is) (X (X among) (X (X its) (X (X most) (X (X ``) (X (X differentiated) (X (X '') (X (X programs) (X (X in) (X (X viewers) (X (X ') (X (X minds) (X (X ,) (X (X says) (X (X Mr.) (X (X Amos) (X .))))))))))))))))))))))))))))))))))))) (X (X and) (X (X it) (X (X is) (X (X exploring) (X (X other) (X (X original) (X (X programs) (X (X ,) (X (X similar) (X (X to) (X (X its) (X (X ``) (X (X Larry) (X (X King) (X (X Live) (X (X '') (X (X and) (X (X ``) (X (X Crossfire) (X (X '') (X (X talk) (X (X shows) (X (X ,) (X (X which) (X (X executives) (X (X hope) (X (X will) (X (X keep) (X (X people) (X (X tuned) (X (X in) (X .)))))))))))))))))))))))))))))))) (X (X then) (X (X there) (X (X 's) (X (X ``) (X (X The) (X (X World) (X (X Today) (X (X ,) (X (X '') (X (X the) (X (X prime-time) (X (X newscast) (X (X featuring) (X (X Mr.) (X (X Shaw) (X (X and) (X (X Ms.) (X (X Crier) (X .))))))))))))))))))) (X (X until) (X (X now) (X (X ,) (X (X CNN) (X (X has) (X (X featured) (X (X its) (X (X Hollywood) (X (X gossip) (X (X show) (X (X during) (X (X the) (X (X key) (X (X evening) (X (X period) (X .)))))))))))))))) (X (X but) (X (X 70) (X (X %) (X (X of) (X (X the) (X (X cable-television-equipped) (X (X households) (X (X that) (X (X watch) (X (X news) (X (X do) (X (X so) (X (X between) (X (X 6:30) (X (X p.m.) (X (X and) (X (X 7) (X (X p.m.) (X (X ,) (X (X the) (X (X network) (X (X discovered) (X (X ,) (X (X so) (X (X CNN) (X (X wants) (X (X in) (X .)))))))))))))))))))))))))))) (X (X mr.) (X (X Amos) (X (X says) (X (X the) (X (X Shaw-Crier) (X (X team) (X (X will) (X (X probably) (X (X do) (X (X two) (X (X live) (X (X interviews) (X (X a) (X (X day) (X (X ,) (X (X with) (X (X most) (X (X of) (X (X the) (X (X program) (X (X ,) (X (X at) (X (X least) (X (X for) (X (X now) (X (X ,) (X (X appearing) (X (X similar) (X (X to) (X (X CNN) (X (X 's) (X (X other) (X (X newcasts) (X .)))))))))))))))))))))))))))))))))) (X (X some) (X (X in) (X (X the) (X (X industry) (X (X are) (X (X skeptical) (X .))))))) (X (X ``) (X (X I) (X (X find) (X (X it) (X (X hard) (X (X to) (X (X conceive) (X (X of) (X (X people) (X (X switching) (X (X over) (X (X to) (X (X CNN) (X (X for) (X (X what) (X (X ,) (X (X at) (X (X least) (X (X in) (X (X the) (X (X public) (X (X 's) (X (X mind) (X (X ,) (X (X is) (X (X the) (X (X same) (X (X news) (X (X ,) (X (X '') (X (X says) (X (X Reuven) (X (X Frank) (X (X ,) (X (X the) (X (X former) (X (X two-time) (X (X president) (X (X of) (X (X NBC) (X (X News) (X (X and) (X (X creator) (X (X of) (X (X the) (X (X Huntley-Brinkley) (X (X Report) (X .)))))))))))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X evening) (X (X news) (X (X is) (X (X also) (X (X slated) (X (X as) (X (X CNN) (X (X 's) (X (X stage) (X (X for) (X (X its) (X (X big) (X (X push) (X (X into) (X (X investigative) (X (X journalism) (X .)))))))))))))))))) (X (X in) (X (X August) (X (X ,) (X (X the) (X (X network) (X (X hired) (X (X award-winning) (X (X producer) (X (X Pamela) (X (X Hill) (X (X ,) (X (X the) (X (X former) (X (X head) (X (X of) (X (X news) (X (X specials) (X (X at) (X (X ABC) (X .)))))))))))))))))))) (X (X she) (X (X 's) (X (X assembling) (X (X a) (X (X staff) (X (X of) (X (X about) (X (X 35) (X (X investigative) (X (X reporters) (X (X who) (X (X will) (X (X produce) (X (X weekly) (X (X ,) (X (X in-depth) (X (X segments) (X (X ,) (X (X with) (X (X an) (X (X eye) (X (X toward) (X (X breaking) (X (X big) (X (X stories) (X .)))))))))))))))))))))))))) (X (X cnn) (X (X executives) (X (X hope) (X (X the) (X (X headlines) (X (X created) (X (X by) (X (X such) (X (X scoops) (X (X will) (X (X generate) (X (X excitement) (X (X for) (X (X its) (X (X ``) (X (X branded) (X (X '') (X (X programs) (X (X ,) (X (X in) (X (X the) (X (X way) (X (X ``) (X (X 60) (X (X Minutes) (X (X '') (X (X did) (X (X so) (X (X well) (X (X for) (X (X CBS) (X .)))))))))))))))))))))))))))))))) (X (X that) (X (X 's) (X (X such) (X (X a) (X (X departure) (X (X from) (X (X the) (X (X past) (X (X that) (X (X many) (X (X in) (X (X the) (X (X industry) (X (X are) (X (X skeptical) (X (X CNN) (X (X will) (X (X follow) (X (X through) (X (X with) (X (X its) (X (X investigative) (X (X commitment) (X (X ,) (X (X especially) (X (X after) (X (X it) (X (X sees) (X (X the) (X (X cost) (X (X of) (X (X producing) (X (X in-depth) (X (X pieces) (X .))))))))))))))))))))))))))))))))))) (X (X ``) (X (X They) (X (X 've) (X (X never) (X (X shown) (X (X any) (X (X inclination) (X (X to) (X (X spend) (X (X money) (X (X on) (X (X production) (X (X ,) (X (X '') (X (X says) (X (X Michael) (X (X Mosettig) (X (X ,) (X (X a) (X (X senior) (X (X producer) (X (X with) (X (X MacNeil-Lehrer) (X (X NewsHour) (X (X ,) (X (X who) (X (X notes) (X (X that) (X (X CNN) (X (X is) (X (X indispensable) (X (X to) (X (X his) (X (X job) (X .))))))))))))))))))))))))))))))))))) (X (X the) (X (X network) (X (X 's) (X (X salaries) (X (X have) (X (X always) (X (X ranged) (X (X far) (X (X below) (X (X industry) (X (X standards) (X (X ,) (X (X resulting) (X (X in) (X (X a) (X (X less-experienced) (X (X work) (X (X force) (X .))))))))))))))))))) (X (X cnn) (X (X recently) (X (X gave) (X (X most) (X (X employees) (X (X raises) (X (X of) (X (X as) (X (X much) (X (X as) (X (X 15) (X (X %) (X (X ,) (X (X but) (X (X they) (X (X 're) (X (X still) (X (X drastically) (X (X underpaid) (X (X compared) (X (X with) (X (X the) (X (X networks) (X .)))))))))))))))))))))))) (X (X says) (X (X Mr.) (X (X Mosettig) (X (X :) (X (X ``) (X (X CNN) (X (X is) (X (X my) (X (X wire) (X (X service) (X (X ;) (X (X they) (X (X 're) (X (X on) (X (X top) (X (X of) (X (X everything) (X .)))))))))))))))))) (X (X but) (X (X to) (X (X improve) (X (X ,) (X (X they) (X (X 've) (X (X really) (X (X got) (X (X to) (X (X make) (X (X the) (X (X investment) (X (X in) (X (X people) (X (X .) (X '')))))))))))))))) (X (X in) (X (X any) (X (X case) (X (X ,) (X (X cable-TV-system) (X (X operators) (X (X have) (X (X reason) (X (X to) (X (X fear) (X (X any) (X (X tinkering) (X (X with) (X (X CNN) (X (X 's) (X (X format) (X .))))))))))))))))) (X (X they) (X (X market) (X (X cable-TV) (X (X on) (X (X the) (X (X very) (X (X grazing) (X (X opportunities) (X (X CNN) (X (X seeks) (X (X to) (X (X discourage) (X .))))))))))))) (X (X ``) (X (X We) (X (X would) (X (X obviously) (X (X be) (X (X upset) (X (X if) (X (X those) (X (X kinds) (X (X of) (X (X services) (X (X evolved) (X (X into) (X (X more) (X (X general-interest) (X (X ,) (X (X long-format) (X (X programming) (X (X ,) (X (X '') (X (X says) (X (X Robert) (X (X Stengel) (X (X ,) (X (X senior) (X (X vice) (X (X president) (X (X ,) (X (X programming) (X (X ,) (X (X of) (X (X Continental) (X (X Cablevision) (X (X Inc.) (X (X ,) (X (X which) (X (X holds) (X (X a) (X (X 2) (X (X %) (X (X stake) (X (X in) (X (X Turner) (X (X Broadcasting) (X .))))))))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X Second) (X (X U.S.) (X (X Circuit) (X (X Court) (X (X of) (X (X Appeals) (X (X opinion) (X (X in) (X (X the) (X (X Arcadian) (X (X Phosphate) (X (X case) (X (X did) (X (X not) (X (X repudiate) (X (X the) (X (X position) (X (X Pennzoil) (X (X Co.) (X (X took) (X (X in) (X (X its) (X (X dispute) (X (X with) (X (X Texaco) (X (X ,) (X (X contrary) (X (X to) (X (X your) (X (X Sept.) (X (X 8) (X (X article) (X (X ``) (X (X Court) (X (X Backs) (X (X Texaco) (X (X 's) (X (X View) (X (X in) (X (X Pennzoil) (X (X Case) (X (X --) (X (X Too) (X (X Late) (X (X .) (X ''))))))))))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X fundamental) (X (X rule) (X (X of) (X (X contract) (X (X law) (X (X applied) (X (X to) (X (X both) (X (X cases) (X (X was) (X (X that) (X (X courts) (X (X will) (X (X not) (X (X enforce) (X (X agreements) (X (X to) (X (X which) (X (X the) (X (X parties) (X (X did) (X (X not) (X (X intend) (X (X to) (X (X be) (X (X bound) (X .)))))))))))))))))))))))))))) (X (X in) (X (X the) (X (X Pennzoil\/Texaco) (X (X litigation) (X (X ,) (X (X the) (X (X courts) (X (X found) (X (X Pennzoil) (X (X and) (X (X Getty) (X (X Oil) (X (X intended) (X (X to) (X (X be) (X (X bound) (X (X ;) (X (X in) (X (X Arcadian) (X (X Phosphates) (X (X they) (X (X found) (X (X there) (X (X was) (X (X no) (X (X intention) (X (X to) (X (X be) (X (X bound) (X .)))))))))))))))))))))))))))))) (X (X admittedly) (X (X ,) (X (X the) (X (X principle) (X (X in) (X (X the) (X (X cases) (X (X is) (X (X the) (X (X same) (X .))))))))))) (X (X but) (X (X the) (X (X outcome) (X (X of) (X (X a) (X (X legal) (X (X dispute) (X (X almost) (X (X always) (X (X turns) (X (X on) (X (X the) (X (X facts) (X .)))))))))))))) (X (X and) (X (X the) (X (X facts) (X (X ,) (X (X as) (X (X found) (X (X by) (X (X the) (X (X various) (X (X courts) (X (X in) (X (X these) (X (X two) (X (X lawsuits) (X (X ,) (X (X were) (X (X different) (X .)))))))))))))))))) (X (X when) (X (X you) (X (X suggest) (X (X otherwise) (X (X ,) (X (X you) (X (X leave) (X (X the) (X (X realm) (X (X of) (X (X reporting) (X (X and) (X (X enter) (X (X the) (X (X orbit) (X (X of) (X (X speculation) (X .)))))))))))))))))) (X (X charles) (X (X F.) (X Vihon))) (X (X valley) (X (X Federal) (X (X Savings) (X (X &) (X (X Loan) (X (X Association) (X (X said) (X (X Imperial) (X (X Corp.) (X (X of) (X (X America) (X (X withdrew) (X (X from) (X (X regulators) (X (X its) (X (X application) (X (X to) (X (X buy) (X (X five) (X (X Valley) (X (X Federal) (X (X branches) (X (X ,) (X (X leaving) (X (X the) (X (X transaction) (X (X in) (X (X limbo) (X .))))))))))))))))))))))))))))) (X (X the) (X (X broken) (X (X purchase) (X (X appears) (X (X as) (X (X additional) (X (X evidence) (X (X of) (X (X trouble) (X (X at) (X (X Imperial) (X (X Corp.) (X (X ,) (X (X whose) (X (X spokesman) (X (X said) (X (X the) (X (X company) (X (X withdrew) (X (X its) (X (X application) (X (X from) (X (X the) (X (X federal) (X (X Office) (X (X of) (X (X Thrift) (X (X Supervision) (X (X because) (X (X of) (X (X an) (X (X informal) (X (X notice) (X (X that) (X (X Imperial) (X (X 's) (X (X thrift) (X (X unit) (X (X failed) (X (X to) (X (X meet) (X (X Community) (X (X Reinvestment) (X (X Act) (X (X requirements) (X .)))))))))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X Community) (X (X Reinvestment) (X (X Act) (X (X requires) (X (X savings) (X (X and) (X (X loan) (X (X associations) (X (X to) (X (X lend) (X (X money) (X (X in) (X (X amounts) (X (X related) (X (X to) (X (X areas) (X (X where) (X (X deposits) (X (X are) (X (X received) (X .)))))))))))))))))))))) (X (X the) (X (X transaction) (X (X ,) (X (X announced) (X (X in) (X (X August) (X (X ,) (X (X included) (X (X about) (X (X $) (X (X 146) (X (X million) (X (X in) (X (X deposits) (X (X at) (X (X the) (X (X five) (X (X outlets) (X (X in) (X (X California) (X (X 's) (X (X San) (X (X Joaquin) (X (X Valley) (X .))))))))))))))))))))))))) (X (X terms) (X (X were) (X (X n't) (X (X disclosed) (X (X ,) (X (X but) (X (X Valley) (X (X Federal) (X (X had) (X (X said) (X (X it) (X (X expected) (X (X to) (X (X post) (X (X a) (X (X modest) (X (X pretax) (X (X gain) (X (X and) (X (X to) (X (X save) (X (X about) (X (X $) (X (X 2) (X (X million) (X (X in) (X (X operating) (X (X costs) (X (X annually) (X .)))))))))))))))))))))))))))))) (X (X valley) (X (X Federal) (X (X said) (X (X Friday) (X (X that) (X (X it) (X (X is) (X (X considering) (X (X whether) (X (X to) (X (X seek) (X (X another) (X (X buyer) (X (X for) (X (X the) (X (X branches) (X (X or) (X (X to) (X (X pursue) (X (X the) (X (X transaction) (X (X with) (X (X Imperial) (X (X Corp.) (X (X ,) (X (X which) (X (X said) (X (X it) (X (X is) (X (X attempting) (X (X to) (X (X meet) (X (X Community) (X (X Reinvestment) (X (X Act) (X (X requirements) (X .))))))))))))))))))))))))))))))))))))) (X (X valley) (X (X Federal) (X (X ,) (X (X with) (X (X assets) (X (X of) (X (X $) (X (X 3.3) (X (X billion) (X (X ,) (X (X is) (X (X based) (X (X in) (X (X Van) (X (X Nuys) (X .)))))))))))))))) (X (X imperial) (X (X Corp.) (X (X ,) (X (X based) (X (X in) (X (X San) (X (X Diego) (X (X ,) (X (X is) (X (X the) (X (X parent) (X (X of) (X (X Imperial) (X (X Savings) (X (X &) (X (X Loan) (X .))))))))))))))))) (X (X in) (X (X the) (X (X first) (X (X six) (X (X months) (X (X of) (X (X the) (X (X year) (X (X it) (X (X posted) (X (X a) (X (X net) (X (X loss) (X (X of) (X (X $) (X (X 33.1) (X (X million) (X .)))))))))))))))))) (X (X call) (X (X it) (X (X the) (X (X ``) (X (X we) (X (X 're) (X (X too) (X (X broke) (X (X to) (X (X fight) (X (X '') (X (X defense) (X .))))))))))))) (X (X lawyers) (X (X for) (X (X dozens) (X (X of) (X (X insolvent) (X (X savings) (X (X and) (X (X loan) (X (X associations) (X (X are) (X (X trying) (X (X a) (X (X new) (X (X tack) (X (X in) (X (X their) (X (X efforts) (X (X to) (X (X defuse) (X (X suits) (X (X filed) (X (X by) (X (X borrowers) (X (X ,) (X (X developers) (X (X and) (X (X creditors) (X .)))))))))))))))))))))))))))) (X (X the) (X (X thrifts) (X (X ') (X (X lawyers) (X (X claim) (X (X that) (X (X the) (X (X suits) (X (X ,) (X (X numbering) (X (X 700) (X (X to) (X (X 1,000) (X (X in) (X (X Texas) (X (X alone) (X (X ,) (X (X should) (X (X be) (X (X dismissed) (X (X as) (X (X moot) (X (X because) (X (X neither) (X (X the) (X (X S&Ls) (X (X nor) (X (X the) (X (X extinct) (X (X Federal) (X (X Savings) (X (X and) (X (X Loan) (X (X Insurance) (X (X Corp.) (X (X has) (X (X the) (X (X money) (X (X to) (X (X pay) (X (X judgments) (X .)))))))))))))))))))))))))))))))))))))))))) (X (X though) (X (X the) (X (X argument) (X (X may) (X (X have) (X (X a) (X (X common-sense) (X (X ring) (X (X to) (X (X it) (X (X ,) (X (X even) (X (X the) (X (X S&L) (X (X lawyers) (X (X concede) (X (X there) (X (X 's) (X (X little) (X (X precedent) (X (X to) (X (X back) (X (X their) (X (X position) (X .))))))))))))))))))))))))) (X (X still) (X (X ,) (X (X one) (X (X federal) (X (X appeals) (X (X court) (X (X has) (X (X signaled) (X (X it) (X (X 's) (X (X willing) (X (X to) (X (X entertain) (X (X the) (X (X notion) (X (X ,) (X (X and) (X (X the) (X (X lawyers) (X (X have) (X (X renewed) (X (X their) (X (X arguments) (X (X in) (X (X Texas) (X (X and) (X (X eight) (X (X other) (X (X states) (X (X where) (X (X the) (X (X defense) (X (X is) (X (X permitted) (X (X under) (X (X state) (X (X law) (X .)))))))))))))))))))))))))))))))))))))) (X (X the) (X (X dismissal) (X (X of) (X (X the) (X (X pending) (X (X suits) (X (X could) (X (X go) (X (X a) (X (X long) (X (X way) (X (X toward) (X (X clearing) (X (X court) (X (X dockets) (X (X in) (X (X Texas) (X (X and) (X (X reducing) (X (X the) (X (X FSLIC) (X (X 's) (X (X massive) (X (X legal) (X (X bills) (X (X ,) (X (X which) (X (X topped) (X (X $) (X (X 73) (X (X million) (X (X last) (X (X year) (X .)))))))))))))))))))))))))))))))))) (X (X the) (X (X S&L) (X (X lawyers) (X (X were) (X (X encouraged) (X (X last) (X (X month) (X (X by) (X (X an) (X (X appellate-court) (X (X ruling) (X (X in) (X (X two) (X (X cases) (X (X brought) (X (X against) (X (X defunct) (X (X Sunbelt) (X (X Savings) (X (X &) (X (X Loan) (X (X Association) (X (X of) (X (X Dallas) (X (X by) (X (X the) (X (X developers) (X (X of) (X (X the) (X (X Valley) (X (X Ranch) (X (X ,) (X (X best) (X (X known) (X (X as) (X (X the) (X (X training) (X (X center) (X (X for) (X (X the) (X (X Dallas) (X (X Cowboys) (X (X football) (X (X team) (X .))))))))))))))))))))))))))))))))))))))))))))) (X (X sunbelt) (X (X foreclosed) (X (X on) (X (X the) (X (X ranch) (X .)))))) (X (X sunbelt) (X (X and) (X (X the) (X (X FSLIC) (X (X argued) (X (X to) (X (X the) (X (X Fifth) (X (X U.S.) (X (X Circuit) (X (X Court) (X (X of) (X (X Appeals) (X (X ``) (X (X that) (X (X there) (X (X will) (X (X never) (X (X be) (X (X any) (X (X assets) (X (X with) (X (X which) (X (X to) (X (X satisfy) (X (X a) (X (X judgment) (X (X against) (X (X Sunbelt) (X (X Savings) (X (X nor) (X (X any) (X (X means) (X (X to) (X (X collect) (X (X from) (X (X any) (X (X other) (X (X party) (X (X ,) (X (X including) (X (X FSLIC) (X (X .) (X '')))))))))))))))))))))))))))))))))))))))))))) (X (X ``) (X (X If) (X (X true) (X (X ,) (X (X '') (X (X the) (X (X court) (X (X wrote) (X (X ,) (X (X ``) (X (X this) (X (X contention) (X (X would) (X (X justify) (X (X dismissal) (X (X of) (X (X these) (X (X actions) (X (X on) (X (X prudential) (X (X grounds) (X (X .) (X ''))))))))))))))))))))))) (X (X but) (X (X the) (X (X court) (X (X said) (X (X it) (X (X lacked) (X (X enough) (X (X financial) (X (X information) (X (X about) (X (X Sunbelt) (X (X and) (X (X the) (X (X FSLIC) (X (X and) (X (X sent) (X (X the) (X (X cases) (X (X back) (X (X to) (X (X federal) (X (X district) (X (X court) (X (X in) (X (X Dallas) (X .)))))))))))))))))))))))))) (X (X charles) (X (X Haworth) (X (X ,) (X (X a) (X (X lawyer) (X (X for) (X (X Sunbelt) (X (X ,) (X (X says) (X (X he) (X (X plans) (X (X to) (X (X file) (X (X a) (X (X brief) (X (X this) (X (X week) (X (X urging) (X (X the) (X (X district) (X (X judge) (X (X to) (X (X dismiss) (X (X the) (X (X suits) (X (X ,) (X (X because) (X (X Sunbelt) (X (X 's) (X (X liabilities) (X (X exceeded) (X (X its) (X (X assets) (X (X by) (X (X about) (X (X $) (X (X 2) (X (X billion) (X (X when) (X (X federal) (X (X regulators) (X (X closed) (X (X it) (X (X in) (X (X August) (X (X 1988) (X .))))))))))))))))))))))))))))))))))))))))))))))) (X (X ``) (X (X This) (X (X institution) (X (X is) (X (X just) (X (X brain) (X (X dead) (X (X ,) (X (X '') (X (X says) (X (X Mr.) (X (X Haworth) (X (X ,) (X (X a) (X (X partner) (X (X in) (X (X the) (X (X Dallas) (X (X office) (X (X of) (X (X Andrews) (X (X &) (X (X Kurth) (X (X ,) (X (X a) (X (X Houston) (X (X law) (X (X firm) (X .))))))))))))))))))))))))))))) (X (X but) (X (X a) (X (X lawyer) (X (X for) (X (X Triland) (X (X Investment) (X (X Group) (X (X ,) (X (X the) (X (X developer) (X (X of) (X (X Valley) (X (X Ranch) (X (X ,) (X (X dismisses) (X (X such) (X (X arguments) (X (X as) (X (X a) (X (X ``) (X (X defense) (X (X du) (X (X jour) (X (X .) (X ''))))))))))))))))))))))))) (X (X attorney) (X (X Richard) (X (X Jackson) (X (X of) (X (X Dallas) (X (X says) (X (X a) (X (X judgment) (X (X for) (X (X Triland) (X (X could) (X (X be) (X (X satisfied) (X (X in) (X (X ways) (X (X other) (X (X than) (X (X a) (X (X monetary) (X (X award) (X (X ,) (X (X including) (X (X the) (X (X reversal) (X (X of) (X (X Sunbelt) (X (X 's) (X (X foreclosure) (X (X on) (X (X Valley) (X (X Ranch) (X .)))))))))))))))))))))))))))))))) (X (X ``) (X (X We) (X (X 're) (X (X asking) (X (X the) (X (X court) (X (X for) (X (X a) (X (X number) (X (X of) (X (X things) (X (X he) (X (X can) (X (X grant) (X (X in) (X (X addition) (X (X to) (X (X the) (X (X thrill) (X (X of) (X (X victory) (X (X ,) (X (X '') (X (X he) (X (X says) (X .)))))))))))))))))))))))))) (X (X ``) (X (X We) (X (X 'd) (X (X take) (X (X the) (X (X Valley) (X (X Ranch) (X (X free) (X (X and) (X (X clear) (X (X as) (X (X a) (X (X booby) (X (X prize) (X .))))))))))))))) (X (X kenneth) (X (X J.) (X (X Thygerson) (X (X ,) (X (X who) (X (X was) (X (X named) (X (X president) (X (X of) (X (X this) (X (X thrift) (X (X holding) (X (X company) (X (X in) (X (X August) (X (X ,) (X (X resigned) (X (X ,) (X (X citing) (X (X personal) (X (X reasons) (X .)))))))))))))))))))))) (X (X mr.) (X (X Thygerson) (X (X said) (X (X he) (X (X had) (X (X planned) (X (X to) (X (X travel) (X (X between) (X (X the) (X (X job) (X (X in) (X (X Denver) (X (X and) (X (X his) (X (X San) (X (X Diego) (X (X home) (X (X ,) (X (X but) (X (X has) (X (X found) (X (X the) (X (X commute) (X (X too) (X (X difficult) (X (X to) (X (X continue) (X .))))))))))))))))))))))))))))) (X (X a) (X (X new) (X (X president) (X (X was) (X (X n't) (X (X named) (X .))))))) (X (X south) (X (X AFRICA) (X (X FREED) (X (X the) (X (X ANC) (X (X 's) (X (X Sisulu) (X (X and) (X (X seven) (X (X other) (X (X political) (X (X prisoners) (X .))))))))))))) (X (X thousands) (X (X of) (X (X supporters) (X (X ,) (X (X many) (X (X brandishing) (X (X flags) (X (X of) (X (X the) (X (X outlawed) (X (X African) (X (X National) (X (X Congress) (X (X ,) (X (X gave) (X (X the) (X (X anti-apartheid) (X (X activists) (X (X a) (X (X tumultuous) (X (X reception) (X (X upon) (X (X their) (X (X return) (X (X to) (X (X black) (X (X townships) (X (X across) (X (X the) (X (X country) (X .))))))))))))))))))))))))))))))) (X (X most) (X (X of) (X (X those) (X (X freed) (X (X had) (X (X spent) (X (X at) (X (X least) (X (X 25) (X (X years) (X (X in) (X (X prison) (X .))))))))))))) (X (X the) (X (X 77-year-old) (X (X Sisulu) (X (X ,) (X (X sentenced) (X (X to) (X (X life) (X (X in) (X (X 1964) (X (X along) (X (X with) (X (X black) (X (X nationalist) (X (X Nelson) (X (X Mandela) (X (X for) (X (X plotting) (X (X to) (X (X overthrow) (X (X the) (X (X government) (X (X ,) (X (X said) (X (X equality) (X (X for) (X (X blacks) (X (X in) (X (X South) (X (X Africa) (X (X was) (X (X in) (X (X reach) (X .))))))))))))))))))))))))))))))))) (X (X the) (X (X releases) (X (X ,) (X (X announced) (X (X last) (X (X week) (X (X by) (X (X President) (X (X de) (X (X Klerk) (X (X ,) (X (X were) (X (X viewed) (X (X as) (X (X Pretoria) (X (X 's) (X (X tacit) (X (X legalization) (X (X of) (X (X the) (X (X ANC) (X .)))))))))))))))))))))) (X (X mandela) (X (X ,) (X (X considered) (X (X the) (X (X most) (X (X prominent) (X (X leader) (X (X of) (X (X the) (X (X ANC) (X (X ,) (X (X remains) (X (X in) (X (X prison) (X .))))))))))))))) (X (X but) (X (X his) (X (X release) (X (X within) (X (X the) (X (X next) (X (X few) (X (X months) (X (X is) (X (X widely) (X (X expected) (X .)))))))))))) (X (X the) (X (X Soviet) (X (X Union) (X (X reported) (X (X that) (X (X thousands) (X (X of) (X (X tons) (X (X of) (X (X goods) (X (X needed) (X (X to) (X (X ease) (X (X widespread) (X (X shortages) (X (X across) (X (X the) (X (X nation) (X (X were) (X (X piled) (X (X up) (X (X at) (X (X ports) (X (X and) (X (X rail) (X (X depots) (X (X ,) (X (X and) (X (X food) (X (X shipments) (X (X were) (X (X rotting) (X (X because) (X (X of) (X (X a) (X (X lack) (X (X of) (X (X people) (X (X and) (X (X equipment) (X (X to) (X (X move) (X (X the) (X (X cargo) (X .))))))))))))))))))))))))))))))))))))))))))))) (X (X strikes) (X (X and) (X (X mismanagement) (X (X were) (X (X cited) (X (X ,) (X (X and) (X (X Premier) (X (X Ryzhkov) (X (X warned) (X (X of) (X (X ``) (X (X tough) (X (X measures) (X (X .) (X '')))))))))))))))) (X (X bush) (X (X indicated) (X (X there) (X (X might) (X (X be) (X (X ``) (X (X room) (X (X for) (X (X flexibility) (X (X '') (X (X in) (X (X a) (X (X bill) (X (X to) (X (X allow) (X (X federal) (X (X funding) (X (X of) (X (X abortions) (X (X for) (X (X poor) (X (X women) (X (X who) (X (X are) (X (X vicitims) (X (X of) (X (X rape) (X (X and) (X (X incest) (X .)))))))))))))))))))))))))))))) (X (X he) (X (X reiterated) (X (X his) (X (X opposition) (X (X to) (X (X such) (X (X funding) (X (X ,) (X (X but) (X (X expressed) (X (X hope) (X (X of) (X (X a) (X (X compromise) (X .))))))))))))))) (X (X the) (X (X president) (X (X ,) (X (X at) (X (X a) (X (X news) (X (X conference) (X (X Friday) (X (X ,) (X (X also) (X (X renewed) (X (X a) (X (X call) (X (X for) (X (X the) (X (X ouster) (X (X of) (X (X Panama) (X (X 's) (X (X Noriega) (X .))))))))))))))))))))) (X (X the) (X (X White) (X (X House) (X (X said) (X (X minors) (X (X have) (X (X n't) (X (X any) (X (X right) (X (X to) (X (X abortion) (X (X without) (X (X the) (X (X consent) (X (X of) (X (X their) (X (X parents) (X .)))))))))))))))))) (X (X the) (X (X administration) (X (X 's) (X (X policy) (X (X was) (X (X stated) (X (X in) (X (X a) (X (X friend-of-the-court) (X (X brief) (X (X urging) (X (X the) (X (X Supreme) (X (X Court) (X (X to) (X (X give) (X (X states) (X (X more) (X (X leeway) (X (X to) (X (X restrict) (X (X abortions) (X .))))))))))))))))))))))) (X (X ten) (X (X of) (X (X the) (X (X nation) (X (X 's) (X (X governors) (X (X ,) (X (X meanwhile) (X (X ,) (X (X called) (X (X on) (X (X the) (X (X justices) (X (X to) (X (X reject) (X (X efforts) (X (X to) (X (X limit) (X (X abortions) (X .)))))))))))))))))))) (X (X the) (X (X Justice) (X (X Department) (X (X announced) (X (X that) (X (X the) (X (X FBI) (X (X has) (X (X been) (X (X given) (X (X the) (X (X authority) (X (X to) (X (X seize) (X (X U.S.) (X (X fugitives) (X (X overseas) (X (X without) (X (X the) (X (X permission) (X (X of) (X (X foreign) (X (X governments) (X .)))))))))))))))))))))))) (X (X secretary) (X (X of) (X (X State) (X (X Baker) (X (X emphasized) (X (X Friday) (X (X that) (X (X the) (X (X new) (X (X policy) (X (X would) (X (X n't) (X (X be) (X (X invoked) (X (X by) (X (X the) (X (X Bush) (X (X administration) (X (X without) (X (X full) (X (X consideration) (X (X of) (X (X foreign-policy) (X (X implications) (X .))))))))))))))))))))))))) (X (X nasa) (X (X pronounced) (X (X the) (X (X space) (X (X shuttle) (X (X Atlantis) (X (X ready) (X (X for) (X (X launch) (X (X tomorrow) (X (X following) (X (X a) (X (X five-day) (X (X postponement) (X (X of) (X (X the) (X (X flight) (X (X because) (X (X of) (X (X a) (X (X faulty) (X (X engine) (X (X computer) (X .)))))))))))))))))))))))) (X (X the) (X (X device) (X (X was) (X (X replaced) (X .))))) (X (X the) (X (X spacecraft) (X (X 's) (X (X five) (X (X astronauts) (X (X are) (X (X to) (X (X dispatch) (X (X the) (X (X Galileo) (X (X space) (X (X probe) (X (X on) (X (X an) (X (X exploration) (X (X mission) (X (X to) (X (X Jupiter) (X .))))))))))))))))))) (X (X south) (X (X Korea) (X (X 's) (X (X President) (X (X Roh) (X (X traveled) (X (X to) (X (X the) (X (X U.S.) (X (X for) (X (X a) (X (X five-day) (X (X visit) (X (X that) (X (X is) (X (X expected) (X (X to) (X (X focus) (X (X on) (X (X ties) (X (X between) (X (X Washington) (X (X and) (X (X Seoul) (X .))))))))))))))))))))))))) (X (X roh) (X (X ,) (X (X who) (X (X is) (X (X facing) (X (X calls) (X (X for) (X (X the) (X (X reduction) (X (X of) (X (X U.S.) (X (X military) (X (X forces) (X (X in) (X (X South) (X (X Korea) (X (X ,) (X (X is) (X (X to) (X (X meet) (X (X with) (X (X Bush) (X (X tomorrow) (X (X and) (X (X is) (X (X to) (X (X address) (X (X a) (X (X joint) (X (X session) (X (X of) (X (X Congress) (X (X on) (X (X Wednesday) (X .))))))))))))))))))))))))))))))))))) (X (X china) (X (X 's) (X (X Communist) (X (X leadership) (X (X voted) (X (X to) (X (X purge) (X (X the) (X (X party) (X (X of) (X (X ``) (X (X hostile) (X (X and) (X (X anti-party) (X (X elements) (X (X '') (X (X and) (X (X wealthy) (X (X private) (X (X businessmen) (X (X ,) (X (X whom) (X (X they) (X (X called) (X (X exploiters) (X .)))))))))))))))))))))))))) (X (X the) (X (X decision) (X (X ,) (X (X reported) (X (X by) (X (X the) (X (X official) (X (X Xinhua) (X (X News) (X (X Agency) (X (X ,) (X (X indicated) (X (X that) (X (X the) (X (X crackdown) (X (X prompted) (X (X by) (X (X student-led) (X (X pro-democracy) (X (X protests) (X (X in) (X (X June) (X (X is) (X (X intensifying) (X .))))))))))))))))))))))))) (X (X hundreds) (X (X of) (X (X East) (X (X Germans) (X (X flocked) (X (X to) (X (X Bonn) (X (X 's) (X (X Embassy) (X (X in) (X (X Warsaw) (X (X ,) (X (X bringing) (X (X to) (X (X more) (X (X than) (X (X 1,200) (X (X the) (X (X number) (X (X of) (X (X emigres) (X (X expected) (X (X to) (X (X flee) (X (X to) (X (X the) (X (X West) (X (X beginning) (X (X today) (X .)))))))))))))))))))))))))))))) (X (X more) (X (X than) (X (X 2,100) (X (X others) (X (X escaped) (X (X to) (X (X West) (X (X Germany) (X (X through) (X (X Hungary) (X (X over) (X (X the) (X (X Weekend) (X .)))))))))))))) (X (X in) (X (X Leipzig) (X (X ,) (X (X activists) (X (X vowed) (X (X to) (X (X continue) (X (X street) (X (X protests) (X (X to) (X (X demand) (X (X internal) (X (X change) (X .)))))))))))))) (X (X zaire) (X (X 's) (X (X President) (X (X Mobutu) (X (X met) (X (X in) (X (X southern) (X (X France) (X (X with) (X (X Angolan) (X (X rebel) (X (X leader) (X (X Savimbi) (X (X and) (X (X a) (X (X senior) (X (X U.S.) (X (X envoy) (X (X in) (X (X a) (X (X bid) (X (X to) (X (X revive) (X (X an) (X (X accord) (X (X to) (X (X end) (X (X Angola) (X (X 's) (X (X civil) (X (X war) (X .)))))))))))))))))))))))))))))))) (X (X details) (X (X of) (X (X the) (X (X talks) (X (X ,) (X (X described) (X (X by) (X (X a) (X (X Zairean) (X (X official) (X (X as) (X (X ``) (X (X very) (X (X delicate) (X (X ,) (X (X '') (X (X were) (X (X n't) (X (X disclosed) (X .)))))))))))))))))))) (X (X plo) (X (X leader) (X (X Arafat) (X (X insisted) (X (X on) (X (X guarantees) (X (X that) (X (X any) (X (X elections) (X (X in) (X (X the) (X (X Israeli-occupied) (X (X territories) (X (X would) (X (X be) (X (X impartial) (X .))))))))))))))))) (X (X he) (X (X made) (X (X his) (X (X remarks) (X (X to) (X (X a) (X (X PLO) (X (X gathering) (X (X in) (X (X Baghdad) (X .))))))))))) (X (X in) (X (X the) (X (X occupied) (X (X lands) (X (X ,) (X (X underground) (X (X leaders) (X (X of) (X (X the) (X (X Arab) (X (X uprising) (X (X rejected) (X (X a) (X (X U.S.) (X (X plan) (X (X to) (X (X arrange) (X (X Israeli-Palestinian) (X (X talks) (X (X as) (X (X Shamir) (X (X opposed) (X (X holding) (X (X such) (X (X discussions) (X (X in) (X (X Cairo) (X .)))))))))))))))))))))))))))) (X (X lebanese) (X (X Christian) (X (X lawmakers) (X (X presented) (X (X to) (X (X Arab) (X (X mediators) (X (X at) (X (X talks) (X (X in) (X (X Saudi) (X (X Arabia) (X (X proposals) (X (X for) (X (X a) (X (X new) (X (X timetable) (X (X for) (X (X the) (X (X withdrawal) (X (X of) (X (X Syria) (X (X 's) (X (X forces) (X (X from) (X (X Lebanon) (X .))))))))))))))))))))))))))) (X (X a) (X (X plan) (X (X currently) (X (X under) (X (X study) (X (X gives) (X (X Damascus) (X (X two) (X (X years) (X (X to) (X (X pull) (X (X back) (X (X to) (X (X eastern) (X (X Lebanon) (X (X ,) (X (X starting) (X (X from) (X (X the) (X (X time) (X (X Beirut) (X (X 's) (X (X legislature) (X (X increases) (X (X political) (X (X power) (X (X for) (X (X Moslems) (X .))))))))))))))))))))))))))))) (X (X hurricane) (X (X Jerry) (X (X threatened) (X (X to) (X (X combine) (X (X with) (X (X the) (X (X highest) (X (X tides) (X (X of) (X (X the) (X (X year) (X (X to) (X (X swamp) (X (X the) (X (X Texas-Louisiana) (X (X coast) (X .)))))))))))))))))) (X (X thousands) (X (X of) (X (X residents) (X (X of) (X (X low-lying) (X (X areas) (X (X were) (X (X ordered) (X (X to) (X (X evacuate) (X (X as) (X (X the) (X (X storm) (X (X headed) (X (X north) (X (X in) (X (X the) (X (X Gulf) (X (X of) (X (X Mexico) (X (X with) (X (X 80) (X (X mph) (X (X winds) (X .))))))))))))))))))))))))) (X (X a) (X (X group) (X (X of) (X (X Arby) (X (X 's) (X (X franchisees) (X (X said) (X (X they) (X (X formed) (X (X an) (X (X association) (X (X to) (X (X oppose) (X (X Miami) (X (X Beach) (X (X financier) (X (X Victor) (X (X Posner) (X (X 's) (X (X control) (X (X of) (X (X the) (X (X restaurant) (X (X chain) (X .))))))))))))))))))))))))) (X (X the) (X (X decision) (X (X is) (X (X the) (X (X latest) (X (X move) (X (X in) (X (X an) (X (X escalating) (X (X battle) (X (X between) (X (X the) (X (X franchisees) (X (X and) (X (X Mr.) (X (X Posner) (X (X that) (X (X began) (X (X in) (X (X August) (X .))))))))))))))))))))) (X (X at) (X (X the) (X (X time) (X (X ,) (X (X a) (X (X group) (X (X called) (X (X R.B.) (X (X Partners) (X (X Ltd.) (X (X ,) (X (X consisting) (X (X of) (X (X eight) (X (X of) (X (X Arby) (X (X 's) (X (X largest) (X (X franchisees) (X (X ,) (X (X offered) (X (X more) (X (X than) (X (X $) (X (X 200) (X (X million) (X (X to) (X (X buy) (X (X Arby) (X (X 's) (X (X Inc.) (X (X ,) (X (X which) (X (X is) (X (X part) (X (X of) (X (X DWG) (X (X Corp) (X .))))))))))))))))))))))))))))))))))))))) (X (X dwg) (X (X is) (X (X a) (X (X holding) (X (X company) (X (X controlled) (X (X by) (X (X Mr.) (X (X Posner) (X .)))))))))) (X (X one) (X (X week) (X (X later) (X (X ,) (X (X Leonard) (X (X H.) (X (X Roberts) (X (X ,) (X (X president) (X (X and) (X (X chief) (X (X executive) (X (X officer) (X (X of) (X (X Arby) (X (X 's) (X (X ,) (X (X was) (X (X fired) (X (X in) (X (X a) (X (X dispute) (X (X with) (X (X Mr.) (X (X Posner) (X .)))))))))))))))))))))))))) (X (X friday) (X (X ,) (X (X 42) (X (X franchisees) (X (X announced) (X (X the) (X (X formation) (X (X of) (X (X an) (X (X association) (X (X --) (X (X called) (X (X A.P.) (X (X Association) (X (X Inc.) (X (X --) (X (X to) (X (X ``) (X (X preserve) (X (X the) (X (X integrity) (X (X of) (X (X the) (X (X Arby) (X (X 's) (X (X system) (X (X .) (X '')))))))))))))))))))))))))))) (X (X the) (X (X franchisees) (X (X ,) (X (X owners) (X (X or) (X (X operators) (X (X of) (X (X 1,000) (X (X of) (X (X the) (X (X 1,900) (X (X franchised) (X (X Arby) (X (X 's) (X (X in) (X (X the) (X (X U.S.) (X (X ,) (X (X said) (X (X :) (X (X ``) (X (X We) (X (X have) (X (X concluded) (X (X that) (X (X continued) (X (X control) (X (X of) (X (X Arby) (X (X 's) (X (X by) (X (X Victor) (X (X Posner) (X (X is) (X (X totally) (X (X unacceptable) (X (X to) (X (X us) (X (X ,) (X (X because) (X (X it) (X (X is) (X (X extremely) (X (X likely) (X (X to) (X (X cause) (X (X irreparable) (X (X damage) (X (X to) (X (X the) (X (X Arby) (X (X 's) (X (X system) (X .)))))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X we) (X (X support) (X (X all) (X (X efforts) (X (X to) (X (X remove) (X (X Victor) (X (X Posner) (X (X from) (X (X control) (X (X of) (X (X Arby) (X (X 's) (X (X Inc.) (X (X and) (X (X the) (X (X Arby) (X (X 's) (X (X system) (X (X .) (X ''))))))))))))))))))))) (X (X the) (X (X group) (X (X said) (X (X it) (X (X would) (X (X consider) (X (X ,) (X (X among) (X (X other) (X (X things) (X (X ,) (X (X withholding) (X (X royalty) (X (X payments) (X (X and) (X (X initiating) (X (X a) (X (X class-action) (X (X lawsuit) (X (X seeking) (X (X court) (X (X approval) (X (X for) (X (X the) (X (X withholdings) (X .)))))))))))))))))))))))))) (X (X in) (X (X Florida) (X (X ,) (X (X Renee) (X (X Mottram) (X (X ,) (X (X a) (X (X senior) (X (X vice) (X (X president) (X (X at) (X (X DWG) (X (X ,) (X (X responded) (X (X :) (X (X ``) (X (X We) (X (X do) (X (X n't) (X (X think) (X (X any) (X (X individual) (X (X or) (X (X group) (X (X should) (X (X disrupt) (X (X a) (X (X winning) (X (X system) (X (X or) (X (X illegally) (X (X interfere) (X (X with) (X (X existing) (X (X contractual) (X (X relationships) (X (X for) (X (X their) (X (X own) (X (X self-serving) (X (X motives) (X .)))))))))))))))))))))))))))))))))))))))))) (X (X september) (X (X 's) (X (X steep) (X (X rise) (X (X in) (X (X producer) (X (X prices) (X (X shows) (X (X that) (X (X inflation) (X (X still) (X (X persists) (X (X ,) (X (X and) (X (X the) (X (X pessimism) (X (X over) (X (X interest) (X (X rates) (X (X caused) (X (X by) (X (X the) (X (X new) (X (X price) (X (X data) (X (X contributed) (X (X to) (X (X the) (X (X stock) (X (X market) (X (X 's) (X (X plunge) (X (X Friday) (X .)))))))))))))))))))))))))))))))))) (X (X after) (X (X falling) (X (X for) (X (X three) (X (X consecutive) (X (X months) (X (X ,) (X (X the) (X (X producer) (X (X price) (X (X index) (X (X for) (X (X finished) (X (X goods) (X (X shot) (X (X up) (X (X 0.9) (X (X %) (X (X last) (X (X month) (X (X ,) (X (X the) (X (X Labor) (X (X Department) (X (X reported) (X (X Friday) (X (X ,) (X (X as) (X (X energy) (X (X prices) (X (X jumped) (X (X after) (X (X tumbling) (X (X through) (X (X the) (X (X summer) (X .))))))))))))))))))))))))))))))))))))) (X (X although) (X (X the) (X (X report) (X (X ,) (X (X which) (X (X was) (X (X released) (X (X before) (X (X the) (X (X stock) (X (X market) (X (X opened) (X (X ,) (X (X did) (X (X n't) (X (X trigger) (X (X the) (X (X 190.58-point) (X (X drop) (X (X in) (X (X the) (X (X Dow) (X (X Jones) (X (X Industrial) (X (X Average) (X (X ,) (X (X analysts) (X (X said) (X (X it) (X (X did) (X (X play) (X (X a) (X (X role) (X (X in) (X (X the) (X (X market) (X (X 's) (X (X decline) (X .))))))))))))))))))))))))))))))))))))))) (X (X analysts) (X (X immediately) (X (X viewed) (X (X the) (X (X price) (X (X data) (X (X ,) (X (X the) (X (X grimmest) (X (X inflation) (X (X news) (X (X in) (X (X months) (X (X ,) (X (X as) (X (X evidence) (X (X that) (X (X the) (X (X Federal) (X (X Reserve) (X (X was) (X (X unlikely) (X (X to) (X (X allow) (X (X interest) (X (X rates) (X (X to) (X (X fall) (X (X as) (X (X many) (X (X investors) (X (X had) (X (X hoped) (X .)))))))))))))))))))))))))))))))))) (X (X further) (X (X fueling) (X (X the) (X (X belief) (X (X that) (X (X pressures) (X (X in) (X (X the) (X (X economy) (X (X were) (X (X sufficient) (X (X to) (X (X keep) (X (X the) (X (X Fed) (X (X from) (X (X easing) (X (X credit) (X (X ,) (X (X the) (X (X Commerce) (X (X Department) (X (X reported) (X (X Friday) (X (X that) (X (X retail) (X (X sales) (X (X grew) (X (X 0.5) (X (X %) (X (X in) (X (X September) (X (X ,) (X (X to) (X (X $) (X (X 145.21) (X (X billion) (X .)))))))))))))))))))))))))))))))))))))) (X (X that) (X (X rise) (X (X came) (X (X on) (X (X top) (X (X of) (X (X a) (X (X 0.7) (X (X %) (X (X gain) (X (X in) (X (X August) (X (X ,) (X (X and) (X (X suggested) (X (X there) (X (X is) (X (X still) (X (X healthy) (X (X consumer) (X (X demand) (X (X in) (X (X the) (X (X economy) (X .))))))))))))))))))))))))) (X (X ``) (X (X I) (X (X think) (X (X the) (X (X Friday) (X (X report) (X (X ,) (X (X combined) (X (X with) (X (X the) (X (X actions) (X (X of) (X (X the) (X (X Fed) (X (X ,) (X (X weakened) (X (X the) (X (X belief) (X (X that) (X (X there) (X (X was) (X (X going) (X (X to) (X (X be) (X (X an) (X (X imminent) (X (X easing) (X (X of) (X (X monetary) (X (X policy) (X (X ,) (X (X '') (X (X said) (X (X Robert) (X (X Dederick) (X (X ,) (X (X chief) (X (X economist) (X (X at) (X (X Northern) (X (X Trust) (X (X Co.) (X (X in) (X (X Chicago) (X .))))))))))))))))))))))))))))))))))))))))))))) (X (X but) (X (X economists) (X (X were) (X (X divided) (X (X over) (X (X the) (X (X extent) (X (X of) (X (X the) (X (X inflation) (X (X threat) (X (X signaled) (X (X by) (X (X the) (X (X new) (X (X numbers) (X .))))))))))))))))) (X (X ``) (X (X The) (X (X overall) (X (X 0.9) (X (X %) (X (X increase) (X (X is) (X (X serious) (X (X in) (X (X itself) (X (X ,) (X (X but) (X (X what) (X (X is) (X (X even) (X (X worse) (X (X is) (X (X that) (X (X excluding) (X (X food) (X (X and) (X (X energy) (X (X ,) (X (X the) (X (X producer) (X (X price) (X (X index) (X (X still) (X (X increased) (X (X by) (X (X 0.7) (X (X %) (X (X ,) (X (X '') (X (X said) (X (X Gordon) (X (X Richards) (X (X ,) (X (X an) (X (X economist) (X (X at) (X (X the) (X (X National) (X (X Association) (X (X of) (X (X Manufacturers) (X .))))))))))))))))))))))))))))))))))))))))))))))) (X (X but) (X (X Sung) (X (X Won) (X (X Sohn) (X (X ,) (X (X chief) (X (X economist) (X (X at) (X (X Norwest) (X (X Corp.) (X (X in) (X (X Minneapolis) (X (X ,) (X (X blamed) (X (X rising) (X (X energy) (X (X prices) (X (X and) (X (X the) (X (X annual) (X (X autumn) (X (X increase) (X (X in) (X (X car) (X (X prices) (X (X for) (X (X most) (X (X of) (X (X the) (X (X September) (X (X jump) (X .)))))))))))))))))))))))))))))))) (X (X ``) (X (X I) (X (X would) (X (X say) (X (X this) (X (X is) (X (X not) (X (X bad) (X (X news) (X (X ;) (X (X this) (X (X is) (X (X a) (X (X blip) (X (X ,) (X (X '') (X (X he) (X (X said) (X .))))))))))))))))))) (X (X ``) (X (X The) (X (X core) (X (X rate) (X (X is) (X (X not) (X (X really) (X (X out) (X (X of) (X (X line) (X (X .) (X '')))))))))))) (X (X all) (X (X year) (X (X ,) (X (X energy) (X (X prices) (X (X have) (X (X skewed) (X (X the) (X (X producer) (X (X price) (X (X index) (X (X ,) (X (X which) (X (X measures) (X (X changes) (X (X in) (X (X the) (X (X prices) (X (X producers) (X (X receive) (X (X for) (X (X goods) (X .))))))))))))))))))))))) (X (X inflation) (X (X unquestionably) (X (X has) (X (X fallen) (X (X back) (X (X from) (X (X its) (X (X torrid) (X (X pace) (X (X last) (X (X winter) (X (X ,) (X (X when) (X (X a) (X (X steep) (X (X run-up) (X (X in) (X (X world) (X (X oil) (X (X prices) (X (X sent) (X (X the) (X (X index) (X (X surging) (X (X at) (X (X double-digit) (X (X annual) (X (X rates) (X .))))))))))))))))))))))))))))) (X (X energy) (X (X prices) (X (X then) (X (X plummeted) (X (X through) (X (X the) (X (X summer) (X (X ,) (X (X causing) (X (X the) (X (X index) (X (X to) (X (X decline) (X (X for) (X (X three) (X (X consecutive) (X (X months) (X .)))))))))))))))))) (X (X overall) (X (X ,) (X (X the) (X (X index) (X (X has) (X (X climbed) (X (X at) (X (X a) (X (X 5.1) (X (X %) (X (X compound) (X (X annual) (X (X rate) (X (X since) (X (X the) (X (X start) (X (X of) (X (X the) (X (X year) (X (X ,) (X (X the) (X (X Labor) (X (X Department) (X (X said) (X .))))))))))))))))))))))))) (X (X while) (X (X far) (X (X more) (X (X restrained) (X (X than) (X (X the) (X (X pace) (X (X at) (X (X the) (X (X beginning) (X (X of) (X (X the) (X (X year) (X (X ,) (X (X that) (X (X is) (X (X still) (X (X a) (X (X steeper) (X (X rise) (X (X than) (X (X the) (X (X 4.0) (X (X %) (X (X increase) (X (X for) (X (X all) (X (X of) (X (X 1988) (X .)))))))))))))))))))))))))))))) (X (X moreover) (X (X ,) (X (X this) (X (X year) (X (X 's) (X (X good) (X (X inflation) (X (X news) (X (X may) (X (X have) (X (X ended) (X (X last) (X (X month) (X (X ,) (X (X when) (X (X energy) (X (X prices) (X (X zoomed) (X (X up) (X (X 6.5) (X (X %) (X (X after) (X (X plunging) (X (X 7.3) (X (X %) (X (X in) (X (X August) (X .)))))))))))))))))))))))))))) (X (X some) (X (X analysts) (X (X expect) (X (X oil) (X (X prices) (X (X to) (X (X remain) (X (X relatively) (X (X stable) (X (X in) (X (X the) (X (X months) (X (X ahead) (X (X ,) (X (X leaving) (X (X the) (X (X future) (X (X pace) (X (X of) (X (X inflation) (X (X uncertain) (X .)))))))))))))))))))))) (X (X analysts) (X (X had) (X (X expected) (X (X that) (X (X the) (X (X climb) (X (X in) (X (X oil) (X (X prices) (X (X last) (X (X month) (X (X would) (X (X lead) (X (X to) (X (X a) (X (X substantial) (X (X rise) (X (X in) (X (X the) (X (X producer) (X (X price) (X (X index) (X (X ,) (X (X but) (X (X the) (X (X 0.9) (X (X %) (X (X climb) (X (X was) (X (X higher) (X (X than) (X (X most) (X (X anticipated) (X .)))))))))))))))))))))))))))))))))) (X (X ``) (X (X I) (X (X think) (X (X the) (X (X resurgence) (X (X -LCB-) (X (X in) (X (X inflation) (X (X -RCB-) (X (X is) (X (X going) (X (X to) (X (X continue) (X (X for) (X (X a) (X (X few) (X (X months) (X (X ,) (X (X '') (X (X said) (X (X John) (X (X Mueller) (X (X ,) (X (X chief) (X (X economist) (X (X at) (X (X Bell) (X (X Mueller) (X (X Cannon) (X (X ,) (X (X a) (X (X Washington) (X (X economic) (X (X forecasting) (X (X firm) (X .)))))))))))))))))))))))))))))))))))) (X (X he) (X (X predicted) (X (X that) (X (X inflation) (X (X will) (X (X moderate) (X (X next) (X (X year) (X (X ,) (X (X saying) (X (X that) (X (X credit) (X (X conditions) (X (X are) (X (X fairly) (X (X tight) (X (X world-wide) (X .)))))))))))))))))) (X (X but) (X (X Dirk) (X (X Van) (X (X Dongen) (X (X ,) (X (X president) (X (X of) (X (X the) (X (X National) (X (X Association) (X (X of) (X (X Wholesaler-Distributors) (X (X ,) (X (X said) (X (X that) (X (X last) (X (X month) (X (X 's) (X (X rise) (X (X ``) (X (X is) (X (X n't) (X (X as) (X (X bad) (X (X an) (X (X omen) (X (X '') (X (X as) (X (X the) (X (X 0.9) (X (X %) (X (X figure) (X (X suggests) (X .)))))))))))))))))))))))))))))))))) (X (X ``) (X (X If) (X (X you) (X (X examine) (X (X the) (X (X data) (X (X carefully) (X (X ,) (X (X the) (X (X increase) (X (X is) (X (X concentrated) (X (X in) (X (X energy) (X (X and) (X (X motor) (X (X vehicle) (X (X prices) (X (X ,) (X (X rather) (X (X than) (X (X being) (X (X a) (X (X broad-based) (X (X advance) (X (X in) (X (X the) (X (X prices) (X (X of) (X (X consumer) (X (X and) (X (X industrial) (X (X goods) (X (X ,) (X (X '') (X (X he) (X (X explained) (X .)))))))))))))))))))))))))))))))))))))) (X (X passenger) (X (X car) (X (X prices) (X (X jumped) (X (X 3.8) (X (X %) (X (X in) (X (X September) (X (X ,) (X (X after) (X (X climbing) (X (X 0.5) (X (X %) (X (X in) (X (X August) (X (X and) (X (X declining) (X (X in) (X (X the) (X (X late) (X (X spring) (X (X and) (X (X summer) (X .)))))))))))))))))))))))) (X (X many) (X (X analysts) (X (X said) (X (X the) (X (X September) (X (X increase) (X (X was) (X (X a) (X (X one-time) (X (X event) (X (X ,) (X (X coming) (X (X as) (X (X dealers) (X (X introduced) (X (X their) (X (X 1990) (X (X models) (X .))))))))))))))))))) (X (X although) (X (X all) (X (X the) (X (X price) (X (X data) (X (X were) (X (X adjusted) (X (X for) (X (X normal) (X (X seasonal) (X (X fluctuations) (X (X ,) (X (X car) (X (X prices) (X (X rose) (X (X beyond) (X (X the) (X (X customary) (X (X autumn) (X (X increase) (X .))))))))))))))))))))) (X (X prices) (X (X for) (X (X capital) (X (X equipment) (X (X rose) (X (X a) (X (X hefty) (X (X 1.1) (X (X %) (X (X in) (X (X September) (X (X ,) (X (X while) (X (X prices) (X (X for) (X (X home) (X (X electronic) (X (X equipment) (X (X fell) (X (X 1.1) (X (X %) (X .)))))))))))))))))))))) (X (X food) (X (X prices) (X (X declined) (X (X 0.6) (X (X %) (X (X ,) (X (X after) (X (X climbing) (X (X 0.3) (X (X %) (X (X in) (X (X August) (X .))))))))))))) (X (X meanwhile) (X (X ,) (X (X the) (X (X retail) (X (X sales) (X (X report) (X (X showed) (X (X that) (X (X car) (X (X sales) (X (X rose) (X (X 0.8) (X (X %) (X (X in) (X (X September) (X (X to) (X (X $) (X (X 32.82) (X (X billion) (X .)))))))))))))))))))) (X (X but) (X (X at) (X (X least) (X (X part) (X (X of) (X (X the) (X (X increase) (X (X could) (X (X have) (X (X come) (X (X from) (X (X higher) (X (X prices) (X (X ,) (X (X analysts) (X (X said) (X .))))))))))))))))) (X (X sales) (X (X at) (X (X general) (X (X merchandise) (X (X stores) (X (X rose) (X (X 1.7) (X (X %) (X (X after) (X (X declining) (X (X 0.6) (X (X %) (X (X in) (X (X August) (X (X ,) (X (X while) (X (X sales) (X (X of) (X (X building) (X (X materials) (X (X fell) (X (X 1.8) (X (X %) (X (X after) (X (X rising) (X (X 1.7) (X (X %) (X .)))))))))))))))))))))))))))) (X (X producer) (X (X prices) (X (X for) (X (X intermediate) (X (X goods) (X (X grew) (X (X 0.4) (X (X %) (X (X in) (X (X September) (X (X ,) (X (X after) (X (X dropping) (X (X for) (X (X three) (X (X consecutive) (X (X months) (X .)))))))))))))))))) (X (X prices) (X (X for) (X (X crude) (X (X goods) (X (X ,) (X (X an) (X (X array) (X (X of) (X (X raw) (X (X materials) (X (X ,) (X (X jumped) (X (X 1.1) (X (X %) (X (X after) (X (X declining) (X (X 1.9) (X (X %) (X (X in) (X (X August) (X (X and) (X (X edging) (X (X up) (X (X 0.2) (X (X %) (X (X in) (X (X July) (X .)))))))))))))))))))))))))))) (X (X here) (X (X are) (X (X the) (X (X Labor) (X (X Department) (X (X 's) (X (X producer) (X (X price) (X (X indexes) (X (X -LRB-) (X (X 1982) (X (X =) (X (X 100) (X (X -RRB-) (X (X for) (X (X September) (X (X ,) (X (X before) (X (X seasonal) (X (X adjustment) (X (X ,) (X (X and) (X (X the) (X (X percentage) (X (X changes) (X (X from) (X (X September) (X (X ,) (X (X 1988) (X .)))))))))))))))))))))))))))))) (X (X cityfed) (X (X Financial) (X (X Corp.) (X (X said) (X (X it) (X (X expects) (X (X to) (X (X report) (X (X a) (X (X loss) (X (X of) (X (X at) (X (X least) (X (X $) (X (X 125) (X (X million) (X (X to) (X (X $) (X (X 150) (X (X million) (X (X for) (X (X the) (X (X third) (X (X quarter) (X .))))))))))))))))))))))))) (X (X in) (X (X the) (X (X year-earlier) (X (X period) (X (X ,) (X (X CityFed) (X (X had) (X (X net) (X (X income) (X (X of) (X (X $) (X (X 485,000) (X (X ,) (X (X but) (X (X no) (X (X per-share) (X (X earnings) (X .)))))))))))))))))) (X (X cityfed) (X (X 's) (X (X president) (X (X and) (X (X chief) (X (X executive) (X (X officer) (X (X ,) (X (X John) (X (X Atherton) (X (X ,) (X (X said) (X (X the) (X (X loss) (X (X stems) (X (X from) (X (X several) (X (X factors) (X .))))))))))))))))))) (X (X he) (X (X said) (X (X nonperforming) (X (X assets) (X (X rose) (X (X to) (X (X slightly) (X (X more) (X (X than) (X (X $) (X (X 700) (X (X million) (X (X from) (X (X $) (X (X 516) (X (X million) (X (X between) (X (X June) (X (X and) (X (X September) (X .))))))))))))))))))))) (X (X approximately) (X (X 85) (X (X %) (X (X of) (X (X the) (X (X total) (X (X consisted) (X (X of) (X (X nonperforming) (X (X commercial) (X (X real) (X (X estate) (X (X assets) (X .)))))))))))))) (X (X accordingly) (X (X ,) (X (X CityFed) (X (X estimated) (X (X that) (X (X it) (X (X will) (X (X provide) (X (X between) (X (X $) (X (X 85) (X (X million) (X (X and) (X (X $) (X (X 110) (X (X million) (X (X for) (X (X credit) (X (X losses) (X (X in) (X (X the) (X (X third) (X (X quarter) (X .)))))))))))))))))))))))) (X (X cityfed) (X (X added) (X (X that) (X (X significant) (X (X additional) (X (X loan-loss) (X (X provisions) (X (X may) (X (X be) (X (X required) (X (X by) (X (X federal) (X (X regulators) (X (X as) (X (X part) (X (X of) (X (X the) (X (X current) (X (X annual) (X (X examination) (X (X of) (X (X City) (X (X Federal) (X (X Savings) (X (X Bank) (X (X ,) (X (X CityFed) (X (X 's) (X (X primary) (X (X subsidiary) (X (X ,) (X (X based) (X (X in) (X (X Somerset) (X (X ,) (X (X N.J) (X .))))))))))))))))))))))))))))))))))))) (X (X city) (X (X Federal) (X (X operates) (X (X 105) (X (X banking) (X (X offices) (X (X in) (X (X New) (X (X Jersey) (X (X and) (X (X Florida) (X .)))))))))))) (X (X mr.) (X (X Atherton) (X (X said) (X (X CityFed) (X (X will) (X (X also) (X (X mark) (X (X its) (X (X portfolio) (X (X of) (X (X high-yield) (X (X corporate) (X (X bonds) (X (X to) (X (X market) (X (X as) (X (X a) (X (X result) (X (X of) (X (X federal) (X (X legislation) (X (X requiring) (X (X that) (X (X savings) (X (X institutions) (X (X divest) (X (X themselves) (X (X of) (X (X such) (X (X bonds) (X .))))))))))))))))))))))))))))))) (X (X that) (X (X action) (X (X ,) (X (X CityFed) (X (X said) (X (X ,) (X (X will) (X (X result) (X (X in) (X (X a) (X (X charge) (X (X against) (X (X third-quarter) (X (X results) (X (X of) (X (X approximately) (X (X $) (X (X 30) (X (X million) (X .)))))))))))))))))))) (X (X cityfed) (X (X also) (X (X said) (X (X it) (X (X expects) (X (X to) (X (X shed) (X (X its) (X (X remaining) (X (X mortgage) (X (X loan) (X (X origination) (X (X operations) (X (X outside) (X (X its) (X (X principal) (X (X markets) (X (X in) (X (X New) (X (X Jersey) (X (X and) (X (X Florida) (X (X and) (X (X ,) (X (X as) (X (X a) (X (X result) (X (X ,) (X (X is) (X (X taking) (X (X a) (X (X charge) (X (X for) (X (X discontinued) (X (X operations) (X .)))))))))))))))))))))))))))))))))))) (X (X all) (X (X these) (X (X actions) (X (X ,) (X (X Mr.) (X (X Atherton) (X (X said) (X (X ,) (X (X will) (X (X result) (X (X in) (X (X a) (X (X loss) (X (X of) (X (X $) (X (X 125) (X (X million) (X (X to) (X (X $) (X (X 150) (X (X million) (X (X for) (X (X the) (X (X third) (X (X quarter) (X .)))))))))))))))))))))))))) (X (X he) (X (X added) (X (X ,) (X (X however) (X (X :) (X (X ``) (X (X Depending) (X (X on) (X (X the) (X (X resolution) (X (X of) (X (X certain) (X (X accounting) (X (X issues) (X (X relating) (X (X to) (X (X mortgages) (X (X servicing) (X (X and) (X (X the) (X (X outcome) (X (X of) (X (X the) (X (X annual) (X (X examination) (X (X of) (X (X City) (X (X Federal) (X (X currently) (X (X in) (X (X progress) (X (X with) (X (X respect) (X (X to) (X (X the) (X (X appropriate) (X (X level) (X (X of) (X (X loan) (X (X loss) (X (X reserves) (X (X ,) (X (X the) (X (X total) (X (X loss) (X (X for) (X (X the) (X (X quarter) (X (X could) (X (X significantly) (X (X exceed) (X (X this) (X (X range) (X .)))))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X centrust) (X (X Savings) (X (X Bank) (X (X said) (X (X federal) (X (X thrift) (X (X regulators) (X (X ordered) (X (X it) (X (X to) (X (X suspend) (X (X dividend) (X (X payments) (X (X on) (X (X its) (X (X two) (X (X classes) (X (X of) (X (X preferred) (X (X stock) (X (X ,) (X (X indicating) (X (X that) (X (X regulators) (X (X ') (X (X concerns) (X (X about) (X (X the) (X (X troubled) (X (X institution) (X (X have) (X (X heightened) (X .))))))))))))))))))))))))))))))))) (X (X in) (X (X a) (X (X statement) (X (X ,) (X (X Miami-based) (X (X CenTrust) (X (X said) (X (X the) (X (X regulators) (X (X cited) (X (X the) (X (X thrift) (X (X 's) (X (X operating) (X (X losses) (X (X and) (X (X ``) (X (X apparent) (X (X losses) (X (X '') (X (X in) (X (X its) (X (X junk-bond) (X (X portfolio) (X (X in) (X (X ordering) (X (X the) (X (X suspension) (X (X of) (X (X the) (X (X dividends) (X .)))))))))))))))))))))))))))))))) (X (X regulators) (X (X also) (X (X ordered) (X (X CenTrust) (X (X to) (X (X stop) (X (X buying) (X (X back) (X (X the) (X (X preferred) (X (X stock) (X .)))))))))))) (X (X david) (X (X L.) (X (X Paul) (X (X ,) (X (X chairman) (X (X and) (X (X chief) (X (X executive) (X (X officer) (X (X ,) (X (X criticized) (X (X the) (X (X federal) (X (X Office) (X (X of) (X (X Thrift) (X (X Supervision) (X (X ,) (X (X which) (X (X issued) (X (X the) (X (X directive) (X (X ,) (X (X saying) (X (X it) (X (X was) (X (X ``) (X (X inappropriate) (X (X '') (X (X and) (X (X based) (X (X on) (X (X ``) (X (X insufficient) (X (X '') (X (X reasons) (X .))))))))))))))))))))))))))))))))))))) (X (X he) (X (X said) (X (X the) (X (X thrift) (X (X will) (X (X try) (X (X to) (X (X get) (X (X regulators) (X (X to) (X (X reverse) (X (X the) (X (X decision) (X .)))))))))))))) (X (X the) (X (X suspension) (X (X of) (X (X a) (X (X preferred) (X (X stock) (X (X dividend) (X (X is) (X (X a) (X (X serious) (X (X step) (X (X that) (X (X signals) (X (X that) (X (X regulators) (X (X have) (X (X deep) (X (X concerns) (X (X about) (X (X an) (X (X institution) (X (X 's) (X (X health) (X .)))))))))))))))))))))))) (X (X in) (X (X March) (X (X ,) (X (X regulators) (X (X labeled) (X (X CenTrust) (X (X a) (X (X ``) (X (X troubled) (X (X institution) (X (X ,) (X (X '') (X (X largely) (X (X because) (X (X of) (X (X its) (X (X big) (X (X junk-bond) (X (X holdings) (X (X and) (X (X its) (X (X operating) (X (X losses) (X .)))))))))))))))))))))))) (X (X in) (X (X the) (X (X same) (X (X month) (X (X ,) (X (X the) (X (X Office) (X (X of) (X (X Thrift) (X (X Supervision) (X (X ordered) (X (X the) (X (X institution) (X (X to) (X (X stop) (X (X paying) (X (X common) (X (X stock) (X (X dividends) (X (X until) (X (X its) (X (X operations) (X (X were) (X (X on) (X (X track) (X .)))))))))))))))))))))))))) (X (X for) (X (X the) (X (X nine) (X (X months) (X (X ended) (X (X June) (X (X 30) (X (X ,) (X (X CenTrust) (X (X had) (X (X a) (X (X net) (X (X loss) (X (X of) (X (X $) (X (X 21.3) (X (X million) (X (X ,) (X (X compared) (X (X with) (X (X year-earlier) (X (X net) (X (X income) (X (X of) (X (X $) (X (X 52.8) (X (X million) (X .)))))))))))))))))))))))))))) (X (X centrust) (X (X ,) (X (X which) (X (X is) (X (X Florida) (X (X 's) (X (X largest) (X (X thrift) (X (X ,) (X (X holds) (X (X one) (X (X of) (X (X the) (X (X largest) (X (X junk-bond) (X (X portfolios) (X (X of) (X (X any) (X (X thrift) (X (X in) (X (X the) (X (X nation) (X .))))))))))))))))))))))) (X (X since) (X (X April) (X (X ,) (X (X it) (X (X has) (X (X pared) (X (X its) (X (X high-yield) (X (X bond) (X (X holdings) (X (X to) (X (X about) (X (X $) (X (X 890) (X (X million) (X (X from) (X (X $) (X (X 1.35) (X (X billion) (X .)))))))))))))))))))) (X (X mr.) (X (X Paul) (X (X said) (X (X only) (X (X about) (X (X $) (X (X 150) (X (X million) (X (X of) (X (X the) (X (X current) (X (X holdings) (X (X are) (X (X tradeable) (X (X securities) (X (X registered) (X (X with) (X (X the) (X (X Securities) (X (X and) (X (X Exchange) (X (X Commission) (X .))))))))))))))))))))))) (X (X the) (X (X remainder) (X (X ,) (X (X he) (X (X said) (X (X ,) (X (X are) (X (X commercial) (X (X loan) (X (X participations) (X (X ,) (X (X or) (X (X private) (X (X placements) (X (X ,) (X (X that) (X (X are) (X (X n't) (X (X filed) (X (X with) (X (X the) (X (X SEC) (X (X and) (X (X do) (X (X n't) (X (X have) (X (X a) (X (X ready) (X (X market) (X .)))))))))))))))))))))))))))))) (X (X centrust) (X (X and) (X (X regulators) (X (X have) (X (X been) (X (X in) (X (X a) (X (X dispute) (X (X over) (X (X market) (X (X valuations) (X (X for) (X (X the) (X (X junk) (X (X bonds) (X .)))))))))))))))) (X (X the) (X (X Office) (X (X of) (X (X Thrift) (X (X Supervision) (X (X has) (X (X been) (X (X hounding) (X (X CenTrust) (X (X to) (X (X provide) (X (X current) (X (X market) (X (X values) (X (X for) (X (X its) (X (X holdings) (X (X ,) (X (X but) (X (X CenTrust) (X (X has) (X (X said) (X (X it) (X (X ca) (X (X n't) (X (X easily) (X (X obtain) (X (X such) (X (X values) (X (X because) (X (X of) (X (X the) (X (X relative) (X (X illiquidity) (X (X of) (X (X the) (X (X bonds) (X (X and) (X (X lack) (X (X of) (X (X a) (X (X ready) (X (X market) (X .)))))))))))))))))))))))))))))))))))))))))))) (X (X regulators) (X (X have) (X (X become) (X (X increasingly) (X (X antsy) (X (X about) (X (X CenTrust) (X (X 's) (X (X and) (X (X other) (X (X thrifts) (X (X ') (X (X junk-bond) (X (X holdings) (X (X in) (X (X light) (X (X of) (X (X the) (X (X recent) (X (X federal) (X (X thrift) (X (X bailout) (X (X legislation) (X (X and) (X (X the) (X (X recent) (X (X deep) (X (X decline) (X (X in) (X (X the) (X (X junk-bond) (X (X market) (X .))))))))))))))))))))))))))))))))) (X (X the) (X (X legislation) (X (X requires) (X (X thrifts) (X (X to) (X (X divest) (X (X themselves) (X (X of) (X (X junk) (X (X bonds) (X (X in) (X (X the) (X (X new) (X (X ,) (X (X somber) (X (X regulatory) (X (X climate) (X .)))))))))))))))))) (X (X in) (X (X American) (X (X Stock) (X (X Exchange) (X (X composite) (X (X trading) (X (X Friday) (X (X ,) (X (X CenTrust) (X (X common) (X (X shares) (X (X closed) (X (X at) (X (X $) (X (X 3) (X (X ,) (X (X down) (X (X 12.5) (X (X cents) (X .)))))))))))))))))))) (X (X in) (X (X a) (X (X statement) (X (X Friday) (X (X ,) (X (X Mr.) (X (X Paul) (X (X challenged) (X (X the) (X (X regulators) (X (X ') (X (X decision) (X (X ,) (X (X saying) (X (X the) (X (X thrift) (X (X 's) (X (X operating) (X (X losses) (X (X and) (X (X ``) (X (X apparent) (X (X '') (X (X junk-bond) (X (X losses) (X (X ``) (X (X have) (X (X been) (X (X substantially) (X (X offset) (X (X by) (X (X gains) (X (X in) (X (X other) (X (X activities) (X (X of) (X (X the) (X (X bank) (X (X .) (X '')))))))))))))))))))))))))))))))))))))))) (X (X he) (X (X also) (X (X said) (X (X substantial) (X (X reserves) (X (X have) (X (X been) (X (X set) (X (X aside) (X (X for) (X (X possible) (X (X losses) (X (X from) (X (X the) (X (X junk) (X (X bonds) (X .))))))))))))))))) (X (X in) (X (X the) (X (X third) (X (X quarter) (X (X ,) (X (X for) (X (X instance) (X (X ,) (X (X CenTrust) (X (X added) (X (X $) (X (X 22.5) (X (X million) (X (X to) (X (X its) (X (X general) (X (X reserves) (X .)))))))))))))))))) (X (X mr.) (X (X Paul) (X (X said) (X (X the) (X (X regulators) (X (X should) (X (X instead) (X (X move) (X (X ahead) (X (X with) (X (X approving) (X (X CenTrust) (X (X 's) (X (X request) (X (X to) (X (X sell) (X (X 63) (X (X of) (X (X its) (X (X 71) (X (X branches) (X (X to) (X (X Great) (X (X Western) (X (X Bank) (X (X ,) (X (X a) (X (X unit) (X (X of) (X (X Great) (X (X Western) (X (X Financial) (X (X Corp.) (X (X based) (X (X in) (X (X Beverly) (X (X Hills) (X (X ,) (X (X Calif) (X .)))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X branch) (X (X sale) (X (X is) (X (X the) (X (X centerpiece) (X (X of) (X (X CenTrust) (X (X 's) (X (X strategy) (X (X to) (X (X transform) (X (X itself) (X (X into) (X (X a) (X (X traditional) (X (X S&L) (X (X from) (X (X a) (X (X high-flying) (X (X institution) (X (X that) (X (X relied) (X (X heavily) (X (X on) (X (X securities) (X (X trading) (X (X for) (X (X profits) (X (X ,) (X (X according) (X (X to) (X (X Mr.) (X (X Paul) (X .))))))))))))))))))))))))))))))))))) (X (X most) (X (X analysts) (X (X and) (X (X thrift) (X (X executives) (X (X had) (X (X expected) (X (X a) (X (X decision) (X (X on) (X (X the) (X (X proposed) (X (X transaction) (X (X ,) (X (X which) (X (X was) (X (X announced) (X (X in) (X (X July) (X (X ,) (X (X long) (X (X before) (X (X now) (X .)))))))))))))))))))))))) (X (X many) (X (X interpret) (X (X the) (X (X delay) (X (X as) (X (X an) (X (X indication) (X (X that) (X (X regulators) (X (X are) (X (X skeptical) (X (X about) (X (X the) (X (X proposal) (X .))))))))))))))) (X (X branches) (X (X and) (X (X deposits) (X (X can) (X (X be) (X (X sold) (X (X at) (X (X a) (X (X premium) (X (X in) (X (X the) (X (X event) (X (X federal) (X (X regulators) (X (X take) (X (X over) (X (X an) (X (X institution) (X .))))))))))))))))))) (X (X centrust) (X (X ,) (X (X however) (X (X ,) (X (X touts) (X (X the) (X (X branch) (X (X sale) (X (X ,) (X (X saying) (X (X it) (X (X would) (X (X bring) (X (X in) (X (X $) (X (X 150) (X (X million) (X (X and) (X (X reduce) (X (X the) (X (X thrift) (X (X 's) (X (X assets) (X (X to) (X (X $) (X (X 6.7) (X (X billion) (X (X from) (X (X $) (X (X 9) (X (X billion) (X .)))))))))))))))))))))))))))))))) (X (X it) (X (X said) (X (X the) (X (X sale) (X (X would) (X (X give) (X (X it) (X (X positive) (X (X tangible) (X (X capital) (X (X of) (X (X $) (X (X 82) (X (X million) (X (X ,) (X (X or) (X (X about) (X (X 1.2) (X (X %) (X (X of) (X (X assets) (X (X ,) (X (X from) (X (X a) (X (X negative) (X (X $) (X (X 33) (X (X million) (X (X as) (X (X of) (X (X Sept.) (X (X 30) (X (X ,) (X (X thus) (X (X bringing) (X (X CenTrust) (X (X close) (X (X to) (X (X regulatory) (X (X standards) (X .))))))))))))))))))))))))))))))))))))))))) (X (X centrust) (X (X said) (X (X the) (X (X branch) (X (X sale) (X (X would) (X (X also) (X (X reduce) (X (X the) (X (X company) (X (X 's) (X (X large) (X (X amount) (X (X of) (X (X good) (X (X will) (X (X by) (X (X about) (X (X $) (X (X 180) (X (X million) (X .)))))))))))))))))))))) (X (X critics) (X (X ,) (X (X however) (X (X ,) (X (X say) (X (X the) (X (X branch) (X (X sale) (X (X will) (X (X make) (X (X CenTrust) (X (X more) (X (X dependent) (X (X than) (X (X ever) (X (X on) (X (X brokered) (X (X deposits) (X (X and) (X (X junk) (X (X bonds) (X .)))))))))))))))))))))) (X (X mr.) (X (X Paul) (X (X counters) (X (X that) (X (X he) (X (X intends) (X (X to) (X (X further) (X (X pare) (X (X the) (X (X size) (X (X of) (X (X CenTrust) (X (X by) (X (X not) (X (X renewing) (X (X more) (X (X than) (X (X $) (X (X 1) (X (X billion) (X (X of) (X (X brokered) (X (X certificates) (X (X of) (X (X deposit) (X (X when) (X (X they) (X (X come) (X (X due) (X .))))))))))))))))))))))))))))))) (X (X the) (X (X thrift) (X (X is) (X (X also) (X (X working) (X (X to) (X (X unload) (X (X its) (X (X junk-bond) (X (X portfolio) (X (X by) (X (X continuing) (X (X to) (X (X sell) (X (X off) (X (X the) (X (X bonds) (X (X ,) (X (X and) (X (X it) (X (X plans) (X (X to) (X (X eventually) (X (X place) (X (X some) (X (X of) (X (X them) (X (X in) (X (X a) (X (X separate) (X (X affiliate) (X (X ,) (X (X as) (X (X required) (X (X under) (X (X the) (X (X new) (X (X thrift) (X (X law) (X .)))))))))))))))))))))))))))))))))))))))) (X (X on) (X (X a) (X (X recent) (X (X Saturday) (X (X night) (X (X ,) (X (X in) (X (X the) (X (X midst) (X (X of) (X (X West) (X (X Germany) (X (X 's) (X (X most) (X (X popular) (X (X prime-time) (X (X show) (X (X ,) (X (X a) (X (X contestant) (X (X bet) (X (X the) (X (X host) (X (X that) (X (X she) (X (X could) (X (X name) (X (X any) (X (X of) (X (X 100) (X (X different) (X (X cheeses) (X (X after) (X (X just) (X (X one) (X (X nibble) (X (X ,) (X (X while) (X (X blindfolded) (X .)))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X woman) (X (X won) (X (X the) (X (X bet) (X .)))))) (X (X but) (X (X perhaps) (X (X even) (X (X more) (X (X remarkable) (X (X ,) (X (X the) (X (X three-hour-show) (X (X ,) (X (X ``) (X (X Wetten) (X (X Dass) (X (X '') (X (X -LRB-) (X (X Make) (X (X a) (X (X Bet) (X (X -RRB-) (X (X ,) (X (X regularly) (X (X wins) (X (X the) (X (X top) (X (X slot) (X (X in) (X (X the) (X (X country) (X (X 's) (X (X TV) (X (X ratings) (X (X ,) (X (X sometimes) (X (X drawing) (X (X as) (X (X many) (X (X as) (X (X 50) (X (X %) (X (X of) (X (X West) (X (X German) (X (X households) (X .))))))))))))))))))))))))))))))))))))))))))) (X (X as) (X (X the) (X (X 1992) (X (X economic) (X (X integration) (X (X approaches) (X (X ,) (X (X Europe) (X (X 's) (X (X cultural) (X (X curators) (X (X have) (X (X taken) (X (X to) (X (X the) (X (X ramparts) (X (X against) (X (X American) (X (X ``) (X (X cultural) (X (X imperialism) (X (X ,) (X (X '') (X (X threatening) (X (X to) (X (X impose) (X (X quotas) (X (X against) (X (X such) (X (X pop) (X (X invaders) (X (X as) (X (X ``) (X (X Dallas) (X (X ,) (X (X '') (X (X ``) (X (X Miami) (X (X Vice) (X (X '') (X (X and) (X (X ``) (X (X L.A.) (X (X Law) (X (X .) (X '')))))))))))))))))))))))))))))))))))))))))))))) (X (X but) (X (X much) (X (X of) (X (X what) (X (X the) (X (X Europeans) (X (X want) (X (X to) (X (X protect) (X (X seems) (X (X every) (X (X bit) (X (X as) (X (X cheesy) (X (X as) (X (X what) (X (X they) (X (X are) (X (X trying) (X (X to) (X (X keep) (X (X out) (X .))))))))))))))))))))))) (X (X the) (X (X most) (X (X militant) (X (X opposition) (X (X to) (X (X American) (X (X TV) (X (X imports) (X (X has) (X (X come) (X (X from) (X (X French) (X (X television) (X (X and) (X (X movie) (X (X producers) (X (X ,) (X (X who) (X (X have) (X (X demanded) (X (X quotas) (X (X ensuring) (X (X that) (X (X a) (X (X full) (X (X 60) (X (X %) (X (X of) (X (X Europe) (X (X 's) (X (X TV) (X (X shows) (X (X be) (X (X produced) (X (X in) (X (X Europe) (X .))))))))))))))))))))))))))))))))))))) (X (X so) (X (X far) (X (X ,) (X (X the) (X (X French) (X (X have) (X (X failed) (X (X to) (X (X win) (X (X enough) (X (X broad-based) (X (X support) (X (X to) (X (X prevail) (X .))))))))))))))) (X (X a) (X (X glance) (X (X through) (X (X the) (X (X television) (X (X listings) (X (X and) (X (X a) (X (X few) (X (X twists) (X (X of) (X (X the) (X (X European) (X (X television) (X (X dial) (X (X suggest) (X (X one) (X (X reason) (X (X why) (X .)))))))))))))))))))) (X (X while) (X (X there) (X (X are) (X (X some) (X (X popular) (X (X action) (X (X and) (X (X drama) (X (X series) (X (X ,) (X (X few) (X (X boast) (X (X the) (X (X high) (X (X culture) (X (X and) (X (X classy) (X (X production) (X (X values) (X (X one) (X (X might) (X (X expect) (X .))))))))))))))))))))))) (X (X more) (X (X European) (X (X air) (X (X time) (X (X is) (X (X filled) (X (X with) (X (X low-budget) (X (X game) (X (X shows) (X (X ,) (X (X variety) (X (X hours) (X (X ,) (X (X movies) (X (X and) (X (X talk) (X (X shows) (X (X ,) (X (X many) (X (X of) (X (X which) (X (X are) (X (X authorized) (X (X knock-offs) (X (X of) (X (X their) (X (X American) (X (X counterparts) (X .)))))))))))))))))))))))))))))) (X (X one) (X (X of) (X (X France) (X (X 's) (X (X most) (X (X popular) (X (X Saturday) (X (X night) (X (X programs) (X (X features) (X (X semi-celebrities) (X (X seeking) (X (X out) (X (X their) (X (X grammar-school) (X (X classmates) (X (X for) (X (X on-air) (X (X reunions) (X .)))))))))))))))))))) (X (X a) (X (X Flemish) (X (X game) (X (X show) (X (X has) (X (X as) (X (X its) (X (X host) (X (X a) (X (X Belgian) (X (X pretending) (X (X to) (X (X be) (X (X Italian) (X .))))))))))))))) (X (X one) (X (X of) (X (X Italy) (X (X 's) (X (X favorite) (X (X shows) (X (X ,) (X (X ``) (X (X Fantastico) (X (X ,) (X (X '') (X (X a) (X (X tepid) (X (X variety) (X (X show) (X (X ,) (X (X is) (X (X so) (X (X popular) (X (X that) (X (X viewers) (X (X clamored) (X (X to) (X (X buy) (X (X a) (X (X chocolate) (X (X product) (X (X ,) (X (X ``) (X (X Cacao) (X (X Fantastico) (X (X ,) (X (X '') (X (X whose) (X (X praises) (X (X were) (X (X sung) (X (X each) (X (X week) (X (X by) (X (X dancing) (X (X showgirls) (X (X --) (X (X even) (X (X though) (X (X the) (X (X product) (X (X did) (X (X n't) (X (X exist) (X .))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X topping) (X (X the) (X (X cheese) (X (X stunt) (X (X ,) (X (X on) (X (X another) (X (X typical) (X (X evening) (X (X of) (X (X fun) (X (X on) (X (X ``) (X (X Wetten) (X (X Dass) (X (X ,) (X (X '') (X (X a) (X (X contestant) (X (X won) (X (X a) (X (X bet) (X (X with) (X (X the) (X (X show) (X (X 's) (X (X host) (X (X ,) (X (X Thomas) (X (X Gottschalk) (X (X ,) (X (X that) (X (X he) (X (X could) (X (X identify) (X (X 300) (X (X German) (X (X dialects) (X (X over) (X (X the) (X (X telephone) (X .)))))))))))))))))))))))))))))))))))))))))) (X (X a) (X (X celebrity) (X (X guest) (X (X ,) (X (X U.S.) (X (X Ambassador) (X (X to) (X (X West) (X (X Germany) (X (X Richard) (X (X Burt) (X (X ,) (X (X also) (X (X won) (X (X a) (X (X bet) (X (X that) (X (X someone) (X (X could) (X (X pile) (X (X up) (X (X $) (X (X 150) (X (X worth) (X (X of) (X (X quarters) (X (X on) (X (X a) (X (X slanted) (X (X coin) (X .))))))))))))))))))))))))))))))) (X (X mr.) (X (X Burt) (X (X nonetheless) (X (X paid) (X (X the) (X (X penalty) (X (X as) (X (X if) (X (X he) (X (X had) (X (X lost) (X (X ,) (X (X agreeing) (X (X to) (X (X spend) (X (X a) (X (X day) (X (X with) (X (X West) (X (X German) (X (X Foreign) (X (X Minister) (X (X Hans-Dietrich) (X (X Genscher) (X (X frying) (X (X and) (X (X selling) (X (X their) (X (X combined) (X (X weight) (X (X in) (X (X potato) (X (X pancakes) (X .)))))))))))))))))))))))))))))))))) (X (X if) (X (X this) (X (X seems) (X (X like) (X (X pretty) (X (X weak) (X (X stuff) (X (X around) (X (X which) (X (X to) (X (X raise) (X (X the) (X (X protectionist) (X (X barriers) (X (X ,) (X (X it) (X (X may) (X (X be) (X (X because) (X (X these) (X (X shows) (X (X need) (X (X all) (X (X the) (X (X protection) (X (X they) (X (X can) (X (X get) (X .))))))))))))))))))))))))))))) (X (X european) (X (X programs) (X (X usually) (X (X target) (X (X only) (X (X their) (X (X own) (X (X local) (X (X audience) (X (X ,) (X (X and) (X (X often) (X (X only) (X (X a) (X (X small) (X (X portion) (X (X of) (X (X that) (X .))))))))))))))))))) (X (X mega-hits) (X (X in) (X (X Germany) (X (X or) (X (X Italy) (X (X rarely) (X (X make) (X (X it) (X (X even) (X (X to) (X (X France) (X (X or) (X (X Great) (X (X Britain) (X (X ,) (X (X and) (X (X almost) (X (X never) (X (X show) (X (X up) (X (X on) (X (X U.S.) (X (X screens) (X .)))))))))))))))))))))))) (X (X attempts) (X (X to) (X (X produce) (X (X ``) (X (X pan-European) (X (X '') (X (X programs) (X (X have) (X (X generally) (X (X resulted) (X (X in) (X (X disappointment) (X .))))))))))))) (X (X one) (X (X annual) (X (X co-production) (X (X ,) (X (X the) (X (X three-hour-long) (X (X ``) (X (X Eurovision) (X (X Song) (X (X Contest) (X (X ,) (X (X '') (X (X featuring) (X (X soft-rock) (X (X songs) (X (X from) (X (X each) (X (X of) (X (X 20) (X (X European) (X (X countries) (X (X ,) (X (X has) (X (X been) (X (X described) (X (X as) (X (X the) (X (X world) (X (X 's) (X (X most) (X (X boring) (X (X TV) (X (X show) (X .)))))))))))))))))))))))))))))))))) (X (X another) (X (X ,) (X (X ``) (X (X Jeux) (X (X Sans) (X (X Frontieres) (X (X ,) (X (X '') (X (X where) (X (X villagers) (X (X from) (X (X assorted) (X (X European) (X (X countries) (X (X make) (X (X fools) (X (X of) (X (X themselves) (X (X performing) (X (X pointless) (X (X tasks) (X (X ,) (X (X is) (X (X a) (X (X hit) (X (X in) (X (X France) (X .)))))))))))))))))))))))))))) (X (X a) (X (X U.S.-made) (X (X imitation) (X (X under) (X (X the) (X (X title) (X (X ``) (X (X Almost) (X (X Anything) (X (X Goes) (X (X '') (X (X flopped) (X (X fast) (X .)))))))))))))) (X (X for) (X (X the) (X (X most) (X (X part) (X (X ,) (X (X what) (X (X 's) (X (X made) (X (X here) (X (X stays) (X (X here) (X (X ,) (X (X and) (X (X for) (X (X good) (X (X reason) (X .))))))))))))))))) (X (X the) (X (X cream) (X (X of) (X (X the) (X (X British) (X (X crop) (X (X ,) (X (X the) (X (X literary) (X (X dramas) (X (X that) (X (X are) (X (X shown) (X (X on) (X (X U.S.) (X (X public) (X (X television) (X (X as) (X (X ``) (X (X Masterpiece) (X (X Theater) (X (X ,) (X (X '') (X (X make) (X (X up) (X (X a) (X (X relatively) (X (X small) (X (X part) (X (X of) (X (X British) (X (X air) (X (X time) (X .)))))))))))))))))))))))))))))))))) (X (X most) (X (X British) (X (X programming) (X (X is) (X (X more) (X (X of) (X (X an) (X (X acquired) (X (X taste) (X .)))))))))) (X (X there) (X (X is) (X (X ,) (X (X for) (X (X instance) (X (X ,) (X (X ``) (X (X One) (X (X Man) (X (X and) (X (X His) (X (X Dog) (X (X ,) (X (X '') (X (X a) (X (X herding) (X (X contest) (X (X among) (X (X sheep) (X (X dogs) (X .))))))))))))))))))))) (X (X also) (X (X riveting) (X (X to) (X (X the) (X (X British) (X (X are) (X (X hours) (X (X of) (X (X dart-throwing) (X (X championships) (X (X ,) (X (X even) (X (X more) (X (X hours) (X (X of) (X (X lawn) (X (X bowling) (X (X contests) (X (X and) (X (X still) (X (X more) (X (X hours) (X (X of) (X (X snooker) (X (X marathons) (X .)))))))))))))))))))))))))) (X (X european) (X (X drama) (X (X has) (X (X had) (X (X better) (X (X ,) (X (X though) (X (X still) (X (X mixed) (X (X ,) (X (X fortunes) (X .)))))))))))) (X (X the) (X (X most) (X (X popular) (X (X such) (X (X shows) (X (X focus) (X (X on) (X (X narrow) (X (X national) (X (X concerns) (X .))))))))))) (X (X a) (X (X French) (X (X knock-off) (X (X of) (X (X ``) (X (X Dallas) (X (X ,) (X (X '') (X (X called) (X (X ``) (X (X Chateauvallon) (X (X '') (X (X and) (X (X set) (X (X in) (X (X a) (X (X French) (X (X vineyard) (X (X ,) (X (X had) (X (X a) (X (X good) (X (X run) (X (X in) (X (X France) (X (X ,) (X (X which) (X (X ended) (X (X after) (X (X the) (X (X female) (X (X lead) (X (X was) (X (X injured) (X (X in) (X (X a) (X (X real-life) (X (X auto) (X (X accident) (X .)))))))))))))))))))))))))))))))))))))))) (X (X ``) (X (X Schwarzwaldklinik) (X (X ,) (X (X '') (X (X -LRB-) (X (X Black) (X (X Forest) (X (X Clinic) (X (X -RRB-) (X (X ,) (X (X a) (X (X kind) (X (X of) (X (X German) (X (X ``) (X (X St) (X (X .) (X (X Elsewhere) (X (X '') (X (X set) (X (X in) (X (X a) (X (X health) (X (X spa) (X (X ,) (X (X is) (X (X popular) (X (X in) (X (X Germany) (X (X ,) (X (X and) (X (X has) (X (X spread) (X (X into) (X (X France) (X .)))))))))))))))))))))))))))))))))))) (X (X italy) (X (X 's) (X (X most) (X (X popular) (X (X series) (X (X is) (X (X a) (X (X drama) (X (X called) (X (X ``) (X (X La) (X (X Piovra) (X (X ,) (X (X '') (X (X or) (X (X ``) (X (X The) (X (X Octopus) (X (X ,) (X (X '') (X (X which) (X (X chronicles) (X (X the) (X (X fight) (X (X of) (X (X an) (X (X idealistic) (X (X young) (X (X investigator) (X (X in) (X (X Palermo) (X (X against) (X (X the) (X (X Mafia) (X .))))))))))))))))))))))))))))))))))) (X (X it) (X (X was) (X (X front-page) (X (X news) (X (X in) (X (X Italy) (X (X earlier) (X (X this) (X (X year) (X (X when) (X (X the) (X (X fictional) (X (X inspector) (X (X was) (X (X gunned) (X (X down) (X (X in) (X (X the) (X (X series) (X .)))))))))))))))))))) (X (X spain) (X (X 's) (X (X most) (X (X popular) (X (X mini-series) (X (X this) (X (X year) (X (X was) (X (X ``) (X (X Juncal) (X (X ,) (X (X '') (X (X the) (X (X story) (X (X of) (X (X an) (X (X aging) (X (X bullfighter) (X .))))))))))))))))))) (X (X ``) (X (X The) (X (X trend) (X (X is) (X (X pretty) (X (X well) (X (X established) (X (X now) (X (X that) (X (X local) (X (X programs) (X (X are) (X (X the) (X (X most) (X (X popular) (X (X ,) (X (X with) (X (X American) (X (X programs) (X (X second) (X (X ,) (X (X '') (X (X says) (X (X Brian) (X (X Wenham) (X (X ,) (X (X a) (X (X former) (X (X director) (X (X of) (X (X programs) (X (X for) (X (X the) (X (X British) (X (X Broadcasting) (X (X Corp) (X .))))))))))))))))))))))))))))))))))))) (X (X ``) (X (X Given) (X (X a) (X (X choice) (X (X ,) (X (X everybody) (X (X will) (X (X watch) (X (X a) (X (X home-produced) (X (X show) (X (X .) (X ''))))))))))))) (X (X but) (X (X frequently) (X (X there) (X (X is) (X (X n't) (X (X much) (X (X choice) (X .)))))))) (X (X thus) (X (X ,) (X (X Europe) (X (X has) (X (X begun) (X (X the) (X (X recent) (X (X crusade) (X (X to) (X (X produce) (X (X more) (X (X worthy) (X (X shows) (X (X of) (X (X its) (X (X own) (X (X ,) (X (X programs) (X (X with) (X (X broader) (X (X appeal) (X .)))))))))))))))))))))) (X (X ``) (X (X We) (X (X 've) (X (X basically) (X (X got) (X (X to) (X (X start) (X (X from) (X (X scratch) (X (X ,) (X (X to) (X (X train) (X (X writers) (X (X and) (X (X producers) (X (X to) (X (X make) (X (X shows) (X (X that) (X (X other) (X (X people) (X (X will) (X (X want) (X (X to) (X (X see) (X (X ,) (X (X '') (X (X concedes) (X (X Colin) (X (X Young) (X (X ,) (X (X head) (X (X of) (X (X Britain) (X (X 's) (X (X National) (X (X Film) (X (X Theatre) (X (X School) (X .)))))))))))))))))))))))))))))))))))))))) (X (X while) (X (X some) (X (X in) (X (X the) (X (X U.S.) (X (X contend) (X (X that) (X (X advertising) (X (X is) (X (X the) (X (X bane) (X (X of) (X (X television) (X (X ,) (X (X here) (X (X many) (X (X believe) (X (X that) (X (X its) (X (X absence) (X (X is) (X (X to) (X (X blame) (X (X for) (X (X the) (X (X European) (X (X TV) (X (X industry) (X (X 's) (X (X sluggish) (X (X development) (X .)))))))))))))))))))))))))))))))) (X (X until) (X (X recently) (X (X ,) (X (X national) (X (X governments) (X (X in) (X (X Europe) (X (X controlled) (X (X most) (X (X of) (X (X the) (X (X air) (X (X time) (X (X and) (X (X allowed) (X (X little) (X (X or) (X (X no) (X (X advertising) (X .)))))))))))))))))))) (X (X since) (X (X production) (X (X costs) (X (X were) (X (X guaranteed) (X (X ,) (X (X it) (X (X did) (X (X n't) (X (X matter) (X (X that) (X (X a) (X (X program) (X (X could) (X (X n't) (X (X be) (X (X sold) (X (X abroad) (X (X or) (X (X put) (X (X into) (X (X syndication) (X (X ,) (X (X as) (X (X most) (X (X American) (X (X programs) (X (X are) (X .))))))))))))))))))))))))))))) (X (X but) (X (X not) (X (X much) (X (X money) (X (X was) (X (X spent) (X (X on) (X (X the) (X (X shows) (X (X ,) (X (X either) (X (X ,) (X (X a) (X (X situation) (X (X that) (X (X encouraged) (X (X cheap-to-make) (X (X talk) (X (X and) (X (X game) (X (X shows) (X (X ,) (X (X while) (X (X discouraging) (X (X expensive-to-produce) (X (X dramas) (X .))))))))))))))))))))))))))) (X (X now) (X (X ,) (X (X however) (X (X ,) (X (X commercial) (X (X channels) (X (X are) (X (X coming) (X (X to) (X (X most) (X (X European) (X (X countries) (X (X ,) (X (X and) (X (X at) (X (X the) (X (X same) (X (X time) (X (X ,) (X (X satellite) (X (X and) (X (X cable) (X (X technology) (X (X is) (X (X spreading) (X (X rapidly) (X .))))))))))))))))))))))))))) (X (X just) (X (X last) (X (X week) (X (X ,) (X (X Greece) (X (X authorized) (X (X two) (X (X commercial) (X (X channels) (X (X for) (X (X the) (X (X first) (X (X time) (X (X ;) (X (X Spain) (X (X earlier) (X (X began) (X (X to) (X (X allow) (X (X commercial) (X (X television) (X (X alongside) (X (X its) (X (X state) (X (X channels) (X .)))))))))))))))))))))))))) (X (X the) (X (X result) (X (X is) (X (X a) (X (X new) (X (X and) (X (X huge) (X (X appetite) (X (X for) (X (X programming) (X .))))))))))) (X (X but) (X (X perhaps) (X (X to) (X (X the) (X (X consternation) (X (X of) (X (X those) (X (X calling) (X (X for) (X (X quotas) (X (X ,) (X (X most) (X (X of) (X (X this) (X (X void) (X (X is) (X (X likely) (X (X to) (X (X be) (X (X filled) (X (X with) (X (X the) (X (X cheapest) (X (X and) (X (X most) (X (X plentiful) (X (X programming) (X (X now) (X (X available) (X (X --) (X (X reruns) (X (X --) (X (X usually) (X (X of) (X (X shows) (X (X made) (X (X in) (X (X the) (X (X U.S.) (X .)))))))))))))))))))))))))))))))))))))))) (X (X sky) (X (X Channel) (X (X ,) (X (X a) (X (X British-based) (X (X venture) (X (X of) (X (X Australian-American) (X (X press) (X (X tycoon) (X (X Rupert) (X (X Murdoch) (X (X ,) (X (X offers) (X (X what) (X (X must) (X (X be) (X (X a) (X (X baffling) (X (X cultural) (X (X mix) (X (X to) (X (X most) (X (X of) (X (X its) (X (X audience) (X .))))))))))))))))))))))))))) (X (X the) (X (X financially) (X (X struggling) (X (X station) (X (X offers) (X (X programs) (X (X obviously) (X (X made) (X (X available) (X (X cheaply) (X (X from) (X (X its) (X (X boss) (X (X 's) (X (X other) (X (X ventures) (X .))))))))))))))))) (X (X in) (X (X a) (X (X Madrid) (X (X hotel) (X (X room) (X (X recently) (X (X ,) (X (X a) (X (X viewer) (X (X caught) (X (X the) (X (X end) (X (X of) (X (X a) (X (X badly) (X (X acted) (X (X series) (X (X about) (X (X a) (X (X fishing) (X (X boat) (X (X on) (X (X Australia) (X (X 's) (X (X Great) (X (X Barrier) (X (X Reef) (X (X ,) (X (X only) (X (X to) (X (X be) (X (X urged) (X (X by) (X (X the) (X (X British) (X (X announcer) (X (X to) (X (X ``) (X (X stay) (X (X tuned) (X (X for) (X (X the) (X (X further) (X (X adventures) (X (X of) (X (X Skippy) (X (X the) (X (X Kangaroo) (X (X .) (X '')))))))))))))))))))))))))))))))))))))))))))))))))) (X (X lisa) (X (X Grishaw-Mueller) (X (X in) (X (X Bonn) (X (X ,) (X (X Laura) (X (X Colby) (X (X in) (X (X Milan) (X (X ,) (X (X Tim) (X (X Carrington) (X (X in) (X (X London) (X (X and) (X (X Carlta) (X (X Vitzhum) (X (X in) (X (X Madrid) (X (X contributed) (X (X to) (X (X this) (X (X article) (X .)))))))))))))))))))))))) (X (X british) (X (X Aerospace) (X (X PLC) (X (X and) (X (X France) (X (X 's) (X (X Thomson-CSF) (X (X S.A.) (X (X said) (X (X they) (X (X are) (X (X nearing) (X (X an) (X (X agreement) (X (X to) (X (X merge) (X (X their) (X (X guided-missile) (X (X divisions) (X (X ,) (X (X greatly) (X (X expanding) (X (X collaboration) (X (X between) (X (X the) (X (X two) (X (X defense) (X (X contractors) (X .))))))))))))))))))))))))))))) (X (X the) (X (X 50-50) (X (X joint) (X (X venture) (X (X ,) (X (X which) (X (X may) (X (X be) (X (X dubbed) (X (X Eurodynamics) (X (X ,) (X (X would) (X (X have) (X (X combined) (X (X annual) (X (X sales) (X (X of) (X (X at) (X (X least) (X (X #) (X (X 1.4) (X (X billion) (X (X -LRB-) (X (X $) (X (X 2.17) (X (X billion) (X (X -RRB-) (X (X and) (X (X would) (X (X be) (X (X among) (X (X the) (X (X world) (X (X 's) (X (X largest) (X (X missile) (X (X makers) (X .)))))))))))))))))))))))))))))))))))))) (X (X after) (X (X two) (X (X years) (X (X of) (X (X talks) (X (X ,) (X (X plans) (X (X for) (X (X the) (X (X venture) (X (X are) (X (X sufficiently) (X (X advanced) (X (X for) (X (X the) (X (X companies) (X (X to) (X (X seek) (X (X French) (X (X and) (X (X British) (X (X government) (X (X clearance) (X .)))))))))))))))))))))))) (X (X the) (X (X companies) (X (X hope) (X (X for) (X (X a) (X (X final) (X (X agreement) (X (X by) (X (X year-end) (X .)))))))))) (X (X the) (X (X venture) (X (X would) (X (X strengthen) (X (X the) (X (X rapidly) (X (X growing) (X (X ties) (X (X between) (X (X the) (X (X two) (X (X companies) (X (X ,) (X (X and) (X (X help) (X (X make) (X (X them) (X (X a) (X (X leading) (X (X force) (X (X in) (X (X European) (X (X defense) (X (X contracting) (X .))))))))))))))))))))))))) (X (X in) (X (X recent) (X (X months) (X (X ,) (X (X a) (X (X string) (X (X of) (X (X cross-border) (X (X mergers) (X (X and) (X (X joint) (X (X ventures) (X (X have) (X (X reshaped) (X (X the) (X (X once-balkanized) (X (X world) (X (X of) (X (X European) (X (X arms) (X (X manufacture) (X .)))))))))))))))))))))) (X (X already) (X (X ,) (X (X British) (X (X Aerospace) (X (X and) (X (X French) (X (X government-controlled) (X (X Thomson-CSF) (X (X collaborate) (X (X on) (X (X a) (X (X British) (X (X missile) (X (X contract) (X (X and) (X (X on) (X (X an) (X (X air-traffic) (X (X control) (X (X radar) (X (X system) (X .)))))))))))))))))))))) (X (X just) (X (X last) (X (X week) (X (X they) (X (X announced) (X (X they) (X (X may) (X (X make) (X (X a) (X (X joint) (X (X bid) (X (X to) (X (X buy) (X (X Ferranti) (X (X International) (X (X Signal) (X (X PLC) (X (X ,) (X (X a) (X (X smaller) (X (X British) (X (X defense) (X (X contractor) (X (X rocked) (X (X by) (X (X alleged) (X (X accounting) (X (X fraud) (X (X at) (X (X a) (X (X U.S.) (X (X unit) (X .))))))))))))))))))))))))))))))))) (X (X the) (X (X sudden) (X (X romance) (X (X of) (X (X British) (X (X Aerospace) (X (X and) (X (X Thomson-CSF) (X (X --) (X (X traditionally) (X (X bitter) (X (X competitors) (X (X for) (X (X Middle) (X (X East) (X (X and) (X (X Third) (X (X World) (X (X weapons) (X (X contracts) (X (X --) (X (X is) (X (X stirring) (X (X controversy) (X (X in) (X (X Western) (X (X Europe) (X (X 's) (X (X defense) (X (X industry) (X .))))))))))))))))))))))))))))))) (X (X most) (X (X threatened) (X (X by) (X (X closer) (X (X British) (X (X Aerospace-Thomson) (X (X ties) (X (X would) (X (X be) (X (X their) (X (X respective) (X (X national) (X (X rivals) (X (X ,) (X (X including) (X (X Matra) (X (X S.A.) (X (X in) (X (X France) (X (X and) (X (X Britain) (X (X 's) (X (X General) (X (X Electric) (X (X Co.) (X (X PLC) (X .))))))))))))))))))))))))))) (X (X but) (X (X neither) (X (X Matra) (X (X nor) (X (X GEC) (X (X --) (X (X unrelated) (X (X to) (X (X Stamford) (X (X ,) (X (X Conn.-based) (X (X General) (X (X Electric) (X (X Co.) (X (X --) (X (X are) (X (X sitting) (X (X quietly) (X (X by) (X (X as) (X (X their) (X (X competitors) (X (X join) (X (X forces) (X .))))))))))))))))))))))))) (X (X yesterday) (X (X ,) (X (X a) (X (X source) (X (X close) (X (X to) (X (X GEC) (X (X confirmed) (X (X that) (X (X his) (X (X company) (X (X may) (X (X join) (X (X the) (X (X Ferranti) (X (X fight) (X (X ,) (X (X as) (X (X part) (X (X of) (X (X a) (X (X possible) (X (X consortium) (X (X that) (X (X would) (X (X bid) (X (X against) (X (X British) (X (X Aerospace) (X (X and) (X (X Thomson-CSF) (X .)))))))))))))))))))))))))))))))) (X (X companies) (X (X with) (X (X which) (X (X GEC) (X (X has) (X (X had) (X (X talks) (X (X about) (X (X a) (X (X possible) (X (X joint) (X (X Ferranti) (X (X bid) (X (X include) (X (X Matra) (X (X ,) (X (X Britain) (X (X 's) (X (X Dowty) (X (X Group) (X (X PLC) (X (X ,) (X (X West) (X (X Germany) (X (X 's) (X (X Daimler-Benz) (X (X AG) (X (X ,) (X (X and) (X (X France) (X (X 's) (X (X Dassault) (X (X group) (X .)))))))))))))))))))))))))))))))))) (X (X but) (X (X it) (X (X may) (X (X be) (X (X weeks) (X (X before) (X (X GEC) (X (X and) (X (X its) (X (X potential) (X (X partners) (X (X decide) (X (X whether) (X (X to) (X (X bid) (X (X ,) (X (X the) (X (X source) (X (X indicated) (X .)))))))))))))))))))) (X (X gec) (X (X plans) (X (X first) (X (X to) (X (X study) (X (X Ferranti) (X (X 's) (X (X financial) (X (X accounts) (X (X ,) (X (X which) (X (X auditors) (X (X recently) (X (X said) (X (X included) (X (X #) (X (X 215) (X (X million) (X (X in) (X (X fictitious) (X (X contracts) (X (X at) (X (X a) (X (X U.S.) (X (X unit) (X (X ,) (X (X International) (X (X Signal) (X (X &) (X (X Control) (X (X Group) (X (X ,) (X (X with) (X (X which) (X (X Ferranti) (X (X merged) (X (X last) (X (X year) (X .))))))))))))))))))))))))))))))))))))))) (X (X also) (X (X ,) (X (X any) (X (X GEC) (X (X bid) (X (X might) (X (X be) (X (X blocked) (X (X by) (X (X British) (X (X antitrust) (X (X regulators) (X (X ;) (X (X Ferranti) (X (X is) (X (X GEC) (X (X 's) (X (X main) (X (X competitor) (X (X on) (X (X several) (X (X key) (X (X defense-electronics) (X (X contracts) (X (X ,) (X (X and) (X (X its) (X (X purchase) (X (X by) (X (X GEC) (X (X may) (X (X heighten) (X (X British) (X (X Defense) (X (X Ministry) (X (X worries) (X (X about) (X (X concentration) (X (X in) (X (X the) (X (X country) (X (X 's) (X (X defense) (X (X industry) (X .))))))))))))))))))))))))))))))))))))))))))))) (X (X a) (X (X consortium) (X (X bid) (X (X ,) (X (X however) (X (X ,) (X (X would) (X (X diminish) (X (X GEC) (X (X 's) (X (X direct) (X (X role) (X (X in) (X (X Ferranti) (X (X and) (X (X might) (X (X consequently) (X (X appease) (X (X ministry) (X (X officials) (X .))))))))))))))))))))) (X (X a) (X (X British) (X (X Aerospace) (X (X spokeswoman) (X (X appeared) (X (X unperturbed) (X (X by) (X (X the) (X (X prospect) (X (X of) (X (X a) (X (X fight) (X (X with) (X (X GEC) (X (X for) (X (X Ferranti) (X (X :) (X (X ``) (X (X Competition) (X (X is) (X (X the) (X (X name) (X (X of) (X (X the) (X (X game) (X (X ,) (X (X '') (X (X she) (X (X said) (X .)))))))))))))))))))))))))))))) (X (X at) (X (X least) (X (X one) (X (X potential) (X (X GEC) (X (X partner) (X (X ,) (X (X Matra) (X (X ,) (X (X insists) (X (X it) (X (X is) (X (X n't) (X (X interested) (X (X in) (X (X Ferranti) (X .))))))))))))))))) (X (X ``) (X (X We) (X (X have) (X (X nothing) (X (X to) (X (X say) (X (X about) (X (X this) (X (X affair) (X (X ,) (X (X which) (X (X does) (X (X n't) (X (X concern) (X (X us) (X (X ,) (X (X '') (X (X a) (X (X Matra) (X (X official) (X (X said) (X (X Sunday) (X .))))))))))))))))))))))) (X (X the) (X (X missile) (X (X venture) (X (X ,) (X (X the) (X (X British) (X (X Aerospace) (X (X spokeswoman) (X (X said) (X (X ,) (X (X is) (X (X a) (X (X needed) (X (X response) (X (X to) (X (X the) (X (X ``) (X (X new) (X (X environment) (X (X '') (X (X in) (X (X defense) (X (X contracting) (X .)))))))))))))))))))))))) (X (X for) (X (X both) (X (X Thomson) (X (X and) (X (X British) (X (X Aerospace) (X (X ,) (X (X earnings) (X (X in) (X (X their) (X (X home) (X (X markets) (X (X have) (X (X come) (X (X under) (X (X pressure) (X (X from) (X (X increasingly) (X (X tight-fisted) (X (X defense) (X (X ministries) (X (X ;) (X (X and) (X (X Middle) (X (X East) (X (X sales) (X (X ,) (X (X a) (X (X traditional) (X (X mainstay) (X (X for) (X (X both) (X (X companies) (X (X ') (X (X exports) (X (X ,) (X (X have) (X (X been) (X (X hurt) (X (X by) (X (X five) (X (X years) (X (X of) (X (X weak) (X (X oil) (X (X prices) (X .))))))))))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X venture) (X (X 's) (X (X importance) (X (X for) (X (X Thomson) (X (X is) (X (X great) (X .))))))))) (X (X thomson) (X (X feels) (X (X the) (X (X future) (X (X of) (X (X its) (X (X defense) (X (X business) (X (X depends) (X (X on) (X (X building) (X (X cooperation) (X (X with) (X (X other) (X (X Europeans) (X .)))))))))))))))) (X (X the) (X (X European) (X (X defense) (X (X industry) (X (X is) (X (X consolidating) (X (X ;) (X (X for) (X (X instance) (X (X ,) (X (X West) (X (X Germany) (X (X 's) (X (X Siemens) (X (X AG) (X (X recently) (X (X joined) (X (X GEC) (X (X in) (X (X a) (X (X takeover) (X (X of) (X (X Britain) (X (X 's) (X (X Plessey) (X (X Co.) (X (X ,) (X (X and) (X (X Daimler-Benz) (X (X agreed) (X (X to) (X (X buy) (X (X Messerschmitt-Boelkow) (X (X Blohm) (X (X G.m.b) (X (X .) (X (X H) (X .)))))))))))))))))))))))))))))))))))))) (X (X in) (X (X missiles) (X (X ,) (X (X Thomson) (X (X is) (X (X already) (X (X overshadowed) (X (X by) (X (X British) (X (X Aerospace) (X (X and) (X (X by) (X (X its) (X (X home) (X (X rival) (X (X ,) (X (X France) (X (X 's) (X (X Aerospatiale) (X (X S.A.) (X (X ;) (X (X to) (X (X better) (X (X compete) (X (X ,) (X (X Thomson) (X (X officials) (X (X say) (X (X ,) (X (X they) (X (X need) (X (X a) (X (X partnership) (X .)))))))))))))))))))))))))))))))))) (X (X to) (X (X justify) (X (X 50-50) (X (X ownership) (X (X of) (X (X the) (X (X planned) (X (X venture) (X (X ,) (X (X Thomson) (X (X would) (X (X make) (X (X a) (X (X cash) (X (X payment) (X (X to) (X (X British) (X (X Aerospace) (X .))))))))))))))))))) (X (X annual) (X (X revenue) (X (X of) (X (X British) (X (X Aerospace) (X (X 's) (X (X missile) (X (X business) (X (X is) (X (X about) (X (X #) (X (X 950) (X (X million) (X (X ,) (X (X a) (X (X Thomson) (X (X spokesman) (X (X said) (X .))))))))))))))))))) (X (X british) (X (X Aerospace) (X (X 's) (X (X chief) (X (X missile) (X (X products) (X (X include) (X (X its) (X (X 17-year-old) (X (X family) (X (X of) (X (X Rapier) (X (X surface-to-air) (X (X missiles) (X .))))))))))))))) (X (X thomson) (X (X missile) (X (X products) (X (X ,) (X (X with) (X (X about) (X (X half) (X (X British) (X (X Aerospace) (X (X 's) (X (X annual) (X (X revenue) (X (X ,) (X (X include) (X (X the) (X (X Crotale) (X (X surface-to-air) (X (X missile) (X (X family) (X .)))))))))))))))))))) (X (X interprovincial) (X (X Pipe) (X (X Line) (X (X Co.) (X (X said) (X (X it) (X (X will) (X (X delay) (X (X a) (X (X proposed) (X (X two-step) (X (X ,) (X (X 830) (X (X million) (X (X Canadian-dollar) (X (X -LRB-) (X (X US$) (X (X 705.6) (X (X million) (X (X -RRB-) (X (X expansion) (X (X of) (X (X its) (X (X system) (X (X because) (X (X Canada) (X (X 's) (X (X output) (X (X of) (X (X crude) (X (X oil) (X (X is) (X (X shrinking) (X .)))))))))))))))))))))))))))))))))) (X (X interprovincial) (X (X ,) (X (X Canada) (X (X 's) (X (X biggest) (X (X oil) (X (X pipeline) (X (X operator) (X (X and) (X (X a) (X (X major) (X (X transporter) (X (X of) (X (X crude) (X (X to) (X (X the) (X (X U.S.) (X (X ,) (X (X said) (X (X revised) (X (X industry) (X (X forecasts) (X (X indicate) (X (X that) (X (X Canadian) (X (X oil) (X (X output) (X (X will) (X (X total) (X (X about) (X (X 1.64) (X (X million) (X (X barrels) (X (X a) (X (X day) (X (X by) (X (X 1991) (X (X ,) (X (X 8) (X (X %) (X (X lower) (X (X than) (X (X a) (X (X previous) (X (X estimate) (X .)))))))))))))))))))))))))))))))))))))))))))))) (X (X canadian) (X (X crude) (X (X production) (X (X averaged) (X (X about) (X (X 1.69) (X (X million) (X (X barrels) (X (X a) (X (X day) (X (X during) (X (X 1989) (X (X 's) (X (X first) (X (X half) (X (X ,) (X (X about) (X (X 1) (X (X %) (X (X below) (X (X the) (X (X 1988) (X (X level) (X .)))))))))))))))))))))))) (X (X ``) (X (X The) (X (X capability) (X (X of) (X (X existing) (X (X fields) (X (X to) (X (X deliver) (X (X oil) (X (X is) (X (X dropping) (X (X ,) (X (X '') (X (X and) (X (X oil) (X (X exploration) (X (X activity) (X (X is) (X (X also) (X (X down) (X (X dramatically) (X (X ,) (X (X as) (X (X many) (X (X producers) (X (X shift) (X (X their) (X (X emphasis) (X (X to) (X (X natural) (X (X gas) (X (X ,) (X (X said) (X (X Ronald) (X (X Watkins) (X (X ,) (X (X vice) (X (X president) (X (X for) (X (X government) (X (X and) (X (X industry) (X (X relations) (X (X with) (X (X Interprovincial) (X (X 's) (X (X parent) (X (X ,) (X (X Interhome) (X (X Energy) (X (X Inc) (X .)))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X mr.) (X (X Watkins) (X (X said) (X (X volume) (X (X on) (X (X Interprovincial) (X (X 's) (X (X system) (X (X is) (X (X down) (X (X about) (X (X 2) (X (X %) (X (X since) (X (X January) (X (X and) (X (X is) (X (X expected) (X (X to) (X (X fall) (X (X further) (X (X ,) (X (X making) (X (X expansion) (X (X unnecessary) (X (X until) (X (X perhaps) (X (X the) (X (X mid-1990s) (X .)))))))))))))))))))))))))))))) (X (X ``) (X (X There) (X (X has) (X (X been) (X (X a) (X (X swing) (X (X of) (X (X the) (X (X pendulum) (X (X back) (X (X to) (X (X the) (X (X gas) (X (X side) (X (X ,) (X (X '') (X (X he) (X (X said) (X .))))))))))))))))))) (X (X many) (X (X of) (X (X Canada) (X (X 's) (X (X oil) (X (X and) (X (X gas) (X (X producers) (X (X say) (X (X the) (X (X outlook) (X (X for) (X (X natural) (X (X gas) (X (X is) (X (X better) (X (X than) (X (X it) (X (X is) (X (X for) (X (X oil) (X (X ,) (X (X and) (X (X have) (X (X shifted) (X (X their) (X (X exploration) (X (X and) (X (X development) (X (X budgets) (X (X accordingly) (X .)))))))))))))))))))))))))))))))) (X (X the) (X (X number) (X (X of) (X (X active) (X (X drilling) (X (X rigs) (X (X in) (X (X Canada) (X (X is) (X (X down) (X (X 30) (X (X %) (X (X from) (X (X a) (X (X year) (X (X ago) (X (X ,) (X (X and) (X (X the) (X (X number) (X (X of) (X (X completed) (X (X oil) (X (X wells) (X (X is) (X (X ``) (X (X down) (X (X more) (X (X than) (X (X that) (X (X ,) (X (X due) (X (X to) (X (X the) (X (X increasing) (X (X focus) (X (X on) (X (X gas) (X (X exploration) (X (X ,) (X (X '') (X (X said) (X (X Robert) (X (X Feick) (X (X ,) (X (X manager) (X (X of) (X (X crude) (X (X oil) (X (X with) (X (X Calgary) (X (X 's) (X (X Independent) (X (X Petroleum) (X (X Association) (X (X of) (X (X Canada) (X (X ,) (X (X an) (X (X industry) (X (X group) (X .)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X mr.) (X (X Watkins) (X (X said) (X (X the) (X (X main) (X (X reason) (X (X for) (X (X the) (X (X production) (X (X decline) (X (X is) (X (X shrinking) (X (X output) (X (X of) (X (X light) (X (X crude) (X (X from) (X (X mature) (X (X ,) (X (X conventional) (X (X fields) (X (X in) (X (X western) (X (X Canada) (X .))))))))))))))))))))))))) (X (X interprovincial) (X (X transports) (X (X about) (X (X 75) (X (X %) (X (X of) (X (X all) (X (X crude) (X (X produced) (X (X in) (X (X western) (X (X Canada) (X (X ,) (X (X and) (X (X almost) (X (X 60) (X (X %) (X (X of) (X (X Interprovincial) (X (X 's) (X (X total) (X (X volume) (X (X consists) (X (X of) (X (X light) (X (X crude) (X .))))))))))))))))))))))))))) (X (X nearly) (X (X all) (X (X of) (X (X the) (X (X crude) (X (X oil) (X (X that) (X (X Canada) (X (X exports) (X (X to) (X (X the) (X (X U.S.) (X (X is) (X (X transported) (X (X on) (X (X Interprovincial) (X (X 's) (X (X system) (X (X ,) (X (X whose) (X (X main) (X (X line) (X (X runs) (X (X from) (X (X Edmonton) (X (X to) (X (X major) (X (X U.S.) (X (X and) (X (X Canadian) (X (X cities) (X (X in) (X (X the) (X (X Great) (X (X Lakes) (X (X region) (X (X ,) (X (X including) (X (X Chicago) (X (X ,) (X (X Buffalo) (X (X ,) (X (X Toronto) (X (X and) (X (X Montreal) (X .)))))))))))))))))))))))))))))))))))))))))))))) (X (X canada) (X (X 's) (X (X current) (X (X oil) (X (X exports) (X (X to) (X (X the) (X (X U.S.) (X (X total) (X (X about) (X (X 600,000) (X (X barrels) (X (X a) (X (X day) (X (X ,) (X (X or) (X (X about) (X (X 9.1) (X (X %) (X (X of) (X (X net) (X (X U.S.) (X (X crude) (X (X imports) (X (X ,) (X (X said) (X (X John) (X (X Lichtblau) (X (X ,) (X (X president) (X (X of) (X (X the) (X (X New) (X (X York-based) (X (X Petroleum) (X (X Industry) (X (X Research) (X (X Foundation) (X .))))))))))))))))))))))))))))))))))))))) (X (X that) (X (X ranks) (X (X Canada) (X (X as) (X (X the) (X (X fourth-largest) (X (X source) (X (X of) (X (X imported) (X (X crude) (X (X ,) (X (X behind) (X (X Saudi) (X (X Arabia) (X (X ,) (X (X Nigeria) (X (X and) (X (X Mexico) (X .))))))))))))))))))) (X (X mr.) (X (X Lichtblau) (X (X said) (X (X Canada) (X (X 's) (X (X declining) (X (X crude) (X (X output) (X (X ,) (X (X combined) (X (X with) (X (X the) (X (X fast-shrinking) (X (X output) (X (X of) (X (X U.S.) (X (X crude) (X (X ,) (X (X will) (X (X help) (X (X intensify) (X (X U.S.) (X (X reliance) (X (X on) (X (X oil) (X (X from) (X (X overseas) (X (X ,) (X (X particularly) (X (X the) (X (X Middle) (X (X East) (X .))))))))))))))))))))))))))))))))) (X (X ``) (X (X It) (X (X 's) (X (X very) (X (X much) (X (X a) (X (X growing) (X (X concern) (X .))))))))) (X (X but) (X (X when) (X (X something) (X (X is) (X (X inevitable) (X (X ,) (X (X you) (X (X learn) (X (X to) (X (X live) (X (X with) (X (X it) (X (X ,) (X (X '') (X (X he) (X (X said) (X .))))))))))))))))) (X (X mr.) (X (X Lichtblau) (X (X stressed) (X (X that) (X (X the) (X (X delay) (X (X of) (X (X Interprovincial) (X (X 's) (X (X proposed) (X (X expansion) (X (X wo) (X (X n't) (X (X by) (X (X itself) (X (X increase) (X (X U.S.) (X (X dependence) (X (X on) (X (X offshore) (X (X crude) (X (X ,) (X (X however) (X (X ,) (X (X since) (X (X Canadian) (X (X imports) (X (X are) (X (X limited) (X (X in) (X (X any) (X (X case) (X (X by) (X (X Canada) (X (X 's) (X (X falling) (X (X output) (X .)))))))))))))))))))))))))))))))))))))) (X (X under) (X (X terms) (X (X of) (X (X its) (X (X proposed) (X (X two-step) (X (X expansion) (X (X ,) (X (X which) (X (X would) (X (X have) (X (X required) (X (X regulatory) (X (X approval) (X (X ,) (X (X Interprovincial) (X (X intended) (X (X to) (X (X add) (X (X 200,000) (X (X barrels) (X (X a) (X (X day) (X (X of) (X (X additional) (X (X capacity) (X (X to) (X (X its) (X (X system) (X (X ,) (X (X beginning) (X (X with) (X (X a) (X (X modest) (X (X expansion) (X (X by) (X (X 1991) (X .)))))))))))))))))))))))))))))))))))))) (X (X the) (X (X system) (X (X currently) (X (X has) (X (X a) (X (X capacity) (X (X of) (X (X 1.55) (X (X million) (X (X barrels) (X (X a) (X (X day) (X .))))))))))))) (X (X inland) (X (X Steel) (X (X Industries) (X (X Inc.) (X (X expects) (X (X to) (X (X report) (X (X that) (X (X third-quarter) (X (X earnings) (X (X dropped) (X (X more) (X (X than) (X (X 50) (X (X %) (X (X from) (X (X the) (X (X previous) (X (X quarter) (X (X as) (X (X a) (X (X result) (X (X of) (X (X reduced) (X (X sales) (X (X volume) (X (X and) (X (X increased) (X (X costs) (X .)))))))))))))))))))))))))))))) (X (X in) (X (X the) (X (X second) (X (X quarter) (X (X ,) (X (X the) (X (X steelmaker) (X (X had) (X (X net) (X (X income) (X (X of) (X (X $) (X (X 45.3) (X (X million) (X (X or) (X (X $) (X (X 1.25) (X (X a) (X (X share) (X (X ,) (X (X including) (X (X a) (X (X pretax) (X (X charge) (X (X of) (X (X $) (X (X 17) (X (X million) (X (X related) (X (X to) (X (X the) (X (X settlement) (X (X of) (X (X a) (X (X suit) (X (X ,) (X (X on) (X (X sales) (X (X of) (X (X $) (X (X 1.11) (X (X billion) (X .))))))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X company) (X (X said) (X (X normal) (X (X seasonal) (X (X softness) (X (X and) (X (X lost) (X (X orders) (X (X caused) (X (X by) (X (X prolonged) (X (X labor) (X (X talks) (X (X reduced) (X (X shipments) (X (X by) (X (X 200,000) (X (X tons) (X (X in) (X (X the) (X (X latest) (X (X quarter) (X (X ,) (X (X compared) (X (X with) (X (X the) (X (X second) (X (X quarter) (X .)))))))))))))))))))))))))))))) (X (X at) (X (X the) (X (X same) (X (X time) (X (X ,) (X (X the) (X (X integrated-steel) (X (X business) (X (X was) (X (X hurt) (X (X by) (X (X continued) (X (X increases) (X (X in) (X (X materials) (X (X costs) (X (X and) (X (X repair) (X (X and) (X (X maintenance) (X (X expenses) (X (X ,) (X (X as) (X (X well) (X (X as) (X (X higher) (X (X labor) (X (X costs) (X (X under) (X (X its) (X (X new) (X (X contract) (X .))))))))))))))))))))))))))))))))) (X (X the) (X (X service-center) (X (X business) (X (X was) (X (X hurt) (X (X by) (X (X reduced) (X (X margins) (X (X and) (X (X start-up) (X (X costs) (X (X associated) (X (X with) (X (X its) (X (X Joseph) (X (X T.) (X (X Ryerson) (X (X &) (X (X Son) (X (X unit) (X .))))))))))))))))))))) (X (X the) (X (X company) (X (X said) (X (X it) (X (X is) (X (X beginning) (X (X to) (X (X see) (X (X some) (X (X shipping-rate) (X (X improvements) (X (X in) (X (X both) (X (X the) (X (X intergrated-steel) (X (X and) (X (X steel-service-center) (X (X segments) (X (X ,) (X (X which) (X (X should) (X (X result) (X (X in) (X (X improved) (X (X results) (X (X for) (X (X the) (X (X fourth) (X (X quarter) (X .)))))))))))))))))))))))))))))) (X (X inland) (X (X said) (X (X its) (X (X third-quarter) (X (X results) (X (X will) (X (X be) (X (X announced) (X (X later) (X (X this) (X (X week) (X .)))))))))))) (X (X in) (X (X the) (X (X year-earlier) (X (X third) (X (X quarter) (X (X ,) (X (X when) (X (X the) (X (X industry) (X (X was) (X (X in) (X (X the) (X (X midst) (X (X of) (X (X a) (X (X boom) (X (X ,) (X (X the) (X (X company) (X (X had) (X (X net) (X (X of) (X (X $) (X (X 61) (X (X million) (X (X ,) (X (X or) (X (X $) (X (X 1.70) (X (X a) (X (X share) (X (X ,) (X (X on) (X (X sales) (X (X of) (X (X $) (X (X 1.02) (X (X billion) (X .))))))))))))))))))))))))))))))))))))))) (X (X predicting) (X (X the) (X (X financial) (X (X results) (X (X of) (X (X computer) (X (X firms) (X (X has) (X (X been) (X (X a) (X (X tough) (X (X job) (X (X lately) (X .)))))))))))))) (X (X take) (X (X Microsoft) (X (X Corp.) (X (X ,) (X (X the) (X (X largest) (X (X maker) (X (X of) (X (X personal) (X (X computer) (X (X software) (X (X and) (X (X generally) (X (X considered) (X (X an) (X (X industry) (X (X bellwether) (X .)))))))))))))))))) (X (X in) (X (X July) (X (X ,) (X (X the) (X (X company) (X (X stunned) (X (X Wall) (X (X Street) (X (X with) (X (X the) (X (X prediction) (X (X that) (X (X growth) (X (X in) (X (X the) (X (X personal) (X (X computer) (X (X business) (X (X overall) (X (X would) (X (X be) (X (X only) (X (X 10) (X (X %) (X (X in) (X (X 1990) (X (X ,) (X (X a) (X (X modest) (X (X increase) (X (X when) (X (X compared) (X (X with) (X (X the) (X (X sizzling) (X (X expansion) (X (X of) (X (X years) (X (X past) (X .)))))))))))))))))))))))))))))))))))))))) (X (X investors) (X (X --) (X (X taking) (X (X this) (X (X as) (X (X a) (X (X sign) (X (X that) (X (X a) (X (X broad) (X (X industry) (X (X slump) (X (X was) (X (X in) (X (X the) (X (X offing) (X (X --) (X (X reacted) (X (X by) (X (X selling) (X (X the) (X (X company) (X (X 's) (X (X stock) (X (X ,) (X (X which) (X (X lost) (X (X $) (X (X 3.25) (X (X that) (X (X day) (X (X to) (X (X close) (X (X at) (X (X $) (X (X 52) (X (X in) (X (X national) (X (X over-the-counter) (X (X trading) (X .))))))))))))))))))))))))))))))))))))))))) (X (X but) (X (X that) (X (X was) (X (X all) (X (X of) (X (X three) (X (X months) (X (X ago) (X .))))))))) (X (X last) (X (X week) (X (X ,) (X (X Microsoft) (X (X said) (X (X it) (X (X expects) (X (X revenue) (X (X for) (X (X its) (X (X first) (X (X quarter) (X (X ended) (X (X Sept.) (X (X 30) (X (X to) (X (X increase) (X (X 34) (X (X %) (X .)))))))))))))))))))) (X (X the) (X (X announcement) (X (X caused) (X (X the) (X (X company) (X (X 's) (X (X stock) (X (X to) (X (X surge) (X (X $) (X (X 6.50) (X (X to) (X (X close) (X (X at) (X (X $) (X (X 75.50) (X (X a) (X (X share) (X .))))))))))))))))))) (X (X microsoft) (X (X 's) (X (X surprising) (X (X strength) (X (X is) (X (X one) (X (X example) (X (X of) (X (X the) (X (X difficulty) (X (X facing) (X (X investors) (X (X looking) (X (X for) (X (X reassurances) (X (X about) (X (X the) (X (X financial) (X (X health) (X (X of) (X (X the) (X (X computer) (X (X firms) (X .)))))))))))))))))))))))) (X (X ``) (X (X It) (X (X 's) (X (X hard) (X (X to) (X (X know) (X (X what) (X (X to) (X (X expect) (X (X at) (X (X this) (X (X point) (X (X ,) (X (X '') (X (X said) (X (X Peter) (X (X Rogers) (X (X ,) (X (X an) (X (X analyst) (X (X at) (X (X Robertson) (X (X Stephens) (X (X &) (X (X Co) (X .)))))))))))))))))))))))))) (X (X ``) (X (X The) (X (X industry) (X (X defies) (X (X characterization) (X (X .) (X ''))))))) (X (X to) (X (X illustrate) (X (X ,) (X (X Mr.) (X (X Rogers) (X (X said) (X (X that) (X (X of) (X (X the) (X (X 14) (X (X computer-related) (X (X firms) (X (X he) (X (X follows) (X (X ,) (X (X half) (X (X will) (X (X report) (X (X for) (X (X their) (X (X most) (X (X recent) (X (X quarter) (X (X earnings) (X (X below) (X (X last) (X (X year) (X (X 's) (X (X results) (X (X ,) (X (X and) (X (X half) (X (X above) (X (X those) (X (X results) (X .)))))))))))))))))))))))))))))))))))) (X (X among) (X (X those) (X (X companies) (X (X expected) (X (X to) (X (X have) (X (X a) (X (X down) (X (X quarter) (X (X are) (X (X Hewlett-Packard) (X (X Co.) (X (X ,) (X (X Amdahl) (X (X Corp.) (X (X and) (X (X Sun) (X (X Microsystems) (X (X Inc.) (X (X ,) (X (X generally) (X (X solid) (X (X performers) (X (X in) (X (X the) (X (X past) (X .))))))))))))))))))))))))))) (X (X international) (X (X Business) (X (X Machines) (X (X Corp.) (X (X also) (X (X is) (X (X expected) (X (X to) (X (X report) (X (X disappointing) (X (X results) (X .)))))))))))) (X (X apple) (X (X Computer) (X (X Inc.) (X (X ,) (X (X meanwhile) (X (X ,) (X (X is) (X (X expected) (X (X to) (X (X show) (X (X improved) (X (X earnings) (X (X for) (X (X the) (X (X period) (X (X ended) (X (X Sept) (X .)))))))))))))))))) (X (X another) (X (X contradictory) (X (X message) (X (X comes) (X (X from) (X (X Businessland) (X (X Inc.) (X (X ,) (X (X a) (X (X computer) (X (X retailer) (X .)))))))))))) (X (X in) (X (X July) (X (X ,) (X (X the) (X (X company) (X (X reported) (X (X that) (X (X booming) (X (X sales) (X (X of) (X (X new) (X (X personal) (X (X computers) (X (X from) (X (X Apple) (X (X and) (X (X IBM) (X (X had) (X (X resulted) (X (X in) (X (X net) (X (X income) (X (X more) (X (X than) (X (X doubling) (X (X for) (X (X its) (X (X fourth) (X (X quarter) (X (X ended) (X (X June) (X (X 30) (X (X to) (X (X $) (X (X 7.4) (X (X million) (X (X ,) (X (X or) (X (X 23) (X (X cents) (X (X a) (X (X share) (X .))))))))))))))))))))))))))))))))))))))))))) (X (X this) (X (X month) (X (X ,) (X (X however) (X (X ,) (X (X Businessland) (X (X warned) (X (X investors) (X (X that) (X (X results) (X (X for) (X (X its) (X (X first) (X (X quarter) (X (X ended) (X (X Sept.) (X (X 30) (X (X had) (X (X n't) (X (X met) (X (X expectations) (X .)))))))))))))))))))))) (X (X the) (X (X company) (X (X said) (X (X it) (X (X expects) (X (X earnings) (X (X of) (X (X 14) (X (X to) (X (X 17) (X (X cents) (X (X a) (X (X share) (X (X ,) (X (X down) (X (X from) (X (X 25) (X (X cents) (X (X a) (X (X share) (X (X in) (X (X the) (X (X year-earlier) (X (X period) (X .))))))))))))))))))))))))) (X (X while) (X (X the) (X (X earnings) (X (X picture) (X (X confuses) (X (X ,) (X (X observers) (X (X say) (X (X the) (X (X major) (X (X forces) (X (X expected) (X (X to) (X (X shape) (X (X the) (X (X industry) (X (X in) (X (X the) (X (X coming) (X (X year) (X (X are) (X (X clearer) (X .))))))))))))))))))))))) (X (X companies) (X (X will) (X (X continue) (X (X to) (X (X war) (X (X over) (X (X standards) (X .)))))))) (X (X in) (X (X computer) (X (X publishing) (X (X ,) (X (X a) (X (X battle) (X (X over) (X (X typefaces) (X (X is) (X (X hurting) (X (X Adobe) (X (X Systems) (X (X Inc.) (X (X ,) (X (X which) (X (X sells) (X (X software) (X (X that) (X (X controls) (X (X the) (X (X image) (X (X produced) (X (X by) (X (X printers) (X (X and) (X (X displays) (X .))))))))))))))))))))))))))) (X (X until) (X (X recently) (X (X ,) (X (X Adobe) (X (X had) (X (X a) (X (X lock) (X (X on) (X (X the) (X (X market) (X (X for) (X (X image) (X (X software) (X (X ,) (X (X but) (X (X last) (X (X month) (X (X Apple) (X (X ,) (X (X Adobe) (X (X 's) (X (X biggest) (X (X customer) (X (X ,) (X (X and) (X (X Microsoft) (X (X rebelled) (X .)))))))))))))))))))))))))))) (X (X now) (X (X the) (X (X two) (X (X firms) (X (X are) (X (X collaborating) (X (X on) (X (X an) (X (X alternative) (X (X to) (X (X Adobe) (X (X 's) (X (X approach) (X (X ,) (X (X and) (X (X analysts) (X (X say) (X (X they) (X (X are) (X (X likely) (X (X to) (X (X carry) (X (X IBM) (X (X ,) (X (X the) (X (X biggest) (X (X seller) (X (X of) (X (X personal) (X (X computers) (X (X ,) (X (X along) (X (X with) (X (X them) (X .))))))))))))))))))))))))))))))))))) (X (X the) (X (X short-term) (X (X outlook) (X (X for) (X (X Adobe) (X (X 's) (X (X business) (X (X ,) (X (X however) (X (X ,) (X (X appears) (X (X strong) (X .))))))))))))) (X (X the) (X (X company) (X (X is) (X (X beginning) (X (X to) (X (X ship) (X (X a) (X (X new) (X (X software) (X (X program) (X (X that) (X (X 's) (X (X being) (X (X heralded) (X (X as) (X (X a) (X (X boon) (X (X for) (X (X owners) (X (X of) (X (X low-end) (X (X printers) (X (X sold) (X (X by) (X (X Apple) (X .)))))))))))))))))))))))))) (X (X the) (X (X program) (X (X is) (X (X aimed) (X (X at) (X (X improving) (X (X the) (X (X quality) (X (X of) (X (X printed) (X (X material) (X .)))))))))))) (X (X john) (X (X Warnock) (X (X ,) (X (X Adobe) (X (X 's) (X (X chief) (X (X executive) (X (X officer) (X (X ,) (X (X said) (X (X the) (X (X Mountain) (X (X View) (X (X ,) (X (X Calif.) (X (X ,) (X (X company) (X (X has) (X (X been) (X (X receiving) (X (X 1,000) (X (X calls) (X (X a) (X (X day) (X (X about) (X (X the) (X (X product) (X (X since) (X (X it) (X (X was) (X (X demonstrated) (X (X at) (X (X a) (X (X computer) (X (X publishing) (X (X conference) (X (X several) (X (X weeks) (X (X ago) (X .)))))))))))))))))))))))))))))))))))))))) (X (X meanwhile) (X (X ,) (X (X competition) (X (X between) (X (X various) (X (X operating) (X (X systems) (X (X ,) (X (X which) (X (X control) (X (X the) (X (X basic) (X (X functions) (X (X of) (X (X a) (X (X computer) (X (X ,) (X (X spells) (X (X trouble) (X (X for) (X (X software) (X (X firms) (X (X generally) (X .)))))))))))))))))))))))) (X (X ``) (X (X It) (X (X creates) (X (X uncertainty) (X (X and) (X (X usually) (X (X slows) (X (X down) (X (X sales) (X (X ,) (X (X '') (X (X said) (X (X Russ) (X (X Crabs) (X (X ,) (X (X an) (X (X analyst) (X (X at) (X (X Soundview) (X (X Financial) (X (X Group) (X .)))))))))))))))))))))) (X (X mr.) (X (X Crabs) (X (X said) (X (X this) (X (X probably) (X (X is) (X (X behind) (X (X the) (X (X expected) (X (X weak) (X (X performance) (X (X of) (X (X Aldus) (X (X Corp.) (X (X ,) (X (X maker) (X (X of) (X (X a) (X (X widely) (X (X used) (X (X computer) (X (X publishing) (X (X program) (X .)))))))))))))))))))))))) (X (X he) (X (X expects) (X (X Aldus) (X (X to) (X (X report) (X (X earnings) (X (X of) (X (X 21) (X (X cents) (X (X a) (X (X share) (X (X on) (X (X revenues) (X (X of) (X (X $) (X (X 19.5) (X (X million) (X (X for) (X (X its) (X (X third) (X (X quarter) (X (X ,) (X (X compared) (X (X with) (X (X earnings) (X (X of) (X (X 30) (X (X cents) (X (X a) (X (X share) (X (X on) (X (X revenue) (X (X of) (X (X 20.4) (X (X million) (X (X in) (X (X the) (X (X year-earlier) (X (X period) (X .)))))))))))))))))))))))))))))))))))))))) (X (X aldus) (X (X officials) (X (X could) (X (X n't) (X (X be) (X (X reached) (X (X for) (X (X comment) (X .))))))))) (X (X on) (X (X the) (X (X other) (X (X hand) (X (X ,) (X (X the) (X (X battle) (X (X of) (X (X the) (X (X bus) (X (X is) (X (X expected) (X (X to) (X (X grow) (X (X increasingly) (X (X irrelevant) (X .))))))))))))))))) (X (X a) (X (X bus) (X (X is) (X (X the) (X (X data) (X (X highway) (X (X within) (X (X a) (X (X computer) (X .)))))))))) (X (X ibm) (X (X is) (X (X backing) (X (X one) (X (X type) (X (X of) (X (X bus) (X (X called) (X (X microchannel) (X (X ,) (X (X while) (X (X the) (X (X nine) (X (X other) (X (X leading) (X (X computer) (X (X makers) (X (X ,) (X (X including) (X (X H-P) (X (X and) (X (X Compaq) (X (X Computer) (X (X Corp.) (X (X ,) (X (X have) (X (X chosen) (X (X another) (X (X method) (X .)))))))))))))))))))))))))))))) (X (X ``) (X (X Users) (X (X do) (X (X n't) (X (X care) (X (X about) (X (X the) (X (X bus) (X (X ,) (X (X '') (X (X said) (X (X Daniel) (X (X Benton) (X (X ,) (X (X an) (X (X analyst) (X (X at) (X (X Goldman) (X (X ,) (X (X Sachs) (X (X &) (X (X Co) (X .))))))))))))))))))))))) (X (X he) (X (X said) (X (X Apple) (X (X 's) (X (X family) (X (X of) (X (X Macintosh) (X (X computers) (X (X ,) (X (X for) (X (X instance) (X (X ,) (X (X uses) (X (X four) (X (X different) (X (X buses) (X (X ``) (X (X and) (X (X no) (X (X one) (X (X seems) (X (X to) (X (X mind) (X (X .) (X ''))))))))))))))))))))))))) (X (X the) (X (X gap) (X (X between) (X (X winners) (X (X and) (X (X laggards) (X (X will) (X (X grow) (X .))))))))) (X (X in) (X (X personal) (X (X computers) (X (X ,) (X (X Apple) (X (X ,) (X (X Compaq) (X (X and) (X (X IBM) (X (X are) (X (X expected) (X (X to) (X (X tighten) (X (X their) (X (X hold) (X (X on) (X (X their) (X (X business) (X .))))))))))))))))))) (X (X at) (X (X the) (X (X same) (X (X time) (X (X ,) (X (X second-tier) (X (X firms) (X (X will) (X (X continue) (X (X to) (X (X lose) (X (X ground) (X .))))))))))))) (X (X some) (X (X lagging) (X (X competitors) (X (X even) (X (X may) (X (X leave) (X (X the) (X (X personal) (X (X computer) (X (X business) (X (X altogether) (X .)))))))))))) (X (X wyse) (X (X Technology) (X (X ,) (X (X for) (X (X instance) (X (X ,) (X (X is) (X (X considered) (X (X a) (X (X candidate) (X (X to) (X (X sell) (X (X its) (X (X troubled) (X (X operation) (X .)))))))))))))))) (X (X ``) (X (X Wyse) (X (X has) (X (X done) (X (X well) (X (X establishing) (X (X a) (X (X distribution) (X (X business) (X (X ,) (X (X but) (X (X they) (X (X have) (X (X n't) (X (X delivered) (X (X products) (X (X that) (X (X sell) (X (X ,) (X (X '') (X (X said) (X (X Kimball) (X (X Brown) (X (X ,) (X (X an) (X (X analyst) (X (X at) (X (X Prudential-Bache) (X (X Securities) (X .)))))))))))))))))))))))))))))) (X (X mr.) (X (X Brown) (X (X estimates) (X (X Wyse) (X (X ,) (X (X whose) (X (X terminals) (X (X business) (X (X is) (X (X strong) (X (X ,) (X (X will) (X (X report) (X (X a) (X (X loss) (X (X of) (X (X 12) (X (X cents) (X (X a) (X (X share) (X (X for) (X (X its) (X (X quarter) (X (X ended) (X (X Sept) (X .)))))))))))))))))))))))))) (X (X personal-computer) (X (X makers) (X (X will) (X (X continue) (X (X to) (X (X eat) (X (X away) (X (X at) (X (X the) (X (X business) (X (X of) (X (X more) (X (X traditional) (X (X computer) (X (X firms) (X .)))))))))))))))) (X (X ever-more) (X (X powerful) (X (X desk-top) (X (X computers) (X (X ,) (X (X designed) (X (X with) (X (X one) (X (X or) (X (X more) (X (X microprocessors) (X (X as) (X (X their) (X (X ``) (X (X brains) (X (X ,) (X (X '') (X (X are) (X (X expected) (X (X to) (X (X increasingly) (X (X take) (X (X on) (X (X functions) (X (X carried) (X (X out) (X (X by) (X (X more) (X (X expensive) (X (X minicomputers) (X (X and) (X (X mainframes) (X .))))))))))))))))))))))))))))))))) (X (X ``) (X (X The) (X (X guys) (X (X that) (X (X make) (X (X traditional) (X (X hardware) (X (X are) (X (X really) (X (X being) (X (X obsoleted) (X (X by) (X (X microprocessor-based) (X (X machines) (X (X ,) (X (X '') (X (X said) (X (X Mr.) (X (X Benton) (X .)))))))))))))))))))) (X (X as) (X (X a) (X (X result) (X (X of) (X (X this) (X (X trend) (X (X ,) (X (X longtime) (X (X powerhouses) (X (X H-P) (X (X ,) (X (X IBM) (X (X and) (X (X Digital) (X (X Equipment) (X (X Corp.) (X (X are) (X (X scrambling) (X (X to) (X (X counterattack) (X (X with) (X (X microprocessor-based) (X (X systems) (X (X of) (X (X their) (X (X own) (X .))))))))))))))))))))))))))) (X (X but) (X (X they) (X (X will) (X (X have) (X (X to) (X (X act) (X (X quickly) (X .)))))))) (X (X mr.) (X (X Benton) (X (X expects) (X (X Compaq) (X (X to) (X (X unveil) (X (X a) (X (X family) (X (X of) (X (X high-end) (X (X personal) (X (X computers) (X (X later) (X (X this) (X (X year) (X (X that) (X (X are) (X (X powerful) (X (X enough) (X (X to) (X (X serve) (X (X as) (X (X the) (X (X hub) (X (X for) (X (X communications) (X (X within) (X (X large) (X (X networks) (X (X of) (X (X desk-top) (X (X machines) (X .))))))))))))))))))))))))))))))))) (X (X a) (X (X raft) (X (X of) (X (X new) (X (X computer) (X (X companies) (X (X also) (X (X has) (X (X targeted) (X (X this) (X (X ``) (X (X server) (X (X '') (X (X market) (X .))))))))))))))) (X (X population) (X (X Drain) (X (X Ends) (X (X For) (X (X Midwestern) (X States)))))) (X (X iowa) (X (X IS) (X (X MAKING) (X (X a) (X (X comeback) (X .)))))) (X (X so) (X (X are) (X (X Indiana) (X (X ,) (X (X Ohio) (X (X and) (X (X Michigan) (X .)))))))) (X (X the) (X (X population) (X (X of) (X (X all) (X (X four) (X (X states) (X (X is) (X (X on) (X (X the) (X (X upswing) (X (X ,) (X (X according) (X (X to) (X (X new) (X (X Census) (X (X Bureau) (X (X estimates) (X (X ,) (X (X following) (X (X declines) (X (X throughout) (X (X the) (X (X early) (X (X 1980s) (X .))))))))))))))))))))))))) (X (X the) (X (X gains) (X (X ,) (X (X to) (X (X be) (X (X sure) (X (X ,) (X (X are) (X (X rather) (X (X small) (X .))))))))))) (X (X iowa) (X (X ,) (X (X for) (X (X instance) (X (X ,) (X (X saw) (X (X its) (X (X population) (X (X grow) (X (X by) (X (X 11,000) (X (X people) (X (X ,) (X (X or) (X (X 0.4) (X (X %) (X (X ,) (X (X between) (X (X 1987) (X (X and) (X (X 1988) (X (X ,) (X (X the) (X (X Census) (X (X Bureau) (X (X says) (X .))))))))))))))))))))))))))) (X (X still) (X (X ,) (X (X even) (X (X that) (X (X modest) (X (X increase) (X (X is) (X (X good) (X (X news) (X (X for) (X (X a) (X (X state) (X (X that) (X (X had) (X (X n't) (X (X grown) (X (X at) (X (X all) (X (X since) (X (X 1981) (X .))))))))))))))))))))) (X (X between) (X (X 1987) (X (X and) (X (X 1988) (X (X ,) (X (X North) (X (X Dakota) (X (X was) (X (X the) (X (X only) (X (X state) (X (X in) (X (X the) (X (X Midwest) (X (X to) (X (X lose) (X (X population) (X (X ,) (X (X a) (X (X loss) (X (X of) (X (X 4,000) (X (X people) (X .)))))))))))))))))))))))) (X (X six) (X (X of) (X (X the) (X (X 12) (X (X midwestern) (X (X states) (X (X have) (X (X been) (X (X growing) (X (X steadily) (X (X since) (X (X 1980) (X (X --) (X (X Illinois) (X (X ,) (X (X Kansas) (X (X ,) (X (X Minnesota) (X (X ,) (X (X Missouri) (X (X ,) (X (X South) (X (X Dakota) (X (X and) (X (X Wisconsin) (X .)))))))))))))))))))))))))) (X (X the) (X (X Northeast) (X (X has) (X (X been) (X (X holding) (X (X its) (X (X own) (X (X in) (X (X the) (X (X population) (X (X race) (X .)))))))))))) (X (X seven) (X (X of) (X (X nine) (X (X states) (X (X have) (X (X grown) (X (X each) (X (X year) (X (X since) (X (X 1980) (X (X ,) (X (X including) (X (X New) (X (X York) (X (X ,) (X (X which) (X (X lost) (X (X 4) (X (X %) (X (X of) (X (X its) (X (X population) (X (X during) (X (X the) (X (X 1970s) (X .)))))))))))))))))))))))))) (X (X and) (X (X although) (X (X Pennsylvania) (X (X and) (X (X Massachusetts) (X (X suffered) (X (X slight) (X (X declines) (X (X earlier) (X (X in) (X (X the) (X (X decade) (X (X ,) (X (X they) (X (X are) (X (X growing) (X (X again) (X .)))))))))))))))))) (X (X at) (X (X the) (X (X same) (X (X time) (X (X ,) (X (X several) (X (X states) (X (X in) (X (X the) (X (X South) (X (X and) (X (X West) (X (X have) (X (X had) (X (X their) (X (X own) (X (X population) (X (X turnaround) (X .))))))))))))))))))) (X (X seven) (X (X states) (X (X that) (X (X grew) (X (X in) (X (X the) (X (X early) (X (X 1980s) (X (X are) (X (X now) (X (X losing) (X (X population) (X (X --) (X (X West) (X (X Virginia) (X (X ,) (X (X Mississippi) (X (X ,) (X (X Louisiana) (X (X ,) (X (X Oklahoma) (X (X ,) (X (X Montana) (X (X ,) (X (X Wyoming) (X (X and) (X (X Alaska) (X .)))))))))))))))))))))))))))) (X (X overall) (X (X ,) (X (X though) (X (X ,) (X (X the) (X (X South) (X (X and) (X (X West) (X (X still) (X (X outpace) (X (X the) (X (X Northeast) (X (X and) (X (X Midwest) (X (X ,) (X (X and) (X (X fast-growing) (X (X states) (X (X like) (X (X Florida) (X (X and) (X (X California) (X (X ensure) (X (X that) (X (X the) (X (X pattern) (X (X will) (X (X continue) (X .))))))))))))))))))))))))))))) (X (X but) (X (X the) (X (X growth) (X (X gap) (X (X between) (X (X the) (X (X Sun) (X (X Belt) (X (X and) (X (X other) (X (X regions) (X (X has) (X (X clearly) (X (X started) (X (X narrowing) (X .)))))))))))))))) (X (X more) (X (X Elderly) (X (X Maintain) (X (X Their) (X Independence))))) (X (X thanks) (X (X TO) (X (X modern) (X (X medicine) (X (X ,) (X (X more) (X (X couples) (X (X are) (X (X growing) (X (X old) (X (X together) (X .)))))))))))) (X (X and) (X (X even) (X (X after) (X (X losing) (X (X a) (X (X spouse) (X (X ,) (X (X more) (X (X of) (X (X the) (X (X elderly) (X (X are) (X (X staying) (X (X independent) (X .))))))))))))))) (X (X a) (X (X new) (X (X Census) (X (X Bureau) (X (X study) (X (X of) (X (X the) (X (X noninstitutionalized) (X (X population) (X (X shows) (X (X that) (X (X 64) (X (X %) (X (X of) (X (X people) (X (X aged) (X (X 65) (X (X to) (X (X 74) (X (X were) (X (X living) (X (X with) (X (X a) (X (X spouse) (X (X in) (X (X 1988) (X (X ,) (X (X up) (X (X from) (X (X 59) (X (X %) (X (X in) (X (X 1970) (X .)))))))))))))))))))))))))))))))))) (X (X this) (X (X does) (X (X n't) (X (X mean) (X (X they) (X (X 're) (X (X less) (X (X likely) (X (X to) (X (X live) (X (X alone) (X (X ,) (X (X however) (X .)))))))))))))) (X (X that) (X (X share) (X (X has) (X (X remained) (X (X at) (X (X about) (X (X 24) (X (X %) (X (X since) (X (X 1970) (X .))))))))))) (X (X what) (X (X has) (X (X changed) (X (X is) (X (X that) (X (X more) (X (X of) (X (X the) (X (X young) (X (X elderly) (X (X are) (X (X living) (X (X with) (X (X spouses) (X (X rather) (X (X than) (X (X with) (X (X other) (X (X relatives) (X (X ,) (X (X such) (X (X as) (X (X children) (X .)))))))))))))))))))))))) (X (X in) (X (X 1988) (X (X ,) (X (X 10) (X (X %) (X (X of) (X (X those) (X (X aged) (X (X 65) (X (X to) (X (X 74) (X (X lived) (X (X with) (X (X relatives) (X (X other) (X (X than) (X (X spouses) (X (X ,) (X (X down) (X (X from) (X (X 15) (X (X %) (X (X in) (X (X 1970) (X .))))))))))))))))))))))))) (X (X as) (X (X people) (X (X get) (X (X even) (X (X older) (X (X ,) (X (X many) (X (X become) (X (X widowed) (X .)))))))))) (X (X but) (X (X even) (X (X among) (X (X those) (X (X aged) (X (X 75) (X (X and) (X (X older) (X (X ,) (X (X the) (X (X share) (X (X living) (X (X with) (X (X a) (X (X spouse) (X (X rose) (X (X slightly) (X (X ,) (X (X to) (X (X 40) (X (X %) (X (X in) (X (X 1988) (X (X from) (X (X 38) (X (X %) (X (X in) (X (X 1970) (X .))))))))))))))))))))))))))))) (X (X like) (X (X their) (X (X younger) (X (X counterparts) (X (X ,) (X (X the) (X (X older) (X (X elderly) (X (X are) (X (X less) (X (X likely) (X (X to) (X (X live) (X (X with) (X (X other) (X (X relatives) (X .))))))))))))))))) (X (X only) (X (X 17) (X (X %) (X (X of) (X (X those) (X (X aged) (X (X 75) (X (X and) (X (X older) (X (X lived) (X (X with) (X (X relatives) (X (X other) (X (X than) (X (X spouses) (X (X in) (X (X 1988) (X (X ,) (X (X down) (X (X from) (X (X 26) (X (X %) (X (X in) (X (X 1970) (X .))))))))))))))))))))))))) (X (X the) (X (X likelihood) (X (X of) (X (X living) (X (X alone) (X (X beyond) (X (X the) (X (X age) (X (X of) (X (X 75) (X (X has) (X (X increased) (X (X to) (X (X 40) (X (X %) (X (X from) (X (X 32) (X (X %) (X .))))))))))))))))))) (X (X more) (X (X people) (X (X are) (X (X remaining) (X (X independent) (X (X longer) (X (X presumably) (X (X because) (X (X they) (X (X are) (X (X better) (X (X off) (X (X physically) (X (X and) (X (X financially) (X .)))))))))))))))) (X (X careers) (X (X Count) (X (X Most) (X (X For) (X (X the) (X Well-to-Do)))))) (X (X many) (X (X AFFLUENT) (X (X people) (X (X place) (X (X personal) (X (X success) (X (X and) (X (X money) (X (X above) (X (X family) (X .))))))))))) (X (X at) (X (X least) (X (X that) (X (X 's) (X (X what) (X (X a) (X (X survey) (X (X by) (X (X Ernst) (X (X &) (X (X Young) (X (X and) (X (X Yankelovich) (X (X ,) (X (X Clancy) (X (X ,) (X (X Shulman) (X (X indicates) (X .))))))))))))))))))) (X (X two-thirds) (X (X of) (X (X respondents) (X (X said) (X (X they) (X (X strongly) (X (X felt) (X (X the) (X (X need) (X (X to) (X (X be) (X (X successful) (X (X in) (X (X their) (X (X jobs) (X (X ,) (X (X while) (X (X fewer) (X (X than) (X (X half) (X (X said) (X (X they) (X (X strongly) (X (X felt) (X (X the) (X (X need) (X (X to) (X (X spend) (X (X more) (X (X time) (X (X with) (X (X their) (X (X families) (X .)))))))))))))))))))))))))))))))))) (X (X being) (X (X successful) (X (X in) (X (X careers) (X (X and) (X (X spending) (X (X the) (X (X money) (X (X they) (X (X make) (X (X are) (X (X top) (X (X priorities) (X (X for) (X (X this) (X (X group) (X .))))))))))))))))) (X (X unlike) (X (X most) (X (X studies) (X (X of) (X (X the) (X (X affluent) (X (X market) (X (X ,) (X (X this) (X (X survey) (X (X excluded) (X (X the) (X (X super-rich) (X .)))))))))))))) (X (X average) (X (X household) (X (X income) (X (X for) (X (X the) (X (X sample) (X (X was) (X (X $) (X (X 194,000) (X (X ,) (X (X and) (X (X average) (X (X net) (X (X assets) (X (X were) (X (X reported) (X (X as) (X (X $) (X (X 775,000) (X .)))))))))))))))))))) (X (X the) (X (X goal) (X (X was) (X (X to) (X (X learn) (X (X about) (X (X one) (X (X of) (X (X today) (X (X 's) (X (X fastest-growing) (X (X income) (X (X groups) (X (X ,) (X (X the) (X (X upper-middle) (X (X class) (X .)))))))))))))))))) (X (X although) (X (X they) (X (X represent) (X (X only) (X (X 2) (X (X %) (X (X of) (X (X the) (X (X population) (X (X ,) (X (X they) (X (X control) (X (X nearly) (X (X one-third) (X (X of) (X (X discretionary) (X (X income) (X .)))))))))))))))))) (X (X across) (X (X the) (X (X board) (X (X ,) (X (X these) (X (X consumers) (X (X value) (X (X quality) (X (X ,) (X (X buy) (X (X what) (X (X they) (X (X like) (X (X rather) (X (X than) (X (X just) (X (X what) (X (X they) (X (X need) (X (X ,) (X (X and) (X (X appreciate) (X (X products) (X (X that) (X (X are) (X (X distinctive) (X .))))))))))))))))))))))))))) (X (X despite) (X (X their) (X (X considerable) (X (X incomes) (X (X and) (X (X assets) (X (X ,) (X (X 40) (X (X %) (X (X of) (X (X the) (X (X respondents) (X (X in) (X (X the) (X (X study) (X (X do) (X (X n't) (X (X feel) (X (X financially) (X (X secure) (X (X ,) (X (X and) (X (X one-fourth) (X (X do) (X (X n't) (X (X feel) (X (X that) (X (X they) (X (X have) (X (X made) (X (X it) (X .)))))))))))))))))))))))))))))))) (X (X twenty) (X (X percent) (X (X do) (X (X n't) (X (X even) (X (X feel) (X (X they) (X (X are) (X (X financially) (X (X well) (X (X off) (X .)))))))))))) (X (X many) (X (X of) (X (X the) (X (X affluent) (X (X are) (X (X n't) (X (X comfortable) (X (X with) (X (X themselves) (X (X ,) (X (X either) (X .)))))))))))) (X (X about) (X (X 40) (X (X %) (X (X do) (X (X n't) (X (X feel) (X (X they) (X (X 're) (X (X more) (X (X able) (X (X than) (X (X others) (X .))))))))))))) (X (X while) (X (X twothirds) (X (X feel) (X (X some) (X (X guilt) (X (X about) (X (X being) (X (X affluent) (X (X ,) (X (X only) (X (X 25) (X (X %) (X (X give) (X (X $) (X (X 2,500) (X (X or) (X (X more) (X (X to) (X (X charity) (X (X each) (X (X year) (X .)))))))))))))))))))))) (X (X thirty-five) (X (X percent) (X (X attend) (X (X religious) (X (X services) (X (X regularly) (X (X ;) (X (X at) (X (X the) (X (X same) (X (X time) (X (X ,) (X (X 60) (X (X %) (X (X feel) (X (X that) (X (X in) (X (X life) (X (X one) (X (X sometimes) (X (X has) (X (X to) (X (X compromise) (X (X one) (X (X 's) (X (X principles) (X .))))))))))))))))))))))))))) (X (X odds) (X (X and) (X Ends))) (X (X the) (X (X NUMBER) (X (X of) (X (X women) (X (X and) (X (X minorities) (X (X who) (X (X hold) (X (X jobs) (X (X in) (X (X top) (X (X management) (X (X in) (X (X the) (X (X nation) (X (X 's) (X (X largest) (X (X banks) (X (X has) (X (X more) (X (X than) (X (X doubled) (X (X since) (X (X 1978) (X .))))))))))))))))))))))))) (X (X the) (X (X American) (X (X Bankers) (X (X Association) (X (X says) (X (X that) (X (X women) (X (X make) (X (X up) (X (X 47) (X (X %) (X (X of) (X (X officials) (X (X and) (X (X managers) (X (X in) (X (X the) (X (X top) (X (X 50) (X (X banks) (X (X ,) (X (X up) (X (X from) (X (X 33) (X (X %) (X (X in) (X (X 1978) (X .)))))))))))))))))))))))))))) (X (X the) (X (X share) (X (X of) (X (X minorities) (X (X in) (X (X those) (X (X positions) (X (X has) (X (X risen) (X (X to) (X (X 16) (X (X %) (X (X from) (X (X 12) (X (X %) (X (X ...) (X .))))))))))))))))) (X (X per-capita) (X (X personal) (X (X income) (X (X in) (X (X the) (X (X U.S.) (X (X grew) (X (X faster) (X (X than) (X (X inflation) (X (X last) (X (X year) (X (X ,) (X (X according) (X (X to) (X (X the) (X (X Bureau) (X (X of) (X (X Economic) (X (X Analysis) (X .))))))))))))))))))))) (X (X the) (X (X amount) (X (X of) (X (X income) (X (X divvied) (X (X up) (X (X for) (X (X each) (X (X man) (X (X ,) (X (X woman) (X (X and) (X (X child) (X (X was) (X (X $) (X (X 16,489) (X (X in) (X (X 1988) (X (X ,) (X (X up) (X (X 6.6) (X (X %) (X (X from) (X (X $) (X (X 15,472) (X (X in) (X (X 1987) (X .)))))))))))))))))))))))))))) (X (X per) (X (X capita) (X (X personal) (X (X income) (X (X ranged) (X (X from) (X (X $) (X (X 11,116) (X (X in) (X (X Mississippi) (X (X to) (X (X $) (X (X 23,059) (X (X in) (X (X Connecticut) (X (X ...) (X .))))))))))))))))) (X (X there) (X (X are) (X (X 13.1) (X (X million) (X (X students) (X (X in) (X (X college) (X (X this) (X (X fall) (X (X ,) (X (X up) (X (X 2) (X (X %) (X (X from) (X (X 1988) (X (X ,) (X (X the) (X (X National) (X (X Center) (X (X for) (X (X Education) (X (X Statistics) (X (X estimates) (X .)))))))))))))))))))))))) (X (X about) (X (X 54) (X (X %) (X (X are) (X (X women) (X (X ,) (X (X and) (X (X 44) (X (X %) (X (X are) (X (X part-time) (X (X students) (X .))))))))))))) (X (X this) (X (X small) (X (X Dallas) (X (X suburb) (X (X 's) (X (X got) (X (X trouble) (X .)))))))) (X (X trouble) (X (X with) (X (X a) (X (X capital) (X (X T) (X (X and) (X (X that) (X (X rhymes) (X (X with) (X (X P) (X (X and) (X (X that) (X (X stands) (X (X for) (X (X pool) (X .)))))))))))))))) (X (X more) (X (X than) (X (X 30) (X (X years) (X (X ago) (X (X ,) (X (X Prof.) (X (X Harold) (X (X Hill) (X (X ,) (X (X the) (X (X con) (X (X man) (X (X in) (X (X Meredith) (X (X Willson) (X (X 's) (X (X ``) (X (X The) (X (X Music) (X (X Man) (X (X ,) (X (X '') (X (X warned) (X (X the) (X (X citizens) (X (X of) (X (X River) (X (X City) (X (X ,) (X (X Iowa) (X (X ,) (X (X against) (X (X the) (X (X game) (X .)))))))))))))))))))))))))))))))))))) (X (X now) (X (X kindred) (X (X spirits) (X (X on) (X (X Addison) (X (X 's) (X (X town) (X (X council) (X (X have) (X (X barred) (X (X the) (X (X town) (X (X 's) (X (X fanciest) (X (X hotel) (X (X ,) (X (X the) (X (X Grand) (X (X Kempinski) (X (X ,) (X (X from) (X (X installing) (X (X three) (X (X free) (X (X pool) (X (X tables) (X (X in) (X (X its) (X (X new) (X (X lounge) (X .))))))))))))))))))))))))))))))) (X (X mayor) (X (X Lynn) (X (X Spruill) (X (X and) (X (X two) (X (X members) (X (X of) (X (X the) (X (X council) (X (X said) (X (X they) (X (X were) (X (X worried) (X (X about) (X (X setting) (X (X a) (X (X precedent) (X (X that) (X (X would) (X (X permit) (X (X pool) (X (X halls) (X (X along) (X (X Addison) (X (X 's) (X (X main) (X (X street) (X .)))))))))))))))))))))))))))) (X (X and) (X (X the) (X (X mayor) (X (X ,) (X (X in) (X (X an) (X (X admonition) (X (X that) (X (X bears) (X (X a) (X (X rhythmic) (X (X resemblance) (X (X to) (X (X Prof.) (X (X Hill) (X (X 's) (X (X ,) (X (X warned) (X (X that) (X (X ``) (X (X alcohol) (X (X leads) (X (X to) (X (X betting) (X (X ,) (X (X which) (X (X leads) (X (X to) (X (X fights) (X (X .) (X ''))))))))))))))))))))))))))))))) (X (X the) (X (X council) (X (X 's) (X (X action) (X (X is) (X (X yet) (X (X another) (X (X blow) (X (X to) (X (X a) (X (X sport) (X (X that) (X (X its) (X (X fans) (X (X claim) (X (X has) (X (X been) (X (X maligned) (X (X unjustly) (X (X for) (X (X years) (X .)))))))))))))))))))))) (X (X ``) (X (X Obviously) (X (X they) (X (X 're) (X (X not) (X (X in) (X (X touch) (X (X with) (X (X what) (X (X 's) (X (X going) (X (X on) (X (X ,) (X (X '') (X (X says) (X (X Tom) (X (X Manske) (X (X ,) (X (X vice) (X (X president) (X (X of) (X (X the) (X (X National) (X (X Pocket) (X (X Billiards) (X (X Association) (X .))))))))))))))))))))))))))) (X (X pool) (X (X is) (X (X hot) (X (X in) (X (X New) (X (X York) (X (X and) (X (X Chicago) (X (X ,) (X (X he) (X (X insists) (X (X ,) (X (X where) (X (X ``) (X (X upscale) (X (X ,) (X (X suit-and-tie) (X (X places) (X (X '') (X (X are) (X (X adding) (X (X tables) (X .))))))))))))))))))))))) (X (X with) (X (X today) (X (X 's) (X (X tougher) (X (X drunk) (X (X driving) (X (X laws) (X (X ,) (X (X he) (X (X adds) (X (X ,) (X (X ``) (X (X people) (X (X do) (X (X n't) (X (X want) (X (X to) (X (X just) (X (X sit) (X (X around) (X (X and) (X (X drink) (X (X .) (X '')))))))))))))))))))))))) (X (X besides) (X (X ,) (X (X rowdy) (X (X behavior) (X (X seems) (X (X unlikely) (X (X at) (X (X the) (X (X Grand) (X (X Kempinski) (X (X ,) (X (X where) (X (X rooms) (X (X average) (X (X $) (X (X 200) (X (X a) (X (X night) (X (X and) (X (X the) (X (X cheap) (X (X mixed) (X (X drinks) (X (X go) (X (X for) (X (X $) (X (X 3.50) (X (X a) (X (X pop) (X .)))))))))))))))))))))))))))))) (X (X at) (X (X the) (X (X lounge) (X (X ,) (X (X manager) (X (X Elizabeth) (X (X Dyer) (X (X wo) (X (X n't) (X (X admit) (X (X patrons) (X (X in) (X (X jeans) (X (X ,) (X (X T-shirts) (X (X or) (X (X tennis) (X (X shoes) (X .))))))))))))))))))) (X (X but) (X (X a) (X (X majority) (X (X of) (X (X the) (X (X Addison) (X (X council) (X (X did) (X (X n't) (X (X buy) (X (X those) (X (X arguments) (X .))))))))))))) (X (X introducing) (X (X pool) (X (X ,) (X (X argued) (X (X Councilwoman) (X (X Riley) (X (X Reinker) (X (X ,) (X (X would) (X (X be) (X (X ``) (X (X dangerous) (X .))))))))))))) (X (X it) (X (X would) (X (X open) (X (X a) (X (X can) (X (X of) (X (X worms) (X (X .) (X ''))))))))) (X (X addison) (X (X is) (X (X no) (X (X stranger) (X (X to) (X (X cans) (X (X of) (X (X worms) (X (X ,) (X (X either) (X .))))))))))) (X (X after) (X (X its) (X (X previous) (X (X mayor) (X (X committed) (X (X suicide) (X (X last) (X (X year) (X (X ,) (X (X an) (X (X investigation) (X (X disclosed) (X (X that) (X (X town) (X (X officials) (X (X regularly) (X (X voted) (X (X on) (X (X their) (X (X own) (X (X projects) (X (X ,) (X (X gave) (X (X special) (X (X favors) (X (X to) (X (X developer) (X (X friends) (X (X and) (X (X dipped) (X (X into) (X (X the) (X (X town) (X (X 's) (X (X coffers) (X (X for) (X (X trips) (X (X and) (X (X retreats) (X .)))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X revelations) (X (X embarrassed) (X (X town) (X (X officials) (X (X ,) (X (X although) (X (X they) (X (X argued) (X (X that) (X (X the) (X (X problems) (X (X were) (X (X n't) (X (X as) (X (X severe) (X (X as) (X (X the) (X (X media) (X (X suggested) (X .))))))))))))))))))))) (X (X now) (X (X comes) (X (X the) (X (X pool) (X (X flap) (X .)))))) (X (X ``) (X (X I) (X (X think) (X (X there) (X (X 's) (X (X some) (X (X people) (X (X worried) (X (X about) (X (X something) (X (X pretty) (X (X ridiculous) (X (X ,) (X (X '') (X (X Councilman) (X (X John) (X (X Nolan) (X (X says) (X .))))))))))))))))))) (X (X ``) (X (X I) (X (X thought) (X (X this) (X (X was) (X (X all) (X (X taken) (X (X care) (X (X of) (X (X in) (X (X `) (X (X The) (X (X Music) (X (X Man) (X .))))))))))))))) (X (X the) (X (X only) (X (X thing) (X (X Robert) (X (X Goldberg) (X (X could) (X (X praise) (X (X about) (X (X CBS) (X (X 's) (X (X new) (X (X show) (X (X ``) (X (X Island) (X (X Son) (X (X '') (X (X -LRB-) (X (X Leisure) (X (X &) (X (X Arts) (X (X ,) (X (X Sept.) (X (X 25) (X (X -RRB-) (X (X was) (X (X the) (X (X local) (X (X color) (X (X ;) (X (X unfortunately) (X (X neither) (X (X he) (X (X nor) (X (X the) (X (X producers) (X (X of) (X (X the) (X (X show) (X (X have) (X (X done) (X (X their) (X (X homework) (X .))))))))))))))))))))))))))))))))))))))))))) (X (X for) (X (X instance) (X (X :) (X (X ``) (X (X Haole) (X (X '') (X (X -LRB-) (X (X white) (X (X -RRB-) (X (X is) (X (X not) (X (X the) (X (X ultimate) (X (X insult) (X (X ;) (X (X ``) (X (X Mainland) (X (X haole) (X (X '') (X (X is) (X .))))))))))))))))))))) (X (X richard) (X (X Chamberlain) (X (X dresses) (X (X as) (X (X a) (X (X ``) (X (X Mainland) (X (X haole) (X (X ,) (X (X '') (X (X tucking) (X (X in) (X (X a) (X (X Hawaiian) (X (X shirt) (X (X and) (X (X rolling) (X (X up) (X (X its) (X (X long) (X (X sleeves) (X .)))))))))))))))))))))) (X (X and) (X (X the) (X (X local) (X (X expression) (X (X for) (X (X brother) (X (X is) (X (X ``) (X (X brah) (X (X ,) (X (X '') (X (X not) (X (X ``) (X (X bruddah) (X (X .) (X '')))))))))))))))) (X (X and) (X (X even) (X (X if) (X (X a) (X (X nurse) (X (X would) (X (X wear) (X (X flowers) (X (X in) (X (X her) (X (X hair) (X (X while) (X (X on) (X (X duty) (X (X ,) (X (X if) (X (X she) (X (X were) (X (X engaged) (X (X she) (X (X would) (X (X know) (X (X to) (X (X wear) (X (X them) (X (X behind) (X (X her) (X (X left) (X (X ,) (X (X not) (X (X right) (X (X ,) (X (X ear) (X .)))))))))))))))))))))))))))))))))) (X (X sorry) (X (X ,) (X (X the) (X (X show) (X (X does) (X (X not) (X (X even) (X (X have) (X (X the) (X (X one) (X (X redeeming) (X (X quality) (X (X of) (X (X genuine) (X (X local) (X (X color) (X .))))))))))))))))) (X (X anita) (X Davis)) (X (X of) (X (X all) (X (X the) (X (X ethnic) (X (X tensions) (X (X in) (X (X America) (X (X ,) (X (X which) (X (X is) (X (X the) (X (X most) (X (X troublesome) (X (X right) (X (X now) (X ?)))))))))))))))) (X (X a) (X (X good) (X (X bet) (X (X would) (X (X be) (X (X the) (X (X tension) (X (X between) (X (X blacks) (X (X and) (X (X Jews) (X (X in) (X (X New) (X (X York) (X (X City) (X .)))))))))))))))) (X (X or) (X (X so) (X (X it) (X (X must) (X (X seem) (X (X to) (X (X Jackie) (X (X Mason) (X (X ,) (X (X the) (X (X veteran) (X (X Jewish) (X (X comedian) (X (X appearing) (X (X in) (X (X a) (X (X new) (X (X ABC) (X (X sitcom) (X (X airing) (X (X on) (X (X Tuesday) (X (X nights) (X (X -LRB-) (X (X 9:30-10) (X (X p.m.) (X (X EDT) (X (X -RRB-) (X .))))))))))))))))))))))))))))) (X (X not) (X (X only) (X (X is) (X (X Mr.) (X (X Mason) (X (X the) (X (X star) (X (X of) (X (X ``) (X (X Chicken) (X (X Soup) (X (X ,) (X (X '') (X (X he) (X (X 's) (X (X also) (X (X the) (X (X inheritor) (X (X of) (X (X a) (X (X comedic) (X (X tradition) (X (X dating) (X (X back) (X (X to) (X (X ``) (X (X Duck) (X (X Soup) (X (X ,) (X (X '') (X (X and) (X (X he) (X (X 's) (X (X currently) (X (X a) (X (X man) (X (X in) (X (X hot) (X (X water) (X .)))))))))))))))))))))))))))))))))))))))) (X (X here) (X (X ,) (X (X in) (X (X neutral) (X (X language) (X (X ,) (X (X is) (X (X the) (X (X gist) (X (X of) (X (X Mr.) (X (X Mason) (X (X 's) (X (X remarks) (X (X ,) (X (X quoted) (X (X first) (X (X in) (X (X the) (X (X Village) (X (X Voice) (X (X while) (X (X he) (X (X was) (X (X a) (X (X paid) (X (X spokesman) (X (X for) (X (X the) (X (X Rudolph) (X (X Giuliani) (X (X mayoral) (X (X campaign) (X (X ,) (X (X and) (X (X then) (X (X in) (X (X Newsweek) (X (X after) (X (X he) (X (X and) (X (X the) (X (X campaign) (X (X parted) (X (X company) (X .)))))))))))))))))))))))))))))))))))))))))))))) (X (X mr.) (X (X Mason) (X (X said) (X (X that) (X (X many) (X (X Jewish) (X (X voters) (X (X feel) (X (X guilty) (X (X toward) (X (X blacks) (X (X ,) (X (X so) (X (X they) (X (X support) (X (X black) (X (X candidates) (X (X uncritically) (X .))))))))))))))))))) (X (X he) (X (X said) (X (X that) (X (X many) (X (X black) (X (X voters) (X (X feel) (X (X bitter) (X (X about) (X (X racial) (X (X discrimination) (X (X ,) (X (X so) (X (X they) (X (X ,) (X (X too) (X (X ,) (X (X support) (X (X black) (X (X candidates) (X (X uncritically) (X .)))))))))))))))))))))) (X (X he) (X (X said) (X (X that) (X (X Jews) (X (X have) (X (X contributed) (X (X more) (X (X to) (X (X black) (X (X causes) (X (X over) (X (X the) (X (X years) (X (X than) (X (X vice) (X (X versa) (X .))))))))))))))))) (X (X of) (X (X course) (X (X ,) (X (X Mr.) (X (X Mason) (X (X did) (X (X not) (X (X use) (X (X neutral) (X (X language) (X .))))))))))) (X (X as) (X (X a) (X (X practitioner) (X (X of) (X (X ethnic) (X (X humor) (X (X from) (X (X the) (X (X old) (X (X days) (X (X on) (X (X the) (X (X Borscht) (X (X Belt) (X (X ,) (X (X live) (X (X television) (X (X and) (X (X the) (X (X nightclub) (X (X circuit) (X (X ,) (X (X Mr.) (X (X Mason) (X (X instinctively) (X (X reached) (X (X for) (X (X the) (X (X vernacular) (X .)))))))))))))))))))))))))))))) (X (X he) (X (X said) (X (X Jews) (X (X were) (X (X ``) (X (X sick) (X (X with) (X (X complexes) (X (X '') (X (X ;) (X (X and) (X (X he) (X (X called) (X (X David) (X (X Dinkins) (X (X ,) (X (X Mr.) (X (X Giuliani) (X (X 's) (X (X black) (X (X opponent) (X (X ,) (X (X ``) (X (X a) (X (X fancy) (X (X shvartze) (X (X with) (X (X a) (X (X mustache) (X (X .) (X ''))))))))))))))))))))))))))))))) (X (X if) (X (X Mr.) (X (X Mason) (X (X had) (X (X used) (X (X less) (X (X derogatory) (X (X language) (X (X to) (X (X articulate) (X (X his) (X (X amateur) (X (X analysis) (X (X of) (X (X the) (X (X voting) (X (X behavior) (X (X of) (X (X his) (X (X fellow) (X (X New) (X (X Yorkers) (X (X ,) (X (X would) (X (X the) (X (X water) (X (X be) (X (X quite) (X (X so) (X (X hot) (X ?))))))))))))))))))))))))))))))) (X (X it) (X (X probably) (X (X would) (X (X ,) (X (X because) (X (X few) (X (X or) (X (X none) (X (X of) (X (X the) (X (X people) (X (X upset) (X (X by) (X (X Mr.) (X (X Mason) (X (X 's) (X (X remarks) (X (X have) (X (X bothered) (X (X to) (X (X distinguish) (X (X between) (X (X the) (X (X substance) (X (X of) (X (X his) (X (X comments) (X (X and) (X (X the) (X (X fact) (X (X that) (X (X he) (X (X used) (X (X insulting) (X (X language) (X .)))))))))))))))))))))))))))))))))))) (X (X in) (X (X addition) (X (X ,) (X (X some) (X (X of) (X (X Mr.) (X (X Mason) (X (X 's) (X (X critics) (X (X have) (X (X implied) (X (X that) (X (X his) (X (X type) (X (X of) (X (X ethnic) (X (X humor) (X (X is) (X (X itself) (X (X a) (X (X form) (X (X of) (X (X racism) (X .)))))))))))))))))))))))) (X (X for) (X (X example) (X (X ,) (X (X the) (X (X New) (X (X York) (X (X state) (X (X counsel) (X (X for) (X (X the) (X (X NAACP) (X (X said) (X (X that) (X (X Mr.) (X (X Mason) (X (X is) (X (X ``) (X (X like) (X (X a) (X (X dinosaur) (X .))))))))))))))))))))) (X (X people) (X (X are) (X (X fast) (X (X leaving) (X (X the) (X (X place) (X (X where) (X (X he) (X (X is) (X (X stuck) (X (X .) (X '')))))))))))) (X (X these) (X (X critics) (X (X fail) (X (X to) (X (X distinguish) (X (X between) (X (X the) (X (X type) (X (X of) (X (X ethnic) (X (X humor) (X (X that) (X (X aims) (X (X at) (X (X disparaging) (X (X another) (X (X group) (X (X ,) (X (X such) (X (X as) (X (X ``) (X (X Polish) (X (X jokes) (X (X '') (X (X ;) (X (X and) (X (X the) (X (X type) (X (X that) (X (X is) (X (X double-edged) (X (X ,) (X (X aiming) (X (X inward) (X (X as) (X (X well) (X (X as) (X (X outward) (X .))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X latter) (X (X typically) (X (X is) (X (X the) (X (X humor) (X (X of) (X (X the) (X (X underdog) (X (X ,) (X (X and) (X (X it) (X (X was) (X (X perfected) (X (X by) (X (X both) (X (X blacks) (X (X and) (X (X Jews) (X (X on) (X (X the) (X (X minstrel) (X (X and) (X (X vaudeville) (X (X stage) (X (X as) (X (X a) (X (X means) (X (X of) (X (X mocking) (X (X their) (X (X white) (X (X and) (X (X gentile) (X (X audiences) (X (X along) (X (X with) (X (X themselves) (X .))))))))))))))))))))))))))))))))))))))) (X (X in) (X (X the) (X (X hands) (X (X of) (X (X a) (X (X zealot) (X (X like) (X (X Lenny) (X (X Bruce) (X (X ,) (X (X this) (X (X double-edged) (X (X blade) (X (X could) (X (X cut) (X (X both) (X (X the) (X (X self) (X (X and) (X (X the) (X (X audience) (X (X to) (X (X ribbons) (X .)))))))))))))))))))))))) (X (X but) (X (X wielded) (X (X by) (X (X a) (X (X pro) (X (X like) (X (X Jackie) (X (X Mason) (X (X ,) (X (X it) (X (X is) (X (X a) (X (X constructive) (X (X form) (X (X of) (X (X mischief) (X .))))))))))))))))) (X (X why) (X (X constructive) (X ?))) (X (X because) (X (X despite) (X (X all) (X (X the) (X (X media) (X (X prattle) (X (X about) (X (X comedy) (X (X and) (X (X politics) (X (X not) (X (X mixing) (X (X ,) (X (X they) (X (X are) (X (X similar) (X (X in) (X (X one) (X (X respect) (X (X :) (X (X Both) (X (X can) (X (X serve) (X (X as) (X (X mechanisms) (X (X for) (X (X easing) (X (X tensions) (X (X and) (X (X facilitating) (X (X the) (X (X co-existence) (X (X of) (X (X groups) (X (X in) (X (X conflict) (X .))))))))))))))))))))))))))))))))))))) (X (X that) (X (X 's) (X (X why) (X (X it) (X (X 's) (X (X dangerous) (X (X to) (X (X have) (X (X well-intentioned) (X (X thought) (X (X police) (X (X ,) (X (X on) (X (X college) (X (X campuses) (X (X and) (X (X elsewhere) (X (X ,) (X (X taboo) (X (X all) (X (X critical) (X (X mention) (X (X of) (X (X group) (X (X differences) (X .)))))))))))))))))))))))))) (X (X as) (X (X Elizabeth) (X (X Kristol) (X (X wrote) (X (X in) (X (X the) (X (X New) (X (X York) (X (X Times) (X (X just) (X (X before) (X (X the) (X (X Mason) (X (X donnybrook) (X (X ,) (X (X ``) (X (X Perhaps) (X (X intolerance) (X (X would) (X (X not) (X (X boil) (X (X over) (X (X with) (X (X such) (X (X intensity) (X (X if) (X (X honest) (X (X differences) (X (X were) (X (X allowed) (X (X to) (X (X simmer) (X (X .) (X '')))))))))))))))))))))))))))))))))) (X (X the) (X (X question) (X (X is) (X (X ,) (X (X if) (X (X group) (X (X conflicts) (X (X still) (X (X exist) (X (X -LRB-) (X (X as) (X (X undeniably) (X (X they) (X (X do) (X (X -RRB-) (X (X ,) (X (X and) (X (X if) (X (X Mr.) (X (X Mason) (X (X 's) (X (X type) (X (X of) (X (X ethnic) (X (X humor) (X (X is) (X (X passe) (X (X ,) (X (X then) (X (X what) (X (X other) (X (X means) (X (X do) (X (X we) (X (X have) (X (X for) (X (X letting) (X (X off) (X (X steam) (X ?)))))))))))))))))))))))))))))))))))))))) (X (X do) (X (X n't) (X (X say) (X (X the) (X (X TV) (X (X sitcom) (X (X ,) (X (X because) (X (X that) (X (X happens) (X (X to) (X (X be) (X (X a) (X (X genre) (X (X that) (X (X ,) (X (X in) (X (X its) (X (X desperate) (X (X need) (X (X to) (X (X attract) (X (X everybody) (X (X and) (X (X offend) (X (X nobody) (X (X ,) (X (X resembles) (X (X politics) (X (X more) (X (X than) (X (X it) (X (X does) (X (X comedy) (X .))))))))))))))))))))))))))))))))))) (X (X it) (X (X is) (X (X true) (X (X that) (X (X the) (X (X best) (X (X sitcoms) (X (X do) (X (X allow) (X (X group) (X (X differences) (X (X to) (X (X simmer) (X (X :) (X (X yuppies) (X (X vs.) (X (X blue-collar) (X (X Bostonians) (X (X in) (X (X ``) (X (X Cheers) (X (X '') (X (X ;) (X (X children) (X (X vs.) (X (X adults) (X (X in) (X (X ``) (X (X The) (X (X Cosby) (X (X Show) (X (X .) (X ''))))))))))))))))))))))))))))))))) (X (X but) (X (X these) (X (X are) (X (X not) (X (X the) (X (X differences) (X (X that) (X (X make) (X (X headlines) (X .)))))))))) (X (X in) (X (X ``) (X (X Chicken) (X (X Soup) (X (X ,) (X (X '') (X (X Mr.) (X (X Mason) (X (X plays) (X (X Jackie) (X (X ,) (X (X a) (X (X Jewish) (X (X bachelor) (X (X courting) (X (X Maddie) (X (X -LRB-) (X (X Lynn) (X (X Redgrave) (X (X -RRB-) (X (X ,) (X (X an) (X (X Irish) (X (X widow) (X (X and) (X (X mother) (X (X of) (X (X three) (X (X ,) (X (X against) (X (X the) (X (X wishes) (X (X of) (X (X his) (X (X mother) (X (X -LRB-) (X (X Rita) (X (X Karin) (X (X -RRB-) (X (X and) (X (X her) (X (X brother) (X (X Michael) (X (X -LRB-) (X (X Brandon) (X (X Maggart) (X (X -RRB-) (X .)))))))))))))))))))))))))))))))))))))))))))))))) (X (X it) (X (X 's) (X (X worth) (X (X noting) (X (X that) (X (X both) (X (X disapproving) (X (X relatives) (X (X are) (X (X immigrants) (X .))))))))))) (X (X at) (X (X least) (X (X ,) (X (X they) (X (X both) (X (X speak) (X (X with) (X (X strong) (X (X accents) (X (X ,) (X (X as) (X (X do) (X (X Jackie) (X (X and) (X (X Maddie) (X .)))))))))))))))) (X (X it) (X (X could) (X (X n't) (X (X be) (X (X more) (X (X obvious) (X (X that) (X (X ``) (X (X Chicken) (X (X Soup) (X (X '') (X (X is) (X (X being) (X (X made) (X (X from) (X (X an) (X (X old) (X (X recipe) (X .))))))))))))))))))) (X (X and) (X (X a) (X (X safe) (X (X one) (X (X --) (X (X imagine) (X (X if) (X (X the) (X (X romance) (X (X in) (X (X question) (X (X were) (X (X between) (X (X an) (X (X Orthodox) (X (X Jew) (X (X and) (X (X a) (X (X member) (X (X of) (X (X the) (X (X Nation) (X (X of) (X (X Islam) (X .))))))))))))))))))))))))) (X (X back) (X (X in) (X (X the) (X (X 1920s) (X (X ,) (X (X the) (X (X play) (X (X and) (X (X movie) (X (X versions) (X (X of) (X (X ``) (X (X Abie) (X (X 's) (X (X Irish) (X (X Rose) (X (X '') (X (X made) (X (X the) (X (X theme) (X (X of) (X (X courtship) (X (X between) (X (X the) (X (X assimilated) (X (X offspring) (X (X of) (X (X Jewish) (X (X and) (X (X Irish) (X (X immigrants) (X (X so) (X (X popular) (X (X that) (X (X its) (X (X author) (X (X ,) (X (X Anne) (X (X Nichols) (X (X ,) (X (X lost) (X (X a) (X (X plagiarism) (X (X suit) (X (X on) (X (X the) (X (X grounds) (X (X that) (X (X the) (X (X plot) (X (X has) (X (X entered) (X (X the) (X (X public) (X (X domain) (X .)))))))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X and) (X (X it) (X (X has) (X (X remained) (X (X there) (X (X ,) (X (X as) (X (X evidenced) (X (X by) (X (X its) (X (X reappearance) (X (X in) (X (X a) (X (X 1972) (X (X CBS) (X (X sitcom) (X (X called) (X (X ``) (X (X Bridget) (X (X Loves) (X (X Bernie) (X (X ,) (X (X '') (X (X whose) (X (X sole) (X (X distinction) (X (X was) (X (X that) (X (X it) (X (X led) (X (X to) (X (X the) (X (X real-life) (X (X marriage) (X (X of) (X (X Meredith) (X (X Baxter) (X (X and) (X (X David) (X (X Birney) (X .))))))))))))))))))))))))))))))))))))))))) (X (X clearly) (X (X ,) (X (X the) (X (X question) (X (X with) (X (X ``) (X (X Chicken) (X (X Soup) (X (X '') (X (X is) (X (X not) (X (X whether) (X (X the) (X (X pot) (X (X will) (X (X boil) (X (X over) (X (X ,) (X (X but) (X (X whether) (X (X it) (X (X will) (X (X simmer) (X (X at) (X (X all) (X .)))))))))))))))))))))))))) (X (X so) (X (X far) (X (X ,) (X (X the) (X (X bubbles) (X (X have) (X (X been) (X (X few) (X (X and) (X (X far) (X (X between) (X .)))))))))))) (X (X part) (X (X of) (X (X the) (X (X problem) (X (X is) (X (X the) (X (X tendency) (X (X of) (X (X all) (X (X sitcoms) (X (X ,) (X (X ever) (X (X since) (X (X the) (X (X didactic) (X (X days) (X (X of) (X (X Norman) (X (X Lear) (X (X ,) (X (X to) (X (X preach) (X (X about) (X (X social) (X (X issues) (X .)))))))))))))))))))))))))) (X (X to) (X (X some) (X (X extent) (X (X ,) (X (X this) (X (X tendency) (X (X emerges) (X (X whenever) (X (X the) (X (X show) (X (X tries) (X (X to) (X (X enlighten) (X (X us) (X (X about) (X (X ethnic) (X (X stereotypes) (X (X by) (X (X reversing) (X (X them) (X .))))))))))))))))))))) (X (X for) (X (X instance) (X (X ,) (X (X Michael) (X (X dislikes) (X (X Jackie) (X (X not) (X (X because) (X (X he) (X (X 's) (X (X a) (X (X shrewd) (X (X Jewish) (X (X businessman) (X (X ,) (X (X but) (X (X because) (X (X he) (X (X quits) (X (X his) (X (X well-paying) (X (X job) (X (X as) (X (X a) (X (X salesman) (X (X in) (X (X order) (X (X to) (X (X become) (X (X a) (X (X social) (X (X worker) (X .))))))))))))))))))))))))))))))))) (X (X even) (X (X more) (X (X problematic) (X (X is) (X (X the) (X (X incompatibility) (X (X between) (X (X sitcom) (X (X preachiness) (X (X and) (X (X Mr.) (X (X Mason) (X (X 's) (X (X comic) (X (X persona) (X .)))))))))))))))) (X (X the) (X (X best) (X (X moments) (X (X in) (X (X the) (X (X show) (X (X occur) (X (X at) (X (X the) (X (X beginning) (X (X and) (X (X the) (X (X end) (X (X -LRB-) (X (X and) (X (X occasionally) (X (X in) (X (X the) (X (X middle) (X (X -RRB-) (X (X ,) (X (X when) (X (X Mr.) (X (X Mason) (X (X slips) (X (X into) (X (X his) (X (X standup) (X (X mode) (X (X and) (X (X starts) (X (X meting) (X (X out) (X (X that) (X (X old-fashioned) (X (X Jewish) (X (X mischief) (X (X to) (X (X other) (X (X people) (X (X as) (X (X well) (X (X as) (X (X to) (X (X himself) (X .)))))))))))))))))))))))))))))))))))))))))))))) (X (X but) (X (X too) (X (X often) (X (X ,) (X (X these) (X (X routines) (X (X lack) (X (X spark) (X (X because) (X (X this) (X (X sitcom) (X (X ,) (X (X like) (X (X all) (X (X sitcoms) (X (X ,) (X (X is) (X (X timid) (X (X about) (X (X confronting) (X (X Mr.) (X (X Mason) (X (X 's) (X (X stock) (X (X in) (X (X trade) (X (X -) (X (X ethnic) (X (X differences) (X .)))))))))))))))))))))))))))))) (X (X i) (X (X 'm) (X (X not) (X (X suggesting) (X (X that) (X (X the) (X (X producers) (X (X start) (X (X putting) (X (X together) (X (X episodes) (X (X about) (X (X topics) (X (X like) (X (X the) (X (X Catholic-Jewish) (X (X dispute) (X (X over) (X (X the) (X (X Carmelite) (X (X convent) (X (X at) (X (X Auschwitz) (X .)))))))))))))))))))))))) (X (X that) (X (X issue) (X (X ,) (X (X like) (X (X racial) (X (X tensions) (X (X in) (X (X New) (X (X York) (X (X City) (X (X ,) (X (X will) (X (X have) (X (X to) (X (X cool) (X (X down) (X (X ,) (X (X not) (X (X heat) (X (X up) (X (X ,) (X (X before) (X (X it) (X (X can) (X (X simmer) (X .)))))))))))))))))))))))))) (X (X but) (X (X I) (X (X am) (X (X suggesting) (X (X that) (X (X they) (X (X stop) (X (X requiring) (X (X Mr.) (X (X Mason) (X (X to) (X (X interrupt) (X (X his) (X (X classic) (X (X shtik) (X (X with) (X (X some) (X (X line) (X (X about) (X (X ``) (X (X caring) (X (X for) (X (X other) (X (X people) (X (X '') (X (X that) (X (X would) (X (X sound) (X (X shmaltzy) (X (X on) (X (X the) (X (X lips) (X (X of) (X (X Miss) (X (X America) (X .)))))))))))))))))))))))))))))))))))) (X (X at) (X (X your) (X (X age) (X (X ,) (X (X Jackie) (X (X ,) (X (X you) (X (X ought) (X (X to) (X (X know) (X (X that) (X (X you) (X (X ca) (X (X n't) (X (X make) (X (X soup) (X (X without) (X (X turning) (X (X up) (X (X the) (X (X flame) (X .)))))))))))))))))))))) (X (X the) (X (X official) (X (X White) (X (X House) (X (X reaction) (X (X to) (X (X a) (X (X plunge) (X (X in) (X (X stock) (X (X prices) (X (X has) (X (X a) (X (X 60-year) (X (X history) (X (X of) (X (X calm) (X (X ,) (X (X right) (X (X up) (X (X through) (X (X Friday) (X .))))))))))))))))))))))) (X (X treasury) (X (X Secretary) (X (X Nicholas) (X (X Brady) (X (X said) (X (X in) (X (X a) (X (X statement) (X (X Friday) (X (X that) (X (X the) (X (X stock-market) (X (X decline) (X (X ``) (X (X does) (X (X n't) (X (X signal) (X (X any) (X (X fundamental) (X (X change) (X (X in) (X (X the) (X (X condition) (X (X of) (X (X the) (X (X economy) (X (X .) (X '')))))))))))))))))))))))))))) (X (X ``) (X (X The) (X (X economy) (X (X ,) (X (X '') (X (X he) (X (X added) (X (X ,) (X (X ``) (X (X remains) (X (X well-balanced) (X (X and) (X (X the) (X (X outlook) (X (X is) (X (X for) (X (X continued) (X (X moderate) (X (X growth) (X (X .) (X ''))))))))))))))))))))) (X (X sound) (X (X familiar) (X ?))) (X (X here) (X (X 's) (X (X what) (X (X Ronald) (X (X Reagan) (X (X said) (X (X after) (X (X the) (X (X 1987) (X (X crash) (X (X :) (X (X ``) (X (X The) (X (X underlying) (X (X economy) (X (X remains) (X (X sound) (X .)))))))))))))))))) (X (X there) (X (X is) (X (X nothing) (X (X wrong) (X (X with) (X (X the) (X (X economy) (X (X ...) (X (X all) (X (X the) (X (X indices) (X (X are) (X (X up) (X (X .) (X ''))))))))))))))) (X (X heard) (X (X that) (X (X before) (X ?)))) (X (X after) (X (X the) (X (X 1929) (X (X crash) (X (X ,) (X (X Herbert) (X (X Hoover) (X (X said) (X (X :) (X (X ``) (X (X The) (X (X fundamental) (X (X business) (X (X of) (X (X the) (X (X country) (X (X ...) (X (X is) (X (X on) (X (X a) (X (X sound) (X (X and) (X (X prosperous) (X (X basis) (X .))))))))))))))))))))))))) (X (X james) (X (X Robinson) (X (X ,) (X (X 57) (X (X years) (X (X old) (X (X ,) (X (X was) (X (X elected) (X (X president) (X (X and) (X (X chief) (X (X executive) (X (X officer) (X (X of) (X (X this) (X (X maker) (X (X of) (X (X magnetic) (X (X recording) (X (X heads) (X (X for) (X (X disk) (X (X drives) (X .))))))))))))))))))))))))) (X (X he) (X (X has) (X (X been) (X (X president) (X (X and) (X (X chief) (X (X executive) (X (X officer) (X (X of) (X (X Amperex) (X (X Electronics) (X (X Corp.) (X (X ,) (X (X a) (X (X division) (X (X of) (X (X North) (X (X American) (X (X Philips) (X (X Corp.) (X (X ,) (X (X itself) (X (X a) (X (X subsidiary) (X (X of) (X (X N.V) (X (X .) (X (X Philips) (X (X of) (X (X the) (X (X Netherlands) (X .)))))))))))))))))))))))))))))))) (X (X charles) (X (X J.) (X (X Lawson) (X (X Jr.) (X (X ,) (X (X 68) (X (X ,) (X (X who) (X (X had) (X (X been) (X (X acting) (X (X chief) (X (X executive) (X (X since) (X (X June) (X (X 14) (X (X ,) (X (X will) (X (X continue) (X (X as) (X (X chairman) (X .)))))))))))))))))))))) (X (X the) (X (X former) (X (X president) (X (X and) (X (X chief) (X (X executive) (X (X ,) (X (X Eric) (X (X W.) (X (X Markrud) (X (X ,) (X (X resigned) (X (X in) (X (X June) (X .))))))))))))))) (X (X the) (X (X Senate) (X (X 's) (X (X decision) (X (X to) (X (X approve) (X (X a) (X (X bare-bones) (X (X deficit-reduction) (X (X bill) (X (X without) (X (X a) (X (X capital-gains) (X (X tax) (X (X cut) (X (X still) (X (X leaves) (X (X open) (X (X the) (X (X possibility) (X (X of) (X (X enacting) (X (X a) (X (X gains) (X (X tax) (X (X reduction) (X (X this) (X (X year) (X .))))))))))))))))))))))))))))) (X (X late) (X (X Friday) (X (X night) (X (X ,) (X (X the) (X (X Senate) (X (X voted) (X (X 87-7) (X (X to) (X (X approve) (X (X an) (X (X estimated) (X (X $) (X (X 13.5) (X (X billion) (X (X measure) (X (X that) (X (X had) (X (X been) (X (X stripped) (X (X of) (X (X hundreds) (X (X of) (X (X provisions) (X (X that) (X (X would) (X (X have) (X (X widened) (X (X ,) (X (X rather) (X (X than) (X (X narrowed) (X (X ,) (X (X the) (X (X federal) (X (X budget) (X (X deficit) (X .)))))))))))))))))))))))))))))))))))))) (X (X lawmakers) (X (X drastically) (X (X streamlined) (X (X the) (X (X bill) (X (X to) (X (X blunt) (X (X criticism) (X (X that) (X (X it) (X (X was) (X (X bloated) (X (X with) (X (X special-interest) (X (X tax) (X (X breaks) (X (X and) (X (X spending) (X (X increases) (X .)))))))))))))))))))) (X (X ``) (X (X We) (X (X 're) (X (X putting) (X (X a) (X (X deficit-reduction) (X (X bill) (X (X back) (X (X in) (X (X the) (X (X category) (X (X of) (X (X being) (X (X a) (X (X deficit-reduction) (X (X bill) (X (X ,) (X (X '') (X (X said) (X (X Senate) (X (X Budget) (X (X Committee) (X (X Chairman) (X (X James) (X (X Sasser) (X (X -LRB-) (X (X D.) (X (X ,) (X (X Tenn) (X (X .) (X (X -RRB-) (X .)))))))))))))))))))))))))))))))) (X (X but) (X (X Senate) (X (X supporters) (X (X of) (X (X the) (X (X trimmer) (X (X legislation) (X (X said) (X (X that) (X (X other) (X (X bills) (X (X would) (X (X soon) (X (X be) (X (X moving) (X (X through) (X (X Congress) (X (X that) (X (X could) (X (X carry) (X (X some) (X (X of) (X (X the) (X (X measures) (X (X that) (X (X had) (X (X been) (X (X cast) (X (X aside) (X (X ,) (X (X including) (X (X a) (X (X capital-gains) (X (X tax) (X (X cut) (X .)))))))))))))))))))))))))))))))))))) (X (X in) (X (X addition) (X (X ,) (X (X the) (X (X companion) (X (X deficit-reduction) (X (X bill) (X (X already) (X (X passed) (X (X by) (X (X the) (X (X House) (X (X includes) (X (X a) (X (X capital-gains) (X (X provision) (X .))))))))))))))))) (X (X house-senate) (X (X negotiations) (X (X are) (X (X likely) (X (X to) (X (X begin) (X (X at) (X (X midweek) (X (X and) (X (X last) (X (X for) (X (X a) (X (X while) (X .)))))))))))))) (X (X ``) (X (X No) (X (X one) (X (X can) (X (X predict) (X (X exactly) (X (X what) (X (X will) (X (X happen) (X (X on) (X (X the) (X (X House) (X (X side) (X (X ,) (X (X '') (X (X said) (X (X Senate) (X (X Minority) (X (X Leader) (X (X Robert) (X (X Dole) (X (X -LRB-) (X (X R.) (X (X ,) (X (X Kan) (X (X .) (X (X -RRB-) (X .)))))))))))))))))))))))))))) (X (X but) (X (X ,) (X (X he) (X (X added) (X (X ,) (X (X ``) (X (X I) (X (X believe) (X (X Republicans) (X (X and) (X (X Democrats) (X (X will) (X (X work) (X (X together) (X (X to) (X (X get) (X (X capital-gains) (X (X reform) (X (X this) (X (X year) (X (X .) (X '')))))))))))))))))))))) (X (X white) (X (X House) (X (X Budget) (X (X Director) (X (X Richard) (X (X Darman) (X (X told) (X (X reporters) (X (X yesterday) (X (X that) (X (X the) (X (X administration) (X (X would) (X (X n't) (X (X push) (X (X to) (X (X keep) (X (X the) (X (X capital-gains) (X (X cut) (X (X in) (X (X the) (X (X final) (X (X version) (X (X of) (X (X the) (X (X bill) (X .)))))))))))))))))))))))))))) (X (X ``) (X (X We) (X (X do) (X (X n't) (X (X need) (X (X this) (X (X as) (X (X a) (X (X way) (X (X to) (X (X get) (X (X capital) (X (X gains) (X (X ,) (X (X '') (X (X he) (X (X said) (X .)))))))))))))))))) (X (X house) (X (X Budget) (X (X Committee) (X (X Chairman) (X (X Leon) (X (X Panetta) (X (X -LRB-) (X (X D.) (X (X ,) (X (X Calif) (X (X .) (X (X -RRB-) (X (X said) (X (X in) (X (X an) (X (X interview) (X (X ,) (X (X ``) (X (X If) (X (X that) (X (X 's) (X (X the) (X (X signal) (X (X that) (X (X comes) (X (X from) (X (X the) (X (X White) (X (X House) (X (X ,) (X (X that) (X (X will) (X (X help) (X (X a) (X (X great) (X (X deal) (X (X .) (X '')))))))))))))))))))))))))))))))))))))) (X (X the) (X (X Senate) (X (X 's) (X (X decision) (X (X was) (X (X a) (X (X setback) (X (X for) (X (X President) (X (X Bush) (X (X and) (X (X will) (X (X make) (X (X approval) (X (X of) (X (X a) (X (X capital-gains) (X (X tax) (X (X cut) (X (X less) (X (X certain) (X (X this) (X (X year) (X .)))))))))))))))))))))))) (X (X opponents) (X (X of) (X (X the) (X (X cut) (X (X are) (X (X playing) (X (X hardball) (X .)))))))) (X (X senate) (X (X Majority) (X (X Leader) (X (X George) (X (X Mitchell) (X (X -LRB-) (X (X D.) (X (X ,) (X (X Maine) (X (X -RRB-) (X (X said) (X (X he) (X (X was) (X (X ``) (X (X confident) (X (X '') (X (X that) (X (X any) (X (X House-Senate) (X (X agreement) (X (X on) (X (X the) (X (X deficit-reduction) (X (X legislation) (X (X would) (X (X n't) (X (X include) (X (X a) (X (X capital-gains) (X (X tax) (X (X cut) (X .)))))))))))))))))))))))))))))))) (X (X and) (X (X a) (X (X senior) (X (X aide) (X (X to) (X (X the) (X (X House) (X (X Ways) (X (X and) (X (X Means) (X (X Committee) (X (X ,) (X (X where) (X (X tax) (X (X legislation) (X (X originates) (X (X ,) (X (X said) (X (X there) (X (X are) (X (X n't) (X (X any) (X (X ``) (X (X plans) (X (X to) (X (X produce) (X (X another) (X (X tax) (X (X bill) (X (X that) (X (X could) (X (X carry) (X (X a) (X (X gains) (X (X tax) (X (X cut) (X (X this) (X (X year) (X (X .) (X '')))))))))))))))))))))))))))))))))))))))) (X (X one) (X (X obvious) (X (X place) (X (X to) (X (X attach) (X (X a) (X (X capital-gains) (X (X tax) (X (X cut) (X (X ,) (X (X and) (X (X perhaps) (X (X other) (X (X popular) (X (X items) (X (X stripped) (X (X from) (X (X the) (X (X deficit-reduction) (X (X bill) (X (X ,) (X (X is) (X (X the) (X (X legislation) (X (X to) (X (X raise) (X (X the) (X (X federal) (X (X borrowing) (X (X limit) (X .))))))))))))))))))))))))))))))) (X (X such) (X (X legislation) (X (X must) (X (X be) (X (X enacted) (X (X by) (X (X the) (X (X end) (X (X of) (X (X the) (X (X month) (X .)))))))))))) (X (X the) (X (X Senate) (X (X bill) (X (X was) (X (X pared) (X (X back) (X (X in) (X (X an) (X (X attempt) (X (X to) (X (X speed) (X (X deficit-reduction) (X (X through) (X (X Congress) (X .))))))))))))))) (X (X because) (X (X the) (X (X legislation) (X (X has) (X (X n't) (X (X been) (X (X completed) (X (X ,) (X (X President) (X (X Bush) (X (X has) (X (X until) (X (X midnight) (X (X tonight) (X (X to) (X (X enact) (X (X across-the-board) (X (X spending) (X (X cuts) (X (X mandated) (X (X by) (X (X the) (X (X Gramm-Rudman) (X (X deficit-reduction) (X (X law) (X .)))))))))))))))))))))))))) (X (X senators) (X (X hope) (X (X that) (X (X the) (X (X need) (X (X to) (X (X avoid) (X (X those) (X (X cuts) (X (X will) (X (X pressure) (X (X the) (X (X House) (X (X to) (X (X agree) (X (X to) (X (X the) (X (X streamlined) (X (X bill) (X .)))))))))))))))))))) (X (X the) (X (X House) (X (X appears) (X (X reluctant) (X (X to) (X (X join) (X (X the) (X (X senators) (X .))))))))) (X (X a) (X (X key) (X (X is) (X (X whether) (X (X House) (X (X Republicans) (X (X are) (X (X willing) (X (X to) (X (X acquiesce) (X (X to) (X (X their) (X (X Senate) (X (X colleagues) (X (X ') (X (X decision) (X (X to) (X (X drop) (X (X many) (X (X pet) (X (X provisions) (X .)))))))))))))))))))))) (X (X ``) (X (X Although) (X (X I) (X (X am) (X (X encouraged) (X (X by) (X (X the) (X (X Senate) (X (X action) (X (X ,) (X (X '') (X (X said) (X (X Chairman) (X (X Dan) (X (X Rostenkowski) (X (X -LRB-) (X (X D.) (X (X ,) (X (X Ill) (X (X .) (X (X -RRB-) (X (X of) (X (X the) (X (X House) (X (X Ways) (X (X and) (X (X Means) (X (X Committee) (X (X ,) (X (X ``) (X (X it) (X (X is) (X (X uncertain) (X (X whether) (X (X a) (X (X clean) (X (X bill) (X (X can) (X (X be) (X (X achieved) (X (X in) (X (X the) (X (X upcoming) (X (X conference) (X (X with) (X (X the) (X (X Senate) (X (X .) (X ''))))))))))))))))))))))))))))))))))))))))))))))))) (X (X another) (X (X big) (X (X question) (X (X hovering) (X (X over) (X (X the) (X (X debate) (X (X is) (X (X what) (X (X President) (X (X Bush) (X (X thinks) (X .))))))))))))) (X (X he) (X (X has) (X (X been) (X (X resisting) (X (X a) (X (X stripped-down) (X (X bill) (X (X without) (X (X a) (X (X guaranteed) (X (X vote) (X (X on) (X (X his) (X (X capital-gains) (X (X tax) (X (X cut) (X .))))))))))))))))) (X (X but) (X (X Republican) (X (X senators) (X (X saw) (X (X no) (X (X way) (X (X to) (X (X overcome) (X (X a) (X (X procedural) (X (X hurdle) (X (X and) (X (X garner) (X (X the) (X (X 60) (X (X votes) (X (X needed) (X (X to) (X (X win) (X (X the) (X (X capital-gains) (X (X issue) (X (X on) (X (X the) (X (X floor) (X (X ,) (X (X so) (X (X they) (X (X went) (X (X ahead) (X (X with) (X (X the) (X (X streamlined) (X (X bill) (X .))))))))))))))))))))))))))))))))))) (X (X the) (X (X Senate) (X (X bill) (X (X was) (X (X stripped) (X (X of) (X (X many) (X (X popular) (X (X ,) (X (X though) (X (X revenue-losing) (X (X ,) (X (X provisions) (X (X ,) (X (X a) (X (X number) (X (X of) (X (X which) (X (X are) (X (X included) (X (X in) (X (X the) (X (X House-passed) (X (X bill) (X .))))))))))))))))))))))))) (X (X these) (X (X include) (X (X a) (X (X child-care) (X (X initiative) (X (X and) (X (X extensions) (X (X of) (X (X soon-to-expire) (X (X tax) (X (X breaks) (X (X for) (X (X low-income) (X (X housing) (X (X and) (X (X research-and-development) (X (X expenditures) (X .)))))))))))))))))) (X (X also) (X (X missing) (X (X from) (X (X the) (X (X Senate) (X (X bill) (X (X is) (X (X the) (X (X House) (X (X 's) (X (X repeal) (X (X of) (X (X a) (X (X law) (X (X ,) (X (X called) (X (X Section) (X (X 89) (X (X ,) (X (X that) (X (X compels) (X (X companies) (X (X to) (X (X give) (X (X rank-and-file) (X (X workers) (X (X comparable) (X (X health) (X (X benefits) (X (X to) (X (X top) (X (X paid) (X (X executives) (X .)))))))))))))))))))))))))))))))))) (X (X one) (X (X high-profile) (X (X provision) (X (X that) (X (X was) (X (X originally) (X (X in) (X (X the) (X (X Senate) (X (X bill) (X (X but) (X (X was) (X (X cut) (X (X out) (X (X because) (X (X it) (X (X lost) (X (X money) (X (X was) (X (X the) (X (X proposal) (X (X by) (X (X Chairman) (X (X Lloyd) (X (X Bentsen) (X (X -LRB-) (X (X D.) (X (X ,) (X (X Texas) (X (X -RRB-) (X (X of) (X (X the) (X (X Senate) (X (X Finance) (X (X Committee) (X (X to) (X (X expand) (X (X the) (X (X deduction) (X (X for) (X (X individual) (X (X retirement) (X (X accounts) (X .)))))))))))))))))))))))))))))))))))))))))))) (X (X mr.) (X (X Bentsen) (X (X said) (X (X he) (X (X hopes) (X (X the) (X (X Senate) (X (X will) (X (X consider) (X (X that) (X (X measure) (X (X soon) (X .))))))))))))) (X (X to) (X (X the) (X (X delight) (X (X of) (X (X some) (X (X doctors) (X (X ,) (X (X the) (X (X bill) (X (X dropped) (X (X a) (X (X plan) (X (X passed) (X (X by) (X (X the) (X (X Finance) (X (X Committee) (X (X that) (X (X would) (X (X have) (X (X overhauled) (X (X the) (X (X entire) (X (X physician-reimbursement) (X (X system) (X (X under) (X (X Medicare) (X .)))))))))))))))))))))))))))) (X (X to) (X (X the) (X (X detriment) (X (X of) (X (X many) (X (X low-income) (X (X people) (X (X ,) (X (X efforts) (X (X to) (X (X boost) (X (X Medicaid) (X (X funding) (X (X ,) (X (X especially) (X (X in) (X (X rural) (X (X areas) (X (X ,) (X (X also) (X (X were) (X (X stricken) (X .))))))))))))))))))))))) (X (X asked) (X (X why) (X (X senators) (X (X were) (X (X giving) (X (X up) (X (X so) (X (X much) (X (X ,) (X (X New) (X (X Mexico) (X (X Sen.) (X (X Pete) (X (X Domenici) (X (X ,) (X (X the) (X (X ranking) (X (X Republican) (X (X on) (X (X the) (X (X Senate) (X (X Budget) (X (X Committee) (X (X ,) (X (X said) (X (X ,) (X (X ``) (X (X We) (X (X 're) (X (X looking) (X (X like) (X (X idiots) (X .))))))))))))))))))))))))))))))))) (X (X things) (X (X had) (X (X just) (X (X gone) (X (X too) (X (X far) (X (X .) (X '')))))))) (X (X sen.) (X (X Dole) (X (X said) (X (X that) (X (X the) (X (X move) (X (X required) (X (X sacrifice) (X (X by) (X (X every) (X (X senator) (X .)))))))))))) (X (X it) (X (X worked) (X (X ,) (X (X others) (X (X said) (X (X ,) (X (X because) (X (X there) (X (X were) (X (X no) (X (X exceptions) (X (X :) (X (X all) (X (X revenue-losing) (X (X provisions) (X (X were) (X (X stricken) (X .)))))))))))))))))) (X (X the) (X (X Senate) (X (X also) (X (X dropped) (X (X a) (X (X plan) (X (X by) (X (X its) (X (X Finance) (X (X Committee) (X (X that) (X (X would) (X (X have) (X (X increased) (X (X the) (X (X income) (X (X threshold) (X (X beyond) (X (X which) (X (X senior) (X (X citizens) (X (X have) (X (X their) (X (X Social) (X (X Security) (X (X benefits) (X (X reduced) (X .)))))))))))))))))))))))))))) (X (X in) (X (X addition) (X (X ,) (X (X the) (X (X bill) (X (X dropped) (X (X a) (X (X plan) (X (X to) (X (X make) (X (X permanent) (X (X a) (X (X 3) (X (X %) (X (X excise) (X (X tax) (X (X on) (X (X long-distance) (X (X telephone) (X (X calls) (X .))))))))))))))))))))) (X (X it) (X (X no) (X (X longer) (X (X includes) (X (X a) (X (X plan) (X (X that) (X (X would) (X (X have) (X (X repealed) (X (X what) (X (X remains) (X (X of) (X (X the) (X (X completed-contract) (X (X method) (X (X of) (X (X accounting) (X (X ,) (X (X which) (X (X is) (X (X used) (X (X by) (X (X military) (X (X contractors) (X (X to) (X (X reduce) (X (X their) (X (X tax) (X (X burden) (X .))))))))))))))))))))))))))))))) (X (X it) (X (X also) (X (X drops) (X (X a) (X (X provision) (X (X that) (X (X would) (X (X have) (X (X permitted) (X (X corporations) (X (X to) (X (X use) (X (X excess) (X (X pension) (X (X funds) (X (X to) (X (X pay) (X (X health) (X (X benefits) (X (X for) (X (X current) (X (X retirees) (X .))))))))))))))))))))))) (X (X also) (X (X stricken) (X (X was) (X (X a) (X (X fivefold) (X (X increase) (X (X in) (X (X the) (X (X maximum) (X (X Occupational) (X (X Safety) (X (X and) (X (X Health) (X (X Administration) (X (X penalties) (X (X ,) (X (X which) (X (X would) (X (X have) (X (X raised) (X (X $) (X (X 65) (X (X million) (X (X in) (X (X fiscal) (X (X 1990) (X .))))))))))))))))))))))))))) (X (X a) (X (X provision) (X (X that) (X (X would) (X (X have) (X (X made) (X (X the) (X (X Social) (X (X Security) (X (X Administration) (X (X an) (X (X independent) (X (X agency) (X (X was) (X (X excised) (X .)))))))))))))))) (X (X the) (X (X approval) (X (X of) (X (X the) (X (X Senate) (X (X bill) (X (X was) (X (X especially) (X (X sweet) (X (X for) (X (X Sen.) (X (X Mitchell) (X (X ,) (X (X who) (X (X had) (X (X proposed) (X (X the) (X (X streamlining) (X .))))))))))))))))))) (X (X mr.) (X (X Mitchell) (X (X 's) (X (X relations) (X (X with) (X (X Budget) (X (X Director) (X (X Darman) (X (X ,) (X (X who) (X (X pushed) (X (X for) (X (X a) (X (X capital-gains) (X (X cut) (X (X to) (X (X be) (X (X added) (X (X to) (X (X the) (X (X measure) (X (X ,) (X (X have) (X (X been) (X (X strained) (X (X since) (X (X Mr.) (X (X Darman) (X (X chose) (X (X to) (X (X bypass) (X (X the) (X (X Maine) (X (X Democrat) (X (X and) (X (X deal) (X (X with) (X (X other) (X (X lawmakers) (X (X earlier) (X (X this) (X (X year) (X (X during) (X (X a) (X (X dispute) (X (X over) (X (X drug) (X (X funding) (X (X in) (X (X the) (X (X fiscal) (X (X 1989) (X (X supplemental) (X (X spending) (X (X bill) (X .)))))))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X deficit) (X (X reduction) (X (X bill) (X (X contains) (X (X $) (X (X 5.3) (X (X billion) (X (X in) (X (X tax) (X (X increases) (X (X in) (X (X fiscal) (X (X 1990) (X (X ,) (X (X and) (X (X $) (X (X 26) (X (X billion) (X (X over) (X (X five) (X (X years) (X .))))))))))))))))))))))) (X (X the) (X (X revenue-raising) (X (X provisions) (X (X ,) (X (X which) (X (X affect) (X (X mostly) (X (X corporations) (X (X ,) (X (X would) (X :))))))))))) (X (X --) (X (X Prevent) (X (X companies) (X (X that) (X (X have) (X (X made) (X (X leveraged) (X (X buy-outs) (X (X from) (X (X getting) (X (X federal) (X (X tax) (X (X refunds) (X (X resulting) (X (X from) (X (X losses) (X (X caused) (X (X by) (X (X interest) (X (X payments) (X (X on) (X (X debt) (X (X issued) (X (X to) (X (X finance) (X (X the) (X (X buy-outs) (X (X ,) (X (X effective) (X (X Aug.) (X (X 2) (X (X ,) (X (X 1989) (X .)))))))))))))))))))))))))))))))))) (X (X --) (X (X Require) (X (X mutual) (X (X funds) (X (X to) (X (X include) (X (X in) (X (X their) (X (X taxable) (X (X income) (X (X dividends) (X (X paid) (X (X to) (X (X them) (X (X on) (X (X the) (X (X date) (X (X that) (X (X the) (X (X dividends) (X (X are) (X (X declared) (X (X rather) (X (X than) (X (X received) (X (X ,) (X (X effective) (X (X the) (X (X day) (X (X after) (X (X the) (X (X tax) (X (X bill) (X (X is) (X (X enacted) (X .)))))))))))))))))))))))))))))))))))) (X (X --) (X (X Close) (X (X a) (X (X loophole) (X (X regarding) (X (X employee) (X (X stock) (X (X ownership) (X (X plans) (X (X ,) (X (X effective) (X (X June) (X (X 6) (X (X ,) (X (X 1989) (X (X ,) (X (X that) (X (X has) (X (X been) (X (X exploited) (X (X by) (X (X investment) (X (X bankers) (X (X in) (X (X corporate) (X (X takeovers) (X .))))))))))))))))))))))))))) (X (X the) (X (X measure) (X (X repeals) (X (X a) (X (X 50) (X (X %) (X (X exclusion) (X (X given) (X (X to) (X (X banks) (X (X on) (X (X the) (X (X interest) (X (X from) (X (X loans) (X (X used) (X (X to) (X (X acquire) (X (X securities) (X (X for) (X (X an) (X (X ESOP) (X (X ,) (X (X if) (X (X the) (X (X ESOP) (X (X owns) (X (X less) (X (X than) (X (X 30) (X (X %) (X (X of) (X (X the) (X (X employer) (X (X 's) (X (X stock) (X .))))))))))))))))))))))))))))))))))))) (X (X --) (X (X Curb) (X (X junk) (X (X bonds) (X (X by) (X (X ending) (X (X tax) (X (X benefits) (X (X for) (X (X certain) (X (X securities) (X (X ,) (X (X such) (X (X as) (X (X zero-coupon) (X (X bonds) (X (X ,) (X (X that) (X (X postpone) (X (X cash) (X (X interest) (X (X payments) (X .))))))))))))))))))))))) (X (X --) (X (X Raise) (X (X $) (X (X 851) (X (X million) (X (X by) (X (X suspending) (X (X for) (X (X one) (X (X year) (X (X an) (X (X automatic) (X (X reduction) (X (X in) (X (X airport) (X (X and) (X (X airway) (X (X taxes) (X .))))))))))))))))))) (X (X --) (X (X Speed) (X (X up) (X (X the) (X (X collection) (X (X of) (X (X the) (X (X payroll) (X (X tax) (X (X from) (X (X large) (X (X companies) (X (X ,) (X (X effective) (X (X August) (X (X 1990) (X .))))))))))))))))) (X (X --) (X (X Impose) (X (X a) (X (X tax) (X (X on) (X (X ozone-depleting) (X (X chemicals) (X (X ,) (X (X such) (X (X as) (X (X those) (X (X used) (X (X in) (X (X air) (X (X conditioners) (X (X and) (X (X in) (X (X Styrofoam) (X (X ,) (X (X beginning) (X (X at) (X (X $) (X (X 1.10) (X (X a) (X (X pound) (X (X starting) (X (X next) (X (X year) (X .))))))))))))))))))))))))))))) (X (X --) (X (X Withhold) (X (X income) (X (X taxes) (X (X from) (X (X the) (X (X paychecks) (X (X of) (X (X certain) (X (X farm) (X (X workers) (X (X currently) (X (X exempt) (X (X from) (X (X withholding) (X .)))))))))))))))) (X (X --) (X (X Change) (X (X the) (X (X collection) (X (X of) (X (X gasoline) (X (X excise) (X (X taxes) (X (X to) (X (X weekly) (X (X from) (X (X semimonthly) (X (X ,) (X (X effective) (X (X next) (X (X year) (X .))))))))))))))))) (X (X --) (X (X Restrict) (X (X the) (X (X ability) (X (X of) (X (X real) (X (X estate) (X (X owners) (X (X to) (X (X escape) (X (X taxes) (X (X by) (X (X swapping) (X (X one) (X (X piece) (X (X of) (X (X property) (X (X for) (X (X another) (X (X instead) (X (X of) (X (X selling) (X (X it) (X (X for) (X (X cash) (X .)))))))))))))))))))))))))) (X (X --) (X (X Increase) (X (X to) (X (X $) (X (X 6) (X (X a) (X (X person) (X (X from) (X (X $) (X (X 3) (X (X the) (X (X international) (X (X air-passenger) (X (X departure) (X (X tax) (X (X ,) (X (X and) (X (X impose) (X (X a) (X (X $) (X (X 3-a-person) (X (X tax) (X (X on) (X (X international) (X (X departures) (X (X by) (X (X commercial) (X (X ships) (X .))))))))))))))))))))))))))))) (X (X the) (X (X measure) (X (X also) (X (X includes) (X (X spending) (X (X cuts) (X (X and) (X (X increases) (X (X in) (X (X federal) (X (X fees) (X .)))))))))))) (X (X among) (X (X its) (X (X provisions) (X :)))) (X (X --) (X (X Reduction) (X (X of) (X (X Medicare) (X (X spending) (X (X in) (X (X fiscal) (X (X 1990) (X (X by) (X (X some) (X (X $) (X (X 2.8) (X (X billion) (X (X ,) (X (X in) (X (X part) (X (X by) (X (X curbing) (X (X increases) (X (X in) (X (X reimbursements) (X (X to) (X (X physicians) (X .)))))))))))))))))))))))) (X (X the) (X (X plan) (X (X would) (X (X impose) (X (X a) (X (X brief) (X (X freeze) (X (X on) (X (X physician) (X (X fees) (X (X next) (X (X year) (X .))))))))))))) (X (X --) (X (X Removal) (X (X of) (X (X the) (X (X U.S.) (X (X Postal) (X (X Service) (X (X 's) (X (X operating) (X (X budget) (X (X from) (X (X the) (X (X federal) (X (X budget) (X (X ,) (X (X reducing) (X (X the) (X (X deficit) (X (X by) (X (X $) (X (X 1.77) (X (X billion) (X .))))))))))))))))))))))) (X (X a) (X (X similar) (X (X provision) (X (X is) (X (X in) (X (X the) (X (X House) (X (X version) (X .))))))))) (X (X --) (X (X Authority) (X (X for) (X (X the) (X (X Federal) (X (X Aviation) (X (X Administration) (X (X to) (X (X raise) (X (X $) (X (X 239) (X (X million) (X (X by) (X (X charging) (X (X fees) (X (X for) (X (X commercial) (X (X airline-landing) (X (X rights) (X (X at) (X (X New) (X (X York) (X (X 's) (X (X LaGuardia) (X (X and) (X (X John) (X (X F.) (X (X Kennedy) (X (X International) (X (X Airports) (X (X ,) (X (X O'Hare) (X (X International) (X (X Airport) (X (X in) (X (X Chicago) (X (X and) (X (X National) (X (X Airport) (X (X in) (X (X Washington) (X .)))))))))))))))))))))))))))))))))))))))))) (X (X --) (X (X Increases) (X (X in) (X (X Nuclear) (X (X Regulatory) (X (X Commission) (X (X fees) (X (X totaling) (X (X $) (X (X 54) (X (X million) (X .)))))))))))) (X (X --) (X (X Direction) (X (X to) (X (X the) (X (X U.S.) (X (X Coast) (X (X Guard) (X (X to) (X (X collect) (X (X $) (X (X 50) (X (X million) (X (X from) (X (X users) (X (X of) (X (X Coast) (X (X Guard) (X (X services) (X .))))))))))))))))))) (X (X --) (X (X Raising) (X (X an) (X (X additional) (X (X $) (X (X 43) (X (X million) (X (X by) (X (X increasing) (X (X existing) (X (X Federal) (X (X Communications) (X (X Commission) (X (X fees) (X (X and) (X (X penalties) (X (X and) (X (X establishing) (X (X new) (X (X fees) (X (X for) (X (X amateur) (X (X radio) (X (X operators) (X (X ,) (X (X ship) (X (X stations) (X (X and) (X (X mobile) (X (X radio) (X (X facilities) (X .)))))))))))))))))))))))))))))))) (X (X john) (X (X E.) (X (X Yang) (X (X contributed) (X (X to) (X (X this) (X (X article) (X .)))))))) (X (X in) (X (X response) (X (X to) (X (X your) (X (X overly) (X (X optimistic) (X (X ,) (X (X outdated) (X (X piece) (X (X on) (X (X how) (X (X long) (X (X unemployment) (X (X lasts) (X (X -LRB-) (X (X People) (X (X Patterns) (X (X ,) (X (X Sept.) (X (X 20) (X (X -RRB-) (X (X :) (X (X I) (X (X am) (X (X in) (X (X the) (X (X communications) (X (X field) (X (X ,) (X (X above) (X (X entry) (X (X level) (X .))))))))))))))))))))))))))))))))) (X (X i) (X (X was) (X (X laid) (X (X off) (X (X in) (X (X August) (X (X 1988) (X (X ,) (X (X and) (X (X after) (X (X a) (X (X thorough) (X (X and) (X (X exhausting) (X (X job) (X (X search) (X (X ,) (X (X was) (X (X hired) (X (X in) (X (X August) (X (X 1989) (X .))))))))))))))))))))))) (X (X my) (X (X unemployment) (X (X insurance) (X (X ran) (X (X out) (X (X before) (X (X I) (X (X found) (X (X a) (X (X job) (X (X ;) (X (X I) (X (X found) (X (X cutbacks) (X (X and) (X (X layoffs) (X (X in) (X (X many) (X (X companies) (X .)))))))))))))))))))) (X (X the) (X (X statistics) (X (X quoted) (X (X by) (X (X the) (X (X ``) (X (X new) (X (X '') (X (X Census) (X (X Bureau) (X (X report) (X (X -LRB-) (X (X garnered) (X (X from) (X (X 1984) (X (X to) (X (X 1986) (X (X -RRB-) (X (X are) (X (X out) (X (X of) (X (X date) (X (X ,) (X (X certainly) (X (X as) (X (X an) (X (X average) (X (X for) (X (X the) (X (X Northeast) (X (X ,) (X (X and) (X (X possibly) (X (X for) (X (X the) (X (X rest) (X (X of) (X (X the) (X (X country) (X .)))))))))))))))))))))))))))))))))))))))) (X (X i) (X (X think) (X (X what) (X (X bothered) (X (X me) (X (X most) (X (X about) (X (X the) (X (X piece) (X (X was) (X (X that) (X (X there) (X (X seemed) (X (X to) (X (X be) (X (X an) (X (X underlying) (X (X attitude) (X (X to) (X (X tell) (X (X your) (X (X readers) (X (X all) (X (X is) (X (X well) (X (X --) (X (X if) (X (X you) (X (X 're) (X (X getting) (X (X laid) (X (X off) (X (X do) (X (X n't) (X (X worry) (X (X ,) (X (X and) (X (X if) (X (X you) (X (X 're) (X (X unemployed) (X (X ,) (X (X it) (X (X 's) (X (X a) (X (X seller) (X (X 's) (X (X market) (X .))))))))))))))))))))))))))))))))))))))))))))))))) (X (X to) (X (X top) (X (X it) (X (X off) (X (X ,) (X (X you) (X (X captioned) (X (X the) (X (X graph) (X (X showing) (X (X the) (X (X average) (X (X number) (X (X of) (X (X months) (X (X in) (X (X a) (X (X job) (X (X search) (X (X as) (X (X ``) (X (X Time) (X (X Off) (X (X .) (X ''))))))))))))))))))))))))) (X (X are) (X (X you) (X (X kidding) (X ?)))) (X (X looking) (X (X for) (X (X a) (X (X job) (X (X was) (X (X one) (X (X of) (X (X the) (X (X most) (X (X anxious) (X (X periods) (X (X of) (X (X my) (X (X life) (X (X --) (X (X and) (X (X is) (X (X for) (X (X most) (X (X people) (X .))))))))))))))))))))) (X (X your) (X (X paper) (X (X needs) (X (X a) (X (X serious) (X (X reality) (X (X check) (X .)))))))) (X (X reva) (X Levin)) (X (X cambridge) (X (X ,) (X (X Mass) (X .)))) (X (X bull) (X (X HN) (X (X INFORMATION) (X (X SYSTEMS) (X (X Inc.) (X (X is) (X (X a) (X (X U.S.) (X (X majority-owned) (X (X unit) (X (X of) (X (X Cie.) (X (X des) (X (X Machines) (X (X Bull) (X .)))))))))))))))) (X (X in) (X (X Friday) (X (X 's) (X (X edition) (X (X ,) (X (X the) (X (X name) (X (X of) (X (X the) (X (X unit) (X (X was) (X (X misstated) (X .))))))))))))) (X (X moody) (X (X 's) (X (X Investors) (X (X Service) (X (X said) (X (X it) (X (X reduced) (X (X its) (X (X rating) (X (X on) (X (X $) (X (X 165) (X (X million) (X (X of) (X (X subordinated) (X (X debt) (X (X of) (X (X this) (X (X Beverly) (X (X Hills) (X (X ,) (X (X Calif.) (X (X ,) (X (X thrift) (X (X ,) (X (X citing) (X (X turmoil) (X (X in) (X (X the) (X (X market) (X (X for) (X (X low-grade) (X (X ,) (X (X high-yield) (X (X securities) (X .)))))))))))))))))))))))))))))))))))) (X (X the) (X (X agency) (X (X said) (X (X it) (X (X reduced) (X (X its) (X (X rating) (X (X on) (X (X the) (X (X thrift) (X (X 's) (X (X subordinated) (X (X debt) (X (X to) (X (X B-2) (X (X from) (X (X Ba-2) (X (X and) (X (X will) (X (X keep) (X (X the) (X (X debt) (X (X under) (X (X review) (X (X for) (X (X possible) (X (X further) (X (X downgrade) (X .))))))))))))))))))))))))))))) (X (X columbia) (X (X Savings) (X (X is) (X (X a) (X (X major) (X (X holder) (X (X of) (X (X so-called) (X (X junk) (X (X bonds) (X .))))))))))) (X (X new) (X (X federal) (X (X legislation) (X (X requires) (X (X that) (X (X all) (X (X thrifts) (X (X divest) (X (X themselves) (X (X of) (X (X such) (X (X speculative) (X (X securities) (X (X over) (X (X a) (X (X period) (X (X of) (X (X years) (X .))))))))))))))))))) (X (X columbia) (X (X Savings) (X (X officials) (X (X were) (X (X n't) (X (X available) (X (X for) (X (X comment) (X (X on) (X (X the) (X (X downgrade) (X .)))))))))))) (X (X franklin) (X (X SAVINGS) (X (X ASSOCIATION) (X (X -LRB-) (X (X Ottawa) (X (X ,) (X (X Kan.) (X (X -RRB-) (X --))))))))) (X (X moody) (X (X 's) (X (X Investors) (X (X Service) (X (X Inc.) (X (X said) (X (X it) (X (X downgraded) (X (X its) (X (X rating) (X (X to) (X (X B-2) (X (X from) (X (X Ba-3) (X (X on) (X (X less) (X (X than) (X (X $) (X (X 20) (X (X million) (X (X of) (X (X this) (X (X thrift) (X (X 's) (X (X senior) (X (X subordinated) (X (X notes) (X .)))))))))))))))))))))))))))) (X (X the) (X (X rating) (X (X concern) (X (X said) (X (X Franklin) (X (X 's) (X (X ``) (X (X troubled) (X (X diversification) (X (X record) (X (X in) (X (X the) (X (X securities) (X (X business) (X (X '') (X (X was) (X (X one) (X (X reason) (X (X for) (X (X the) (X (X downgrade) (X (X ,) (X (X citing) (X (X the) (X (X troubles) (X (X at) (X (X its) (X (X L.F.) (X (X Rothschild) (X (X subsidiary) (X (X and) (X (X the) (X (X possible) (X (X sale) (X (X of) (X (X other) (X (X subsidiaries) (X .)))))))))))))))))))))))))))))))))))))) (X (X ``) (X (X They) (X (X perhaps) (X (X had) (X (X concern) (X (X that) (X (X we) (X (X were) (X (X getting) (X (X out) (X (X of) (X (X all) (X (X these) (X (X ,) (X (X '') (X (X said) (X (X Franklin) (X (X President) (X (X Duane) (X (X H.) (X (X Hall) (X .)))))))))))))))))))))) (X (X ``) (X (X I) (X (X think) (X (X it) (X (X was) (X (X a) (X (X little) (X (X premature) (X (X on) (X (X their) (X (X part) (X .)))))))))))) (X (X just) (X (X when) (X (X it) (X (X seemed) (X (X safe) (X (X to) (X (X go) (X (X back) (X (X into) (X (X stocks) (X (X ,) (X (X Wall) (X (X Street) (X (X suffered) (X (X another) (X (X severe) (X (X attack) (X (X of) (X (X nerves) (X .)))))))))))))))))))) (X (X does) (X (X this) (X (X signal) (X (X another) (X (X Black) (X (X Monday) (X (X is) (X (X coming) (X ?))))))))) (X (X or) (X (X is) (X (X this) (X (X an) (X (X extraordinary) (X (X buying) (X (X opportunity) (X (X ,) (X (X just) (X (X like) (X (X Oct.) (X (X 19) (X (X ,) (X (X 1987) (X (X ,) (X (X eventually) (X (X turned) (X (X out) (X (X to) (X (X be) (X ?))))))))))))))))))))) (X (X here) (X (X 's) (X (X what) (X (X several) (X (X leading) (X (X market) (X (X experts) (X (X and) (X (X money) (X (X managers) (X (X say) (X (X about) (X (X Friday) (X (X 's) (X (X action) (X (X ,) (X (X what) (X (X happens) (X (X next) (X (X and) (X (X what) (X (X investors) (X (X should) (X (X do) (X .))))))))))))))))))))))))) (X (X joseph) (X (X Granville) (X .))) (X (X ``) (X (X I) (X (X 'm) (X (X the) (X (X only) (X (X one) (X (X who) (X (X said) (X (X there) (X (X would) (X (X be) (X (X an) (X (X October) (X (X massacre) (X (X ,) (X (X all) (X (X through) (X (X late) (X (X August) (X (X and) (X (X September) (X (X ,) (X (X '') (X (X says) (X (X Mr.) (X (X Granville) (X (X ,) (X (X once) (X (X a) (X (X widely) (X (X followed) (X (X market) (X (X guru) (X (X and) (X (X still) (X (X a) (X (X well-known) (X (X newsletter) (X (X writer) (X .)))))))))))))))))))))))))))))))))))))))) (X (X ``) (X (X Everyone) (X (X will) (X (X tell) (X (X you) (X (X that) (X (X this) (X (X time) (X (X is) (X (X different) (X (X from) (X (X 1987) (X (X ,) (X (X '') (X (X he) (X (X says) (X .))))))))))))))))) (X (X ``) (X (X Well) (X (X ,) (X (X in) (X (X some) (X (X ways) (X (X it) (X (X is) (X (X different) (X (X ,) (X (X but) (X (X technically) (X (X it) (X (X is) (X (X just) (X (X the) (X (X same) (X .)))))))))))))))))) (X (X if) (X (X you) (X (X 're) (X (X a) (X (X technician) (X (X ,) (X (X you) (X (X obey) (X (X the) (X (X signals) (X .))))))))))) (X (X right) (X (X now) (X (X they) (X (X 're) (X (X telling) (X (X me) (X (X to) (X (X get) (X (X the) (X (X hell) (X (X out) (X (X and) (X (X stay) (X (X out) (X .))))))))))))))) (X (X i) (X (X see) (X (X no) (X (X major) (X (X support) (X (X until) (X (X 2200) (X .)))))))) (X (X i) (X (X see) (X (X a) (X (X possibility) (X (X of) (X (X going) (X (X to) (X (X 2200) (X (X this) (X (X month) (X (X .) (X '')))))))))))) (X (X mr.) (X (X Granville) (X (X says) (X (X he) (X (X would) (X (X n't) (X (X even) (X (X think) (X (X of) (X (X buying) (X (X until) (X (X at) (X (X least) (X (X 600) (X (X to) (X (X 700) (X (X stocks) (X (X have) (X (X hit) (X (X 52-week) (X (X lows) (X (X ;) (X (X about) (X (X 100) (X (X stocks) (X (X hit) (X (X new) (X (X lows) (X (X Friday) (X .)))))))))))))))))))))))))))))) (X (X ``) (X (X Most) (X (X people) (X (X ,) (X (X '') (X (X he) (X (X says) (X (X ,) (X (X ``) (X (X have) (X (X no) (X (X idea) (X (X what) (X (X a) (X (X massacre) (X (X pattern) (X (X looks) (X (X like) (X (X .) (X '')))))))))))))))))))) (X (X elaine) (X (X Garzarelli) (X .))) (X (X a) (X (X quantitative) (X (X analyst) (X (X with) (X (X Shearson) (X (X Lehman) (X (X Hutton) (X (X Inc.) (X (X ,) (X (X Ms.) (X (X Garzarelli) (X (X had) (X (X warned) (X (X clients) (X (X to) (X (X take) (X (X their) (X (X money) (X (X out) (X (X of) (X (X the) (X (X market) (X (X before) (X (X the) (X (X 1987) (X (X crash) (X .))))))))))))))))))))))))))) (X (X friday) (X (X 's) (X (X big) (X (X drop) (X (X ,) (X (X she) (X (X says) (X (X ,) (X (X ``) (X (X was) (X (X not) (X (X a) (X (X crash) (X .)))))))))))))) (X (X this) (X (X was) (X (X an) (X (X October) (X (X massacre) (X (X '') (X (X like) (X (X those) (X (X that) (X (X occurred) (X (X in) (X (X 1978) (X (X and) (X (X 1979) (X .))))))))))))))) (X (X now) (X (X ,) (X (X as) (X (X in) (X (X those) (X (X two) (X (X years) (X (X ,) (X (X her) (X (X stock) (X (X market) (X (X indicators) (X (X are) (X (X positive) (X .))))))))))))))) (X (X so) (X (X she) (X (X thinks) (X (X the) (X (X damage) (X (X will) (X (X be) (X (X short-lived) (X (X and) (X (X contained) (X .))))))))))) (X (X ``) (X (X Those) (X (X corrections) (X (X lasted) (X (X one) (X (X to) (X (X four) (X (X weeks) (X (X and) (X (X took) (X (X the) (X (X market) (X (X 10%-12) (X (X %) (X (X down) (X (X ,) (X (X '') (X (X she) (X (X says) (X .)))))))))))))))))))) (X (X ``) (X (X This) (X (X is) (X (X exactly) (X (X the) (X (X same) (X (X thing) (X (X ,) (X (X as) (X (X far) (X (X as) (X (X I) (X (X 'm) (X (X concerned) (X (X .) (X '')))))))))))))))) (X (X thus) (X (X ,) (X (X she) (X (X says) (X (X ,) (X (X if) (X (X the) (X (X Dow) (X (X Jones) (X (X Industrial) (X (X Average) (X (X dropped) (X (X below) (X (X 2450) (X (X ,) (X (X ``) (X (X It) (X (X would) (X (X just) (X (X be) (X (X a) (X (X fluke) (X .))))))))))))))))))))))) (X (X my) (X (X advice) (X (X is) (X (X to) (X (X buy) (X (X .) (X ''))))))) (X (X as) (X (X she) (X (X calculates) (X (X it) (X (X ,) (X (X the) (X (X average) (X (X stock) (X (X now) (X (X sells) (X (X for) (X (X about) (X (X 12.5) (X (X times) (X (X companies) (X (X ') (X (X earnings) (X .)))))))))))))))))) (X (X she) (X (X says) (X (X that) (X (X ratio) (X (X could) (X (X climb) (X (X to) (X (X 14.5) (X (X ,) (X (X given) (X (X current) (X (X interest) (X (X rates) (X (X ,) (X (X and) (X (X still) (X (X be) (X (X within) (X (X the) (X (X range) (X (X of) (X (X ``) (X (X fair) (X (X value) (X (X .) (X '')))))))))))))))))))))))))) (X (X ned) (X (X Davis) (X .))) (X (X friday) (X (X 's) (X (X fall) (X (X marks) (X (X the) (X (X start) (X (X of) (X (X a) (X (X bear) (X (X market) (X (X ,) (X (X says) (X (X Mr.) (X (X Davis) (X (X ,) (X (X president) (X (X of) (X (X Ned) (X (X Davis) (X (X Research) (X (X Inc) (X .)))))))))))))))))))))) (X (X but) (X (X Mr.) (X (X Davis) (X (X ,) (X (X whose) (X (X views) (X (X are) (X (X widely) (X (X respected) (X (X by) (X (X money) (X (X managers) (X (X ,) (X (X says) (X (X he) (X (X expects) (X (X no) (X (X 1987-style) (X (X crash) (X .)))))))))))))))))))) (X (X ``) (X (X There) (X (X was) (X (X a) (X (X unique) (X (X combination) (X (X in) (X (X 1987) (X (X ,) (X (X '') (X (X he) (X (X says) (X .))))))))))))) (X (X ``) (X (X Margin) (X (X debt) (X (X was) (X (X at) (X (X a) (X (X record) (X (X high) (X .))))))))) (X (X there) (X (X was) (X (X tremendous) (X (X public) (X (X enthusiasm) (X (X for) (X (X stock) (X (X mutual) (X (X funds) (X .)))))))))) (X (X the) (X (X main) (X (X thing) (X (X was) (X (X portfolio) (X (X insurance) (X (X ,) (X (X '') (X (X a) (X (X mechanical) (X (X trading) (X (X system) (X (X intended) (X (X to) (X (X protect) (X (X an) (X (X investor) (X (X against) (X (X losses) (X (X .) (X ``))))))))))))))))))))) (X (X a) (X (X hundred) (X (X billion) (X (X dollars) (X (X in) (X (X stock) (X (X was) (X (X subject) (X (X '') (X (X to) (X (X it) (X .)))))))))))) (X (X in) (X (X 1987) (X (X ,) (X (X such) (X (X selling) (X (X contributed) (X (X to) (X (X a) (X (X snowball) (X (X effect) (X .))))))))))) (X (X today) (X (X could) (X (X even) (X (X be) (X (X an) (X (X up) (X (X day) (X (X ,) (X (X Mr.) (X (X Davis) (X (X says) (X (X ,) (X (X if) (X (X major) (X (X brokerage) (X (X firms) (X (X agree) (X (X to) (X (X refrain) (X (X from) (X (X program) (X (X trading) (X .))))))))))))))))))))))) (X (X over) (X (X the) (X (X next) (X (X several) (X (X months) (X (X ,) (X (X though) (X (X ,) (X (X he) (X (X says) (X (X things) (X (X look) (X (X bad) (X .)))))))))))))) (X (X ``) (X (X I) (X (X think) (X (X the) (X (X market) (X (X will) (X (X be) (X (X heading) (X (X down) (X (X into) (X (X November) (X (X ,) (X (X '') (X (X he) (X (X says) (X .)))))))))))))))) (X (X ``) (X (X We) (X (X will) (X (X probably) (X (X have) (X (X a) (X (X year-end) (X (X rally) (X (X ,) (X (X and) (X (X then) (X (X go) (X (X down) (X (X again) (X .))))))))))))))) (X (X sort) (X (X of) (X (X a) (X (X two-step) (X (X bear) (X (X market) (X (X .) (X '')))))))) (X (X he) (X (X expects) (X (X the) (X (X downturn) (X (X to) (X (X carry) (X (X the) (X (X Dow) (X (X Jones) (X (X Industrial) (X (X Average) (X (X down) (X (X to) (X (X around) (X (X 2000) (X (X sometime) (X (X next) (X (X year) (X .))))))))))))))))))) (X (X ``) (X (X That) (X (X would) (X (X be) (X (X a) (X (X normal) (X (X bear) (X (X market) (X (X ,) (X (X '') (X (X he) (X (X says) (X .))))))))))))) (X (X ``) (X (X I) (X (X guess) (X (X that) (X (X 's) (X (X my) (X (X forecast) (X (X .) (X ''))))))))) (X (X leon) (X (X G.) (X (X Cooperman) (X .)))) (X (X ``) (X (X I) (X (X do) (X (X n't) (X (X think) (X (X the) (X (X market) (X (X is) (X (X going) (X (X through) (X (X another) (X (X October) (X (X '87) (X .)))))))))))))) (X (X i) (X (X do) (X (X n't) (X (X think) (X (X that) (X (X 's) (X (X the) (X (X case) (X (X at) (X (X all) (X (X ,) (X (X '') (X (X says) (X (X Mr.) (X (X Cooperman) (X (X ,) (X (X a) (X (X partner) (X (X at) (X (X Goldman) (X (X ,) (X (X Sachs) (X (X &) (X (X Co.) (X (X and) (X (X chairman) (X (X of) (X (X Goldman) (X (X Sachs) (X (X Asset) (X (X Management) (X .)))))))))))))))))))))))))))))))) (X (X mr.) (X (X Cooperman) (X (X sees) (X (X this) (X (X as) (X (X a) (X (X good) (X (X time) (X (X to) (X (X pick) (X (X up) (X (X bargains) (X (X ,) (X (X but) (X (X he) (X (X does) (X (X n't) (X (X think) (X (X there) (X (X 's) (X (X any) (X (X need) (X (X to) (X (X rush) (X .))))))))))))))))))))))))) (X (X ``) (X (X I) (X (X expect) (X (X the) (X (X market) (X (X to) (X (X open) (X (X weaker) (X (X Monday) (X (X ,) (X (X but) (X (X then) (X (X it) (X (X should) (X (X find) (X (X some) (X (X stability) (X (X .) (X ''))))))))))))))))))) (X (X he) (X (X ticks) (X (X off) (X (X several) (X (X major) (X (X differences) (X (X between) (X (X now) (X (X and) (X (X two) (X (X years) (X (X ago) (X .))))))))))))) (X (X unlike) (X (X 1987) (X (X ,) (X (X interest) (X (X rates) (X (X have) (X (X been) (X (X falling) (X (X this) (X (X year) (X .))))))))))) (X (X unlike) (X (X 1987) (X (X ,) (X (X the) (X (X dollar) (X (X has) (X (X been) (X (X strong) (X .))))))))) (X (X and) (X (X unlike) (X (X 1987) (X (X ,) (X (X the) (X (X economy) (X (X does) (X (X n't) (X (X appear) (X (X to) (X (X be) (X (X in) (X (X any) (X (X danger) (X (X of) (X (X overheating) (X .))))))))))))))))) (X (X but) (X (X the) (X (X economy) (X (X 's) (X (X slower) (X (X growth) (X (X this) (X (X year) (X (X also) (X (X means) (X (X the) (X (X outlook) (X (X for) (X (X corporate) (X (X profits) (X (X ``) (X (X is) (X (X n't) (X (X good) (X (X ,) (X (X '') (X (X he) (X (X says) (X .)))))))))))))))))))))))) (X (X ``) (X (X So) (X (X it) (X (X 's) (X (X a) (X (X very) (X (X mixed) (X (X bag) (X (X .) (X '')))))))))) (X (X thus) (X (X ,) (X (X he) (X (X concludes) (X (X ,) (X (X ``) (X (X This) (X (X is) (X (X not) (X (X a) (X (X good) (X (X environment) (X (X to) (X (X be) (X (X fully) (X (X invested) (X (X '') (X (X in) (X (X stocks) (X .)))))))))))))))))))) (X (X ``) (X (X If) (X (X I) (X (X had) (X (X come) (X (X into) (X (X Friday) (X (X on) (X (X margin) (X (X or) (X (X with) (X (X very) (X (X little) (X (X cash) (X (X in) (X (X the) (X (X portfolios) (X (X ,) (X (X I) (X (X would) (X (X not) (X (X do) (X (X any) (X (X buying) (X .))))))))))))))))))))))))) (X (X but) (X (X we) (X (X came) (X (X into) (X (X Friday) (X (X with) (X (X a) (X (X conservative) (X (X portfolio) (X (X ,) (X (X so) (X (X I) (X (X would) (X (X look) (X (X to) (X (X do) (X (X some) (X (X modest) (X (X buying) (X (X '') (X (X on) (X (X behalf) (X (X of) (X (X clients) (X (X .) (X ``)))))))))))))))))))))))))) (X (X we) (X (X 're) (X (X going) (X (X to) (X (X look) (X (X for) (X (X some) (X (X of) (X (X the) (X (X better-known) (X (X companies) (X (X that) (X (X got) (X (X clocked) (X (X '') (X (X Friday) (X .))))))))))))))))) (X (X john) (X (X Kenneth) (X (X Galbraith) (X .)))) (X (X ``) (X (X This) (X (X is) (X (X the) (X (X latest) (X (X manifestation) (X (X of) (X (X the) (X (X capacity) (X (X of) (X (X the) (X (X financial) (X (X community) (X (X for) (X (X recurrent) (X (X insanity) (X (X ,) (X (X '') (X (X says) (X (X Mr.) (X (X Galbraith) (X (X ,) (X (X an) (X (X economist) (X .))))))))))))))))))))))))) (X (X ``) (X (X I) (X (X see) (X (X this) (X (X as) (X (X a) (X (X reaction) (X (X to) (X (X the) (X (X whole) (X (X junk) (X (X bond) (X (X explosion) (X (X ,) (X (X '') (X (X he) (X (X says) (X .)))))))))))))))))) (X (X ``) (X (X The) (X (X explosion) (X (X of) (X (X junk) (X (X bonds) (X (X and) (X (X takeovers) (X (X has) (X (X lodged) (X (X a) (X (X lot) (X (X of) (X (X insecure) (X (X securities) (X (X in) (X (X the) (X (X hands) (X (X of) (X (X investors) (X (X and) (X (X loaded) (X (X the) (X (X corporations) (X (X that) (X (X are) (X (X the) (X (X objects) (X (X of) (X (X takeovers) (X (X or) (X (X feared) (X (X takeovers) (X (X with) (X (X huge) (X (X amounts) (X (X of) (X (X debt) (X (X rather) (X (X than) (X (X equity) (X .)))))))))))))))))))))))))))))))))))))))))) (X (X this) (X (X has) (X (X both) (X (X made) (X (X investors) (X (X uneasy) (X (X and) (X (X the) (X (X corporations) (X (X more) (X (X vulnerable) (X (X .) (X ''))))))))))))) (X (X nevertheless) (X (X ,) (X (X he) (X (X says) (X (X a) (X (X depression) (X (X does) (X (X n't) (X (X appear) (X (X likely) (X .))))))))))) (X (X ``) (X (X There) (X (X is) (X (X more) (X (X resiliency) (X (X in) (X (X the) (X (X economy) (X (X at) (X (X large) (X (X than) (X (X we) (X (X commonly) (X (X suppose) (X (X ,) (X (X '') (X (X he) (X (X says) (X .))))))))))))))))))) (X (X ``) (X (X It) (X (X takes) (X (X more) (X (X error) (X (X now) (X (X to) (X (X have) (X (X a) (X (X major) (X (X depression) (X (X than) (X (X back) (X (X in) (X (X the) (X (X Thirties) (X (X --) (X (X much) (X (X as) (X (X the) (X (X financial) (X (X community) (X (X and) (X (X the) (X (X government) (X (X may) (X (X try) (X (X .) (X ''))))))))))))))))))))))))))))) (X (X mario) (X (X Gabelli) (X .))) (X (X new) (X (X York) (X (X money) (X (X manager) (X (X Mario) (X (X Gabelli) (X (X ,) (X (X an) (X (X expert) (X (X at) (X (X spotting) (X (X takeover) (X (X candidates) (X (X ,) (X (X says) (X (X that) (X (X takeovers) (X (X are) (X (X n't) (X (X totally) (X (X gone) (X .)))))))))))))))))))))) (X (X ``) (X (X Companies) (X (X are) (X (X still) (X (X going) (X (X to) (X (X buy) (X (X companies) (X (X around) (X (X the) (X (X world) (X (X ,) (X (X '') (X (X he) (X (X says) (X .)))))))))))))))) (X (X examples) (X (X are) (X (X ``) (X (X Ford) (X (X looking) (X (X at) (X (X Jaguar) (X (X ,) (X (X BellSouth) (X (X looking) (X (X at) (X (X LIN) (X (X Broadcasting) (X (X .) (X ''))))))))))))))) (X (X these) (X (X sorts) (X (X of) (X (X takeovers) (X (X do) (X (X n't) (X (X require) (X (X junk) (X (X bonds) (X (X or) (X (X big) (X (X bank) (X (X loans) (X (X to) (X (X finance) (X (X them) (X (X ,) (X (X so) (X (X Mr.) (X (X Gabelli) (X (X figures) (X (X they) (X (X will) (X (X continue) (X .))))))))))))))))))))))))) (X (X ``) (X (X The) (X (X market) (X (X was) (X (X up) (X (X 35) (X (X %) (X (X since) (X (X -LCB-) (X (X President) (X (X -RCB-) (X (X Bush) (X (X took) (X (X office) (X (X ,) (X (X '') (X (X Mr.) (X (X Gabelli) (X (X says) (X (X ,) (X (X so) (X (X a) (X (X correction) (X (X was) (X (X to) (X (X be) (X (X expected) (X .)))))))))))))))))))))))))))) (X (X he) (X (X thinks) (X (X another) (X (X crash) (X (X is) (X (X ``) (X (X unlikely) (X (X ,) (X (X '') (X (X and) (X (X says) (X (X he) (X (X was) (X (X ``) (X (X nibbling) (X (X at) (X (X '') (X (X selected) (X (X stocks) (X (X during) (X (X Friday) (X (X 's) (X (X plunge) (X .)))))))))))))))))))))))) (X (X ``) (X (X Stocks) (X (X that) (X (X were) (X (X thrown) (X (X out) (X (X just) (X (X on) (X (X an) (X (X emotional) (X (X basis) (X (X are) (X (X a) (X (X great) (X (X opportunity) (X (X -LCB-) (X (X this) (X (X -RCB-) (X (X week) (X (X for) (X (X guys) (X (X like) (X (X me) (X (X ,) (X (X '') (X (X he) (X (X says) (X .)))))))))))))))))))))))))))) (X (X jim) (X (X Rogers) (X .))) (X (X ``) (X (X It) (X (X seems) (X (X to) (X (X me) (X (X that) (X (X this) (X (X is) (X (X the) (X (X pin) (X (X that) (X (X has) (X (X finally) (X (X pricked) (X (X the) (X (X balloon) (X (X ,) (X (X '') (X (X says) (X (X Mr.) (X (X Rogers) (X (X ,) (X (X a) (X (X professor) (X (X of) (X (X finance) (X (X at) (X (X Columbia) (X (X University) (X (X and) (X (X former) (X (X co-manager) (X (X of) (X (X one) (X (X of) (X (X the) (X (X most) (X (X successful) (X (X hedge) (X (X funds) (X (X in) (X (X history) (X (X ,) (X (X Quantum) (X (X Fund) (X .)))))))))))))))))))))))))))))))))))))))))))))) (X (X he) (X (X sees) (X (X ``) (X (X economic) (X (X problems) (X (X ,) (X (X financial) (X (X problems) (X (X '') (X (X ahead) (X (X for) (X (X the) (X (X U.S.) (X (X ,) (X (X with) (X (X a) (X (X fairly) (X (X strong) (X (X possibility) (X (X of) (X (X a) (X (X recession) (X .))))))))))))))))))))))) (X (X ``) (X (X Friday) (X (X you) (X (X could) (X (X n't) (X (X sell) (X (X dollars) (X (X ,) (X (X '') (X (X he) (X (X says) (X .)))))))))))) (X (X dealers) (X (X ``) (X (X would) (X (X give) (X (X you) (X (X a) (X (X quote) (X (X ,) (X (X but) (X (X then) (X (X refuse) (X (X to) (X (X make) (X (X the) (X (X trade) (X (X .) (X ''))))))))))))))))) (X (X if) (X (X the) (X (X dollar) (X (X stays) (X (X weak) (X (X ,) (X (X he) (X (X says) (X (X ,) (X (X that) (X (X will) (X (X add) (X (X to) (X (X inflationary) (X (X pressures) (X (X in) (X (X the) (X (X U.S.) (X (X and) (X (X make) (X (X it) (X (X hard) (X (X for) (X (X the) (X (X Federal) (X (X Reserve) (X (X Board) (X (X to) (X (X ease) (X (X interest) (X (X rates) (X (X very) (X (X much) (X .)))))))))))))))))))))))))))))))))) (X (X mr.) (X (X Rogers) (X (X wo) (X (X n't) (X (X decide) (X (X what) (X (X to) (X (X do) (X (X today) (X (X until) (X (X he) (X (X sees) (X (X how) (X (X the) (X (X London) (X (X and) (X (X Tokyo) (X (X markets) (X (X go) (X .)))))))))))))))))))) (X (X he) (X (X recommends) (X (X that) (X (X investors) (X (X sell) (X (X takeover-related) (X (X stocks) (X (X ,) (X (X but) (X (X hang) (X (X on) (X (X to) (X (X some) (X (X other) (X (X stocks) (X (X --) (X (X especially) (X (X utilities) (X (X ,) (X (X which) (X (X often) (X (X do) (X (X well) (X (X during) (X (X periods) (X (X of) (X (X economic) (X (X weakness) (X .))))))))))))))))))))))))))))) (X (X frank) (X (X Curzio) (X .))) (X (X many) (X (X people) (X (X now) (X (X claim) (X (X to) (X (X have) (X (X predicted) (X (X the) (X (X 1987) (X (X crash) (X .))))))))))) (X (X queens) (X (X newsletter) (X (X writer) (X (X Francis) (X (X X.) (X (X Curzio) (X (X actually) (X (X did) (X (X it) (X (X :) (X (X He) (X (X stated) (X (X in) (X (X writing) (X (X in) (X (X September) (X (X 1987) (X (X that) (X (X the) (X (X Dow) (X (X Jones) (X (X Industrial) (X (X Average) (X (X was) (X (X likely) (X (X to) (X (X decline) (X (X about) (X (X 500) (X (X points) (X (X the) (X (X following) (X (X month) (X .)))))))))))))))))))))))))))))))))) (X (X mr.) (X (X Curzio) (X (X says) (X (X what) (X (X happens) (X (X now) (X (X will) (X (X depend) (X (X a) (X (X good) (X (X deal) (X (X on) (X (X the) (X (X Federal) (X (X Reserve) (X (X Board) (X .))))))))))))))))) (X (X if) (X (X it) (X (X promptly) (X (X cuts) (X (X the) (X (X discount) (X (X rate) (X (X it) (X (X charges) (X (X on) (X (X loans) (X (X to) (X (X banks) (X (X ,) (X (X he) (X (X says) (X (X ,) (X (X ``) (X (X That) (X (X could) (X (X quiet) (X (X things) (X (X down) (X (X .) (X ''))))))))))))))))))))))))) (X (X if) (X (X not) (X (X ,) (X (X ``) (X (X We) (X (X could) (X (X go) (X (X to) (X (X 2200) (X (X very) (X (X soon) (X (X .) (X ''))))))))))))) (X (X frank) (X (X W.) (X (X Terrizzi) (X .)))) (X (X stock) (X (X prices) (X (X ``) (X (X would) (X (X still) (X (X have) (X (X to) (X (X go) (X (X down) (X (X some) (X (X additional) (X (X amount) (X (X before) (X (X we) (X (X become) (X (X positive) (X (X on) (X (X stocks) (X (X ,) (X (X '') (X (X says) (X (X Mr.) (X (X Terrizzi) (X (X ,) (X (X president) (X (X and) (X (X managing) (X (X director) (X (X of) (X (X Renaissance) (X (X Investment) (X (X Management) (X (X Inc.) (X (X in) (X (X Cincinnati) (X .)))))))))))))))))))))))))))))))))))) (X (X renaissance) (X (X ,) (X (X which) (X (X manages) (X (X about) (X (X $) (X (X 1.8) (X (X billion) (X (X ,) (X (X drew) (X (X stiff) (X (X criticism) (X (X from) (X (X many) (X (X clients) (X (X earlier) (X (X this) (X (X year) (X (X because) (X (X it) (X (X pulled) (X (X entirely) (X (X out) (X (X of) (X (X stocks) (X (X at) (X (X the) (X (X beginning) (X (X of) (X (X the) (X (X year) (X (X and) (X (X thus) (X (X missed) (X (X a) (X (X strong) (X (X rally) (X .)))))))))))))))))))))))))))))))))))))) (X (X renaissance) (X (X is) (X (X keeping) (X (X its) (X (X money) (X (X entirely) (X (X in) (X (X cash) (X (X equivalents) (X (X ,) (X (X primarily) (X (X U.S.) (X (X Treasury) (X (X bills) (X .))))))))))))))) (X (X ``) (X (X T-bills) (X (X probably) (X (X are) (X (X the) (X (X right) (X (X place) (X (X to) (X (X be) (X (X ,) (X (X '') (X (X he) (X (X says) (X .)))))))))))))) (X (X regarding) (X (X the) (X (X Oct.) (X (X 3) (X (X letter) (X (X to) (X (X the) (X (X editor) (X (X from) (X (X Rep.) (X (X Tom) (X (X Lantos) (X (X ,) (X (X chairman) (X (X of) (X (X the) (X (X House) (X (X Subcommittee) (X (X on) (X (X Employment) (X (X and) (X (X Housing) (X (X ,) (X (X alleging) (X :))))))))))))))))))))))))) (X (X 1) (X (X .) (X (X That) (X (X your) (X (X Sept.) (X (X 28) (X (X editorial) (X (X ``) (X (X Kangaroo) (X (X Committees) (X (X '') (X (X was) (X (X factually) (X (X inaccurate) (X (X and) (X (X deliberately) (X (X misleading) (X .)))))))))))))))))) (X (X i) (X (X thought) (X (X your) (X (X editorial) (X (X was) (X (X factually) (X (X accurate) (X (X and) (X (X deliberately) (X (X elucidative) (X .))))))))))) (X (X 2) (X (X .) (X (X That) (X (X Mr.) (X (X Lantos) (X (X supported) (X (X the) (X (X rights) (X (X of) (X (X the) (X (X witnesses) (X (X to) (X (X take) (X (X the) (X (X Fifth) (X (X Amendment) (X .))))))))))))))))) (X (X yes) (X (X ,) (X (X he) (X (X did) (X .))))) (X (X as) (X (X I) (X (X watched) (X (X him) (X (X on) (X (X C-Span) (X (X ,) (X (X I) (X (X heard) (X (X him) (X (X speak) (X (X those) (X (X lovely) (X (X words) (X (X about) (X (X the) (X (X Bill) (X (X of) (X (X Rights) (X (X ,) (X (X which) (X (X he) (X (X quotes) (X (X from) (X (X the) (X (X transcript) (X (X of) (X (X the) (X (X hearings) (X .)))))))))))))))))))))))))))))) (X (X he) (X (X did) (X (X repeat) (X (X those) (X (X nice) (X (X platitudes) (X (X several) (X (X times) (X (X as) (X (X an) (X (X indication) (X (X of) (X (X his) (X (X support) (X (X for) (X (X the) (X (X Constitution) (X .)))))))))))))))))) (X (X he) (X (X used) (X (X about) (X (X 56) (X (X words) (X (X defending) (X (X the) (X (X witnesses) (X (X ') (X (X constitutional) (X (X rights) (X .)))))))))))) (X (X unfortunately) (X (X ,) (X (X by) (X (X my) (X (X rough) (X (X guess) (X (X ,) (X (X he) (X (X used) (X (X better) (X (X than) (X (X 5,000) (X (X words) (X (X heaping) (X (X scorn) (X (X on) (X (X the) (X (X witnesses) (X (X for) (X (X exercising) (X (X the) (X (X Fifth) (X .))))))))))))))))))))))) (X (X he) (X (X sandwiched) (X (X his) (X (X praise) (X (X of) (X (X constitutional) (X (X meat) (X (X between) (X (X large) (X (X loaves) (X (X of) (X (X bilious) (X (X commentary) (X .)))))))))))))) (X (X as) (X (X your) (X (X editorial) (X (X rightly) (X (X pointed) (X (X out) (X (X ,) (X (X Samuel) (X (X Pierce) (X (X ,) (X (X former) (X (X HUD) (X (X secretary) (X (X ,) (X (X and) (X (X Lance) (X (X Wilson) (X (X ,) (X (X Mr.) (X (X Pierce) (X (X 's) (X (X former) (X (X aide) (X (X ,) (X (X ``) (X (X are) (X (X currently) (X (X being) (X (X held) (X (X up) (X (X to) (X (X scorn) (X (X for) (X (X taking) (X (X the) (X (X Fifth) (X (X Amendment) (X .)))))))))))))))))))))))))))))))))))))) (X (X '') (X (X That) (X (X certainly) (X (X is) (X (X not) (X (X the) (X (X supposed) (X (X ``) (X (X distorted) (X (X reading) (X (X '') (X (X indicated) (X (X by) (X (X Mr.) (X (X Lantos) (X .)))))))))))))))) (X (X 3) (X (X .) (X (X That) (X (X his) (X (X ``) (X (X committee) (X (X does) (X (X not) (X (X deal) (X (X with) (X (X any) (X (X possible) (X (X criminal) (X (X activity) (X (X at) (X (X HUD) (X .))))))))))))))))) (X (X my) (X (X colleagues) (X (X and) (X (X I) (X (X fully) (X (X realize) (X (X we) (X (X are) (X (X not) (X (X a) (X (X court) (X (X ...) (X (X etc) (X (X .) (X ''))))))))))))))) (X (X absolute) (X (X rubbish) (X .))) (X (X by) (X (X any) (X (X ``) (X (X reasonable) (X (X man) (X (X '') (X (X criterion) (X (X ,) (X (X Mr.) (X (X Lantos) (X (X and) (X (X his) (X (X colleagues) (X (X have) (X (X a) (X (X whole) (X (X bunch) (X (X of) (X (X people) (X (X tried) (X (X and) (X (X convicted) (X .))))))))))))))))))))))) (X (X apparently) (X (X ,) (X (X their) (X (X verdict) (X (X is) (X (X in) (X .))))))) (X (X right) (X (X now) (X (X they) (X (X 're) (X (X pursuing) (X (X evidence) (X .))))))) (X (X that) (X (X 's) (X (X not) (X (X a) (X (X bad) (X (X way) (X (X to) (X (X proceed) (X (X ,) (X (X just) (X (X somewhat) (X (X different) (X (X from) (X (X standard) (X (X American) (X (X practice) (X .))))))))))))))))) (X (X how) (X (X was) (X (X that) (X (X practice) (X (X referred) (X (X to) (X (X when) (X (X I) (X (X was) (X (X in) (X (X school) (X ?)))))))))))) (X (X ah) (X (X ,) (X (X yes) (X (X ,) (X (X something) (X (X called) (X (X a) (X (X Star) (X (X Chamber) (X .)))))))))) (X (X of) (X (X course) (X (X ,) (X (X Mr.) (X (X Lantos) (X (X doth) (X (X protest) (X (X that) (X (X his) (X (X subcommittee) (X (X simply) (X (X seeks) (X (X information) (X (X for) (X (X legislative) (X (X change) (X .))))))))))))))))) (X (X no) (X (X doubt) (X (X that) (X (X 's) (X (X partially) (X (X true) (X .))))))) (X (X everything) (X (X that) (X (X Mr.) (X (X Lantos) (X (X says) (X (X in) (X (X his) (X (X letter) (X (X is) (X (X partially) (X (X true) (X .)))))))))))) (X (X he) (X (X 's) (X (X right) (X (X about) (X (X his) (X (X subcommittee) (X (X 's) (X (X responsibilities) (X (X when) (X (X it) (X (X comes) (X (X to) (X (X obtaining) (X (X information) (X (X from) (X (X prior) (X (X HUD) (X (X officials) (X .))))))))))))))))))) (X (X but) (X (X if) (X (X his) (X (X explanation) (X (X of) (X (X motivation) (X (X is) (X (X true) (X (X ,) (X (X why) (X (X is) (X (X his) (X (X investigation) (X (X so) (X (X oriented) (X (X as) (X (X to) (X (X identify) (X (X criminal) (X (X activity) (X ?))))))))))))))))))))) (X (X why) (X (X not) (X (X simply) (X (X questions) (X (X designed) (X (X to) (X (X identify) (X (X sources) (X (X and) (X (X causes) (X (X of) (X (X waste) (X (X and) (X (X inefficiency) (X ?))))))))))))))) (X (X such) (X (X as) (X (X ,) (X (X what) (X (X happened) (X (X when) (X (X Congress) (X (X wanted) (X (X to) (X (X know) (X (X about) (X (X $) (X (X 400) (X (X toilet) (X (X seats) (X (X or) (X (X whatever) (X (X they) (X (X supposedly) (X (X cost) (X ?))))))))))))))))))))) (X (X no) (X (X ,) (X (X Mr.) (X (X Lantos) (X (X 's) (X (X complaints) (X (X simply) (X (X wo) (X (X n't) (X (X wash) (X .))))))))))) (X (X 4) (X (X .) (X (X That) (X (X the) (X (X Journal) (X (X defends) (X (X ``) (X (X the) (X (X sleaze) (X (X ,) (X (X fraud) (X (X ,) (X (X waste) (X (X ,) (X (X embezzlement) (X (X ,) (X (X influence-peddling) (X (X and) (X (X abuse) (X (X of) (X (X the) (X (X public) (X (X that) (X (X took) (X (X place) (X (X while) (X (X Mr.) (X (X Pierce) (X (X was) (X (X secretary) (X (X of) (X (X HUD) (X (X ,) (X (X '') (X (X etc.) (X (X and) (X (X so) (X (X forth) (X .))))))))))))))))))))))))))))))))))))))) (X (X no) (X (X ,) (X (X to) (X (X my) (X (X mind) (X (X ,) (X (X the) (X (X Journal) (X (X did) (X (X not) (X (X ``) (X (X defend) (X (X sleaze) (X (X ,) (X (X fraud) (X (X ,) (X (X waste) (X (X ,) (X (X embezzlement) (X (X ,) (X (X influence-peddling) (X (X and) (X (X abuse) (X (X of) (X (X the) (X (X public) (X (X trust) (X (X ...) (X ''))))))))))))))))))))))))))))) (X (X it) (X (X defended) (X (X appropriate) (X (X constitutional) (X (X safeguards) (X (X and) (X (X practical) (X (X common) (X (X sense) (X .)))))))))) (X (X the) (X (X problem) (X (X ,) (X (X which) (X (X the) (X (X Journal) (X (X so) (X (X rightly) (X (X pointed) (X (X out) (X (X in) (X (X a) (X (X number) (X (X of) (X (X articles) (X (X ,) (X (X is) (X (X not) (X (X the) (X (X likes) (X (X of) (X (X Mr.) (X (X Lantos) (X (X ,) (X (X who) (X (X after) (X (X all) (X (X is) (X (X really) (X (X a) (X (X bit) (X (X player) (X (X on) (X (X the) (X (X stage) (X (X ,) (X (X but) (X (X the) (X (X attempt) (X (X by) (X (X Congress) (X (X to) (X (X enhance) (X (X itself) (X (X into) (X (X a) (X (X quasi-parliamentary\/judicial) (X (X body) (X .))))))))))))))))))))))))))))))))))))))))))))))))) (X (X -lrb-) (X (X Of) (X (X course) (X (X ,) (X (X we) (X (X 've) (X (X also) (X (X got) (X (X a) (X (X judiciary) (X (X that) (X (X seeks) (X (X the) (X (X same) (X (X objective) (X (X .) (X -RRB-))))))))))))))))) (X (X the) (X (X system) (X (X is) (X (X the) (X (X problem) (X (X ,) (X (X not) (X (X an) (X (X individual) (X (X member) (X .))))))))))) (X (X individuals) (X (X can) (X (X always) (X (X have) (X (X their) (X (X hands) (X (X slapped) (X .)))))))) (X (X it) (X (X 's) (X (X when) (X (X such) (X (X slapping) (X (X does) (X (X n't) (X (X occur) (X (X that) (X (X we) (X (X 've) (X (X got) (X (X trouble) (X .)))))))))))))) (X (X i) (X (X do) (X (X not) (X (X by) (X (X any) (X (X means) (X (X defend) (X (X HUD) (X (X management) (X .)))))))))) (X (X but) (X (X I) (X (X think) (X (X the) (X (X kind) (X (X of) (X (X congressional) (X (X investigation) (X (X that) (X (X has) (X (X been) (X (X pursued) (X (X is) (X (X a) (X (X far) (X (X greater) (X (X danger) (X (X to) (X (X American) (X (X notions) (X (X of) (X (X liberty) (X (X and) (X (X freedom) (X (X than) (X (X any) (X (X incompetency) (X (X -LRB-) (X (X and) (X (X ,) (X (X yes) (X (X ,) (X (X maybe) (X (X criminality) (X (X -RRB-) (X (X within) (X (X HUD) (X (X could) (X (X possibly) (X (X generate) (X .))))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X last) (X (X time) (X (X I) (X (X saw) (X (X a) (X (X similar) (X (X congressional) (X (X hearing) (X (X was) (X (X when) (X (X ``) (X (X Tail) (X (X Gunner) (X (X Joe) (X (X '') (X (X McCarthy) (X (X did) (X (X his) (X (X work) (X .))))))))))))))))))))) (X (X raymond) (X Weber)) (X (X parsippany) (X (X ,) (X (X N.J) (X .)))) (X (X i) (X (X disagree) (X (X with) (X (X the) (X (X statement) (X (X by) (X (X Mr.) (X (X Lantos) (X (X that) (X (X one) (X (X should) (X (X not) (X (X draw) (X (X an) (X (X adverse) (X (X inference) (X (X against) (X (X former) (X (X HUD) (X (X officials) (X (X who) (X (X assert) (X (X their) (X (X Fifth) (X (X Amendment) (X (X privilege) (X (X against) (X (X self-incrimination) (X (X in) (X (X congressional) (X (X hearings) (X .)))))))))))))))))))))))))))))))) (X (X the) (X (X Fifth) (X (X Amendment) (X (X states) (X (X in) (X (X relevant) (X (X part) (X (X that) (X (X no) (X (X person) (X (X ``) (X (X shall) (X (X be) (X (X compelled) (X (X ,) (X (X in) (X (X any) (X (X criminal) (X (X case) (X (X ,) (X (X to) (X (X be) (X (X a) (X (X witness) (X (X against) (X (X himself) (X (X .) (X '')))))))))))))))))))))))))))) (X (X this) (X (X privilege) (X (X against) (X (X self-incrimination) (X (X precludes) (X (X the) (X (X drawing) (X (X of) (X (X an) (X (X adverse) (X (X inference) (X (X against) (X (X a) (X (X criminal) (X (X defendant) (X (X who) (X (X chooses) (X (X not) (X (X to) (X (X testify) (X .))))))))))))))))))))) (X (X thus) (X (X ,) (X (X in) (X (X a) (X (X criminal) (X (X case) (X (X ,) (X (X a) (X (X prosecutor) (X (X can) (X (X not) (X (X comment) (X (X on) (X (X a) (X (X defendant) (X (X 's) (X (X failure) (X (X to) (X (X testify) (X (X nor) (X (X can) (X (X the) (X (X defendant) (X (X be) (X (X compelled) (X (X to) (X (X take) (X (X the) (X (X stand) (X (X as) (X (X a) (X (X witness) (X (X ,) (X (X thus) (X (X forcing) (X (X him) (X (X to) (X (X ``) (X (X take) (X (X the) (X (X Fifth) (X (X .) (X ''))))))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X privilege) (X (X ,) (X (X however) (X (X ,) (X (X has) (X (X been) (X (X limited) (X (X in) (X (X accordance) (X (X with) (X (X its) (X (X plain) (X (X language) (X (X to) (X (X protect) (X (X the) (X (X defendant) (X (X in) (X (X criminal) (X (X matters) (X (X only) (X .))))))))))))))))))))))) (X (X the) (X (X Supreme) (X (X Court) (X (X and) (X (X some) (X (X states) (X (X have) (X (X specifically) (X (X recognized) (X (X that) (X (X ``) (X (X the) (X (X Fifth) (X (X Amendment) (X (X does) (X (X not) (X (X preclude) (X (X the) (X (X inference) (X (X where) (X (X the) (X (X privilege) (X (X is) (X (X claimed) (X (X by) (X (X a) (X (X party) (X (X to) (X (X a) (X (X civil) (X (X cause) (X (X .) (X ''))))))))))))))))))))))))))))))))) (X (X baxter) (X (X v.) (X (X Palmingiano) (X (X ,) (X (X 425) (X (X U.S.) (X (X 308) (X (X -LRB-) (X (X 1976) (X (X -RRB-) (X .))))))))))) (X (X thus) (X (X ,) (X (X in) (X (X a) (X (X civil) (X (X case) (X (X ,) (X (X a) (X (X defendant) (X (X may) (X (X be) (X (X called) (X (X as) (X (X a) (X (X witness) (X (X ,) (X (X he) (X (X may) (X (X be) (X (X forced) (X (X to) (X (X testify) (X (X or) (X (X take) (X (X the) (X (X Fifth) (X (X ,) (X (X and) (X (X his) (X (X taking) (X (X of) (X (X the) (X (X Fifth) (X (X may) (X (X permit) (X (X the) (X (X drawing) (X (X of) (X (X an) (X (X adverse) (X (X inference) (X (X against) (X (X him) (X (X in) (X (X the) (X (X civil) (X (X matter) (X .)))))))))))))))))))))))))))))))))))))))))))))))) (X (X he) (X (X may) (X (X take) (X (X the) (X (X Fifth) (X (X in) (X (X a) (X (X civil) (X (X matter) (X (X only) (X (X if) (X (X he) (X (X has) (X (X a) (X (X good) (X (X faith) (X (X and) (X (X justifiable) (X (X belief) (X (X that) (X (X his) (X (X testimony) (X (X may) (X (X subject) (X (X him) (X (X to) (X (X criminal) (X (X prosecution) (X .))))))))))))))))))))))))))))) (X (X allowing) (X (X the) (X (X defendant) (X (X to) (X (X take) (X (X the) (X (X Fifth) (X (X in) (X (X a) (X (X civil) (X (X matter) (X (X is) (X (X not) (X (X based) (X (X on) (X (X a) (X (X constitutional) (X (X right) (X (X to) (X (X refuse) (X (X to) (X (X testify) (X (X where) (X (X one) (X (X 's) (X (X testimony) (X (X harms) (X (X him) (X (X in) (X (X the) (X (X civil) (X (X matter) (X (X ,) (X (X but) (X (X because) (X (X the) (X (X testimony) (X (X in) (X (X the) (X (X civil) (X (X matter) (X (X could) (X (X be) (X (X unconstitutionally) (X (X used) (X (X against) (X (X him) (X (X in) (X (X a) (X (X subsequent) (X (X criminal) (X (X prosecution) (X .))))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X absent) (X (X the) (X (X risk) (X (X of) (X (X such) (X (X prosecution) (X (X ,) (X (X a) (X (X court) (X (X may) (X (X order) (X (X the) (X (X defendant) (X (X to) (X (X testify) (X .)))))))))))))))) (X (X thus) (X (X ,) (X (X when) (X (X Mr.) (X (X Pierce) (X (X asserted) (X (X the) (X (X Fifth) (X (X in) (X (X a) (X (X noncriminal) (X (X proceeding) (X (X ,) (X (X particularly) (X (X after) (X (X presumably) (X (X receiving) (X (X extensive) (X (X advice) (X (X from) (X (X legal) (X (X counsel) (X (X ,) (X (X one) (X (X must) (X (X conclude) (X (X that) (X (X he) (X (X held) (X (X a) (X (X good-faith) (X (X ,) (X (X justifiable) (X (X belief) (X (X that) (X (X his) (X (X testimony) (X (X could) (X (X be) (X (X used) (X (X against) (X (X him) (X (X in) (X (X a) (X (X subsequent) (X (X criminal) (X (X prosecution) (X .)))))))))))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X subcommittee) (X (X ,) (X (X Congress) (X (X and) (X (X the) (X (X American) (X (X public) (X (X have) (X (X every) (X (X right) (X (X to) (X (X draw) (X (X the) (X (X adverse) (X (X inference) (X (X and) (X (X to) (X (X concur) (X (X with) (X (X Mr.) (X (X Pierce) (X (X 's) (X (X own) (X (X belief) (X (X that) (X (X his) (X (X testimony) (X (X could) (X (X help) (X (X convict) (X (X him) (X (X of) (X (X a) (X (X crime) (X .)))))))))))))))))))))))))))))))))))) (X (X drawing) (X (X the) (X (X adverse) (X (X inference) (X (X in) (X (X a) (X (X noncriminal) (X (X congressional) (X (X hearing) (X (X does) (X (X not) (X (X offend) (X (X the) (X (X Fifth) (X (X Amendment) (X (X shield) (X (X against) (X (X self-incrimination) (X .))))))))))))))))))) (X (X clark) (X (X S.) (X (X Spalsbury) (X (X Jr) (X .))))) (X (X estes) (X (X Park) (X (X ,) (X (X Colo) (X .))))) (X (X it) (X (X was) (X (X Friday) (X (X the) (X (X 13th) (X (X ,) (X (X and) (X (X the) (X (X stock) (X (X market) (X (X plummeted) (X (X nearly) (X (X 200) (X (X points) (X .))))))))))))))) (X (X just) (X (X a) (X (X coincidence) (X ?)))) (X (X or) (X (X is) (X (X triskaidekaphobia) (X (X --) (X (X fear) (X (X of) (X (X the) (X (X number) (X (X 13) (X (X --) (X (X justified) (X ?)))))))))))) (X (X in) (X (X academia) (X (X ,) (X (X a) (X (X so-called) (X (X Friday) (X (X the) (X (X 13th) (X (X effect) (X (X has) (X (X been) (X (X set) (X (X up) (X (X and) (X (X shot) (X (X down) (X (X by) (X (X different) (X (X professors) (X .)))))))))))))))))))) (X (X robert) (X (X Kolb) (X (X and) (X (X Ricardo) (X (X Rodriguez) (X (X ,) (X (X professors) (X (X of) (X (X finance) (X (X at) (X (X the) (X (X University) (X (X of) (X (X Miami) (X (X ,) (X (X found) (X (X evidence) (X (X that) (X (X the) (X (X market) (X (X is) (X (X spooked) (X (X by) (X (X Friday) (X (X the) (X (X 13th) (X .))))))))))))))))))))))))))) (X (X but) (X (X their) (X (X study) (X (X ,) (X (X which) (X (X spanned) (X (X the) (X (X 1962-85) (X (X period) (X (X ,) (X (X has) (X (X since) (X (X been) (X (X shown) (X (X to) (X (X be) (X (X jinxed) (X (X by) (X (X an) (X (X unlucky) (X (X choice) (X (X of) (X (X data) (X .)))))))))))))))))))))))) (X (X in) (X (X the) (X (X '70s) (X (X ,) (X (X the) (X (X market) (X (X took) (X (X falls) (X (X nine) (X (X times) (X (X in) (X (X a) (X (X row) (X (X on) (X (X Friday) (X (X the) (X (X you-know-what) (X .)))))))))))))))))) (X (X but) (X (X the) (X (X date) (X (X tends) (X (X to) (X (X be) (X (X a) (X (X plus) (X (X ,) (X (X not) (X (X a) (X (X minus) (X (X ,) (X (X for) (X (X stocks) (X (X ,) (X (X according) (X (X to) (X (X Yale) (X (X Hirsch) (X (X ,) (X (X a) (X (X collector) (X (X of) (X (X stock) (X (X market) (X (X lore) (X .)))))))))))))))))))))))))))) (X (X another) (X (X study) (X (X found) (X (X that) (X (X the) (X (X 82) (X (X Fridays) (X (X the) (X (X 13th) (X (X in) (X (X the) (X (X 1940-1987) (X (X period) (X (X had) (X (X higher) (X (X than) (X (X average) (X (X returns) (X (X --) (X (X higher) (X (X even) (X (X than) (X (X Fridays) (X (X in) (X (X general) (X (X ,) (X (X which) (X (X tend) (X (X to) (X (X be) (X (X strong) (X (X days) (X (X for) (X (X stock) (X (X prices) (X .)))))))))))))))))))))))))))))))))))) (X (X on) (X (X the) (X (X only) (X (X other) (X (X Friday) (X (X the) (X (X 13th) (X (X this) (X (X year) (X (X ,) (X (X the) (X (X Dow) (X (X Jones) (X (X Industrial) (X (X Average) (X (X rose) (X (X about) (X (X four) (X (X points) (X .)))))))))))))))))))) (X (X professor) (X (X Kolb) (X (X says) (X (X the) (X (X original) (X (X study) (X (X ,) (X (X titled) (X (X Friday) (X (X the) (X (X 13th) (X (X ,) (X (X Part) (X (X VII) (X (X ,) (X (X was) (X (X published) (X (X tongue-in-cheek) (X .))))))))))))))))))) (X (X in) (X (X a) (X (X similar) (X (X vein) (X (X ,) (X (X he) (X (X adds) (X (X that) (X (X the) (X (X anniversary) (X (X of) (X (X the) (X (X 1987) (X (X crash) (X (X and) (X (X Saturday) (X (X 's) (X (X full) (X (X moon) (X (X could) (X (X have) (X (X played) (X (X a) (X (X part) (X (X ,) (X (X too) (X (X ,) (X (X in) (X (X Friday) (X (X 's) (X (X market) (X (X activity) (X .))))))))))))))))))))))))))))))))) (X (X reminiscent) (X (X of) (X (X those) (X (X during) (X (X the) (X (X 1987) (X (X crash) (X (X --) (X (X that) (X (X as) (X (X stock) (X (X prices) (X (X plummeted) (X (X and) (X (X trading) (X (X activity) (X (X escalated) (X (X ,) (X (X some) (X (X phone) (X (X calls) (X (X to) (X (X market) (X (X makers) (X (X in) (X (X over-the-counter) (X (X stocks) (X (X went) (X (X unanswered) (X .)))))))))))))))))))))))))))))) (X (X ``) (X (X We) (X (X could) (X (X n't) (X (X get) (X (X dealers) (X (X to) (X (X answer) (X (X their) (X (X phones) (X (X ,) (X (X '') (X (X said) (X (X Robert) (X (X King) (X (X ,) (X (X senior) (X (X vice) (X (X president) (X (X of) (X (X OTC) (X (X trading) (X (X at) (X (X Robinson-Humphrey) (X (X Co.) (X (X in) (X (X Atlanta) (X .)))))))))))))))))))))))))))) (X (X ``) (X (X It) (X (X was) (X (X -LCB-) (X (X like) (X (X -RCB-) (X (X the) (X (X Friday) (X (X before) (X (X Black) (X (X Monday) (X (X '') (X (X two) (X (X years) (X (X ago) (X .)))))))))))))))) (X (X whether) (X (X unanswered) (X (X phone) (X (X calls) (X (X had) (X (X any) (X (X effect) (X (X or) (X (X not) (X (X ,) (X (X Nasdaq) (X (X stocks) (X (X sank) (X (X far) (X (X less) (X (X than) (X (X those) (X (X on) (X (X the) (X (X New) (X (X York) (X (X and) (X (X American) (X (X exchanges) (X .))))))))))))))))))))))))) (X (X nonetheless) (X (X ,) (X (X the) (X (X Nasdaq) (X (X Composite) (X (X Index) (X (X suffered) (X (X its) (X (X biggest) (X (X point) (X (X decline) (X (X of) (X (X the) (X (X year) (X (X and) (X (X its) (X (X sixth) (X (X worst) (X (X ever) (X (X ,) (X (X diving) (X (X 14.90) (X (X ,) (X (X or) (X (X 3) (X (X %) (X (X ,) (X (X to) (X (X 467.29) (X .)))))))))))))))))))))))))))))) (X (X ten) (X (X points) (X (X of) (X (X the) (X (X drop) (X (X occurred) (X (X during) (X (X the) (X (X last) (X (X 45) (X (X minutes) (X (X of) (X (X trading) (X .)))))))))))))) (X (X by) (X (X comparison) (X (X ,) (X (X the) (X (X New) (X (X York) (X (X Stock) (X (X Exchange) (X (X Composite) (X (X tumbled) (X (X 5.8) (X (X %) (X (X Friday) (X (X and) (X (X the) (X (X American) (X (X Stock) (X (X Exchange) (X (X Composite) (X (X fell) (X (X 4) (X (X %) (X .))))))))))))))))))))))) (X (X on) (X (X Oct.) (X (X 16) (X (X ,) (X (X 1987) (X (X ,) (X (X the) (X (X Nasdaq) (X (X Composite) (X (X fell) (X (X 16.18) (X (X points) (X (X ,) (X (X or) (X (X 3.8) (X (X %) (X (X ,) (X (X followed) (X (X by) (X (X its) (X (X devastating) (X (X 46.12-point) (X (X ,) (X (X or) (X (X 11) (X (X %) (X (X slide) (X (X ,) (X (X three) (X (X days) (X (X later) (X .)))))))))))))))))))))))))))))))) (X (X nasdaq) (X (X volume) (X (X Friday) (X (X totaled) (X (X 167.7) (X (X million) (X (X shares) (X (X ,) (X (X which) (X (X was) (X (X only) (X (X the) (X (X fifth) (X (X busiest) (X (X day) (X (X so) (X (X far) (X (X this) (X (X year) (X .)))))))))))))))))))) (X (X the) (X (X single-day) (X (X record) (X (X of) (X (X 288) (X (X million) (X (X shares) (X (X was) (X (X set) (X (X on) (X (X Oct.) (X (X 21) (X ,))))))))))))) (X (X ``) (X (X There) (X (X was) (X (X n't) (X (X a) (X (X lot) (X (X of) (X (X volume) (X (X because) (X (X it) (X (X was) (X (X just) (X (X impossible) (X (X to) (X (X get) (X (X stock) (X (X moved) (X (X ,) (X (X '') (X (X said) (X (X E.E.) (X (X ``) (X (X Buzzy) (X (X '') (X (X Geduld) (X (X ,) (X (X president) (X (X of) (X (X Herzog) (X (X ,) (X (X Heine) (X (X ,) (X (X Geduld) (X (X ,) (X (X a) (X (X New) (X (X York) (X (X company) (X (X that) (X (X makes) (X (X markets) (X (X in) (X (X thousands) (X (X of) (X (X OTC) (X (X issues) (X .))))))))))))))))))))))))))))))))))))))))))))))) (X (X most) (X (X of) (X (X the) (X (X complaints) (X (X about) (X (X unanswered) (X (X phone) (X (X calls) (X (X came) (X (X from) (X (X regional) (X (X brokers) (X (X rather) (X (X than) (X (X individual) (X (X investors) (X .))))))))))))))))) (X (X mr.) (X (X King) (X (X of) (X (X Robinson-Humphrey) (X (X and) (X (X others) (X (X were) (X (X quick) (X (X to) (X (X add) (X (X that) (X (X they) (X (X believe) (X (X the) (X (X problem) (X (X stemmed) (X (X more) (X (X from) (X (X traders) (X (X ') (X (X inability) (X (X to) (X (X handle) (X (X the) (X (X volume) (X (X of) (X (X calls) (X (X ,) (X (X rather) (X (X than) (X (X a) (X (X deliberate) (X (X attempt) (X (X to) (X (X avoid) (X (X making) (X (X trades) (X .)))))))))))))))))))))))))))))))))))))) (X (X the) (X (X subject) (X (X is) (X (X a) (X (X sore) (X (X one) (X (X for) (X (X Nasdaq) (X (X and) (X (X its) (X (X market-making) (X (X companies) (X (X ,) (X (X which) (X (X were) (X (X widely) (X (X criticized) (X (X two) (X (X years) (X (X ago) (X (X following) (X (X complaints) (X (X from) (X (X investors) (X (X who) (X (X could) (X (X n't) (X (X reach) (X (X their) (X (X brokers) (X (X or) (X (X trade) (X (X in) (X (X the) (X (X chaos) (X (X of) (X (X the) (X (X crash) (X .))))))))))))))))))))))))))))))))))))))) (X (X peter) (X (X DaPuzzo) (X (X ,) (X (X head) (X (X of) (X (X retail) (X (X equity) (X (X trading) (X (X at) (X (X Shearson) (X (X Lehman) (X (X Hutton) (X (X ,) (X (X declared) (X (X :) (X (X ``) (X (X It) (X (X was) (X (X the) (X (X last) (X (X hour) (X (X of) (X (X trading) (X (X on) (X (X a) (X (X Friday) (X .))))))))))))))))))))))))))) (X (X there) (X (X were) (X (X too) (X (X many) (X (X phones) (X (X ringing) (X (X and) (X (X too) (X (X many) (X (X things) (X (X happening) (X (X to) (X (X expect) (X (X market) (X (X makers) (X (X to) (X (X be) (X (X as) (X (X efficient) (X (X as) (X (X robots) (X .)))))))))))))))))))))) (X (X it) (X (X was) (X (X n't) (X (X intentional) (X (X ,) (X (X we) (X (X were) (X (X all) (X (X busy) (X (X .) (X ''))))))))))) (X (X james) (X (X Tarantino) (X (X ,) (X (X head) (X (X of) (X (X OTC) (X (X trading) (X (X at) (X (X Hambrecht) (X (X &) (X (X Quist) (X (X in) (X (X San) (X (X Francisco) (X (X ,) (X (X said) (X (X ,) (X (X ``) (X (X It) (X (X was) (X (X just) (X (X like) (X (X two) (X (X years) (X (X ago) (X .)))))))))))))))))))))))))) (X (X everybody) (X (X was) (X (X trying) (X (X to) (X (X do) (X (X the) (X (X same) (X (X thing) (X (X at) (X (X the) (X (X same) (X (X time) (X (X .) (X '')))))))))))))) (X (X jeremiah) (X (X Mullins) (X (X ,) (X (X the) (X (X OTC) (X (X trading) (X (X chief) (X (X at) (X (X Dean) (X (X Witter) (X (X Reynolds) (X (X in) (X (X New) (X (X York) (X (X ,) (X (X said) (X (X proudly) (X (X that) (X (X his) (X (X company) (X (X executed) (X (X every) (X (X order) (X (X it) (X (X received) (X (X by) (X (X the) (X (X close) (X (X of) (X (X trading) (X .))))))))))))))))))))))))))))))) (X (X but) (X (X ,) (X (X he) (X (X added) (X (X ,) (X (X ``) (X (X you) (X (X can) (X (X only) (X (X take) (X (X one) (X (X call) (X (X at) (X (X a) (X (X time) (X (X .) (X ''))))))))))))))))) (X (X market) (X (X makers) (X (X keep) (X (X supplies) (X (X of) (X (X stock) (X (X on) (X (X hand) (X (X to) (X (X maintain) (X (X orderly) (X (X trading) (X (X when) (X (X imbalances) (X (X occur) (X .)))))))))))))))) (X (X on) (X (X days) (X (X like) (X (X Friday) (X (X ,) (X (X that) (X (X means) (X (X they) (X (X must) (X (X buy) (X (X shares) (X (X from) (X (X sellers) (X (X when) (X (X no) (X (X one) (X (X else) (X (X is) (X (X willing) (X (X to) (X .))))))))))))))))))))) (X (X when) (X (X selling) (X (X is) (X (X so) (X (X frenzied) (X (X ,) (X (X prices) (X (X fall) (X (X steeply) (X (X and) (X (X fast) (X .)))))))))))) (X (X two) (X (X years) (X (X ago) (X (X ,) (X (X faced) (X (X with) (X (X the) (X (X possibility) (X (X of) (X (X heavy) (X (X losses) (X (X on) (X (X the) (X (X stocks) (X (X in) (X (X their) (X (X inventories) (X (X ,) (X (X market) (X (X makers) (X (X themselves) (X (X began) (X (X dumping) (X (X shares) (X (X ,) (X (X exacerbating) (X (X the) (X (X slide) (X (X in) (X (X OTC) (X (X stock) (X (X prices) (X .))))))))))))))))))))))))))))))))) (X (X on) (X (X Friday) (X (X ,) (X (X some) (X (X market) (X (X makers) (X (X were) (X (X selling) (X (X again) (X (X ,) (X (X traders) (X (X said) (X .))))))))))))) (X (X but) (X (X ,) (X (X with) (X (X profits) (X (X sagging) (X (X on) (X (X Wall) (X (X Street) (X (X since) (X (X the) (X (X crash) (X (X ,) (X (X companies) (X (X have) (X (X kept) (X (X smaller) (X (X share) (X (X stockpiles) (X (X on) (X (X hand) (X .))))))))))))))))))))) (X (X mr.) (X (X Tarantino) (X (X of) (X (X Hambrecht) (X (X &) (X (X Quist) (X (X said) (X (X some) (X (X prices) (X (X fell) (X (X without) (X (X trades) (X (X taking) (X (X place) (X (X ,) (X (X as) (X (X market) (X (X makers) (X (X kept) (X (X dropping) (X (X the) (X (X prices) (X (X at) (X (X which) (X (X they) (X (X would) (X (X buy) (X (X shares) (X .))))))))))))))))))))))))))))) (X (X ``) (X (X Everyone) (X (X was) (X (X hitting) (X (X everyone) (X (X else) (X (X 's) (X (X bid) (X (X ,) (X (X '') (X (X he) (X (X said) (X .))))))))))))) (X (X so) (X (X ,) (X (X while) (X (X OTC) (X (X companies) (X (X incurred) (X (X losses) (X (X on) (X (X Friday) (X (X ,) (X (X trading) (X (X officials) (X (X said) (X (X the) (X (X damage) (X (X was) (X (X n't) (X (X as) (X (X bad) (X (X as) (X (X it) (X (X was) (X (X in) (X (X 1987) (X .))))))))))))))))))))))))) (X (X ``) (X (X Two) (X (X years) (X (X ago) (X (X we) (X (X were) (X (X carrying) (X (X huge) (X (X inventories) (X (X and) (X (X that) (X (X was) (X (X the) (X (X big) (X (X culprit) (X .)))))))))))))))) (X (X i) (X (X do) (X (X n't) (X (X know) (X (X of) (X (X anyone) (X (X carrying) (X (X big) (X (X inventories) (X (X now) (X (X ,) (X (X '') (X (X said) (X (X Mr.) (X (X King) (X (X of) (X (X Robinson-Humphrey) (X .)))))))))))))))))) (X (X tony) (X (X Cecin) (X (X ,) (X (X head) (X (X of) (X (X equity) (X (X trading) (X (X at) (X (X Piper) (X (X ,) (X (X Jaffray) (X (X &) (X (X Hopwood) (X (X in) (X (X Minneapolis) (X (X ,) (X (X said) (X (X that) (X (X Piper) (X (X Jaffray) (X (X actually) (X (X made) (X (X money) (X (X on) (X (X Friday) (X .)))))))))))))))))))))))))) (X (X it) (X (X helped) (X (X that) (X (X his) (X (X inventory) (X (X is) (X (X a) (X (X third) (X (X smaller) (X (X now) (X (X than) (X (X it) (X (X was) (X (X two) (X (X years) (X (X ago) (X (X ,) (X (X he) (X (X said) (X .)))))))))))))))))))) (X (X joseph) (X (X Hardiman) (X (X ,) (X (X president) (X (X of) (X (X the) (X (X National) (X (X Association) (X (X of) (X (X Securities) (X (X Dealers) (X (X ,) (X (X which) (X (X oversees) (X (X the) (X (X Nasdaq) (X (X computerized) (X (X trading) (X (X system) (X (X ,) (X (X said) (X (X that) (X (X despite) (X (X the) (X (X rush) (X (X of) (X (X selling) (X (X ,) (X (X he) (X (X never) (X (X considered) (X (X the) (X (X situation) (X (X an) (X (X ``) (X (X emergency) (X (X .) (X '')))))))))))))))))))))))))))))))))))))) (X (X ``) (X (X The) (X (X pace) (X (X of) (X (X trading) (X (X was) (X (X orderly) (X (X ,) (X (X '') (X (X he) (X (X said) (X .)))))))))))) (X (X nasdaq) (X (X 's) (X (X Small) (X (X Order) (X (X Execution) (X (X System) (X (X ``) (X (X worked) (X (X beautifully) (X (X ,) (X (X '') (X (X as) (X (X did) (X (X the) (X (X automated) (X (X system) (X (X for) (X (X larger) (X (X trades) (X (X ,) (X (X according) (X (X to) (X (X Mr.) (X (X Hardiman) (X .))))))))))))))))))))))))) (X (X nevertheless) (X (X ,) (X (X the) (X (X shock) (X (X of) (X (X another) (X (X steep) (X (X plunge) (X (X in) (X (X stock) (X (X prices) (X (X undoubtedly) (X (X will) (X (X shake) (X (X many) (X (X investors) (X (X ') (X (X confidence) (X .))))))))))))))))))) (X (X in) (X (X the) (X (X past) (X (X ,) (X (X the) (X (X OTC) (X (X market) (X (X thrived) (X (X on) (X (X a) (X (X firm) (X (X base) (X (X of) (X (X small-investor) (X (X participation) (X .)))))))))))))))) (X (X because) (X (X Nasdaq) (X (X 's) (X (X trading) (X (X volume) (X (X has) (X (X n't) (X (X returned) (X (X to) (X (X pre-crash) (X (X levels) (X (X ,) (X (X traders) (X (X and) (X (X OTC) (X (X market) (X (X officials) (X (X hope) (X (X the) (X (X damage) (X (X wo) (X (X n't) (X (X be) (X (X permanent) (X .))))))))))))))))))))))))) (X (X but) (X (X they) (X (X are) (X (X worried) (X .))))) (X (X ``) (X (X We) (X (X were) (X (X just) (X (X starting) (X (X to) (X (X get) (X (X the) (X (X public) (X (X 's) (X (X confidence) (X (X back) (X (X ,) (X (X '') (X (X lamented) (X (X Mr.) (X (X Mullins) (X (X of) (X (X Dean) (X (X Witter) (X .))))))))))))))))))))) (X (X more) (X (X troubling) (X (X is) (X (X the) (X (X prospect) (X (X that) (X (X the) (X (X overall) (X (X collapse) (X (X in) (X (X stock) (X (X prices) (X (X could) (X (X permanently) (X (X erode) (X (X the) (X (X base) (X (X of) (X (X small-investor) (X (X support) (X (X the) (X (X OTC) (X (X market) (X (X was) (X (X struggling) (X (X to) (X (X rebuild) (X (X in) (X (X the) (X (X wake) (X (X of) (X (X the) (X (X October) (X (X 1987) (X (X crash) (X .)))))))))))))))))))))))))))))))))))) (X (X mr.) (X (X Cecin) (X (X of) (X (X Piper) (X (X Jaffray) (X (X says) (X (X some) (X (X action) (X (X from) (X (X government) (X (X policy) (X (X makers) (X (X would) (X (X allay) (X (X investor) (X (X fears) (X .))))))))))))))))) (X (X it) (X (X wo) (X (X n't) (X (X take) (X (X much) (X (X more) (X (X to) (X (X ``) (X (X scare) (X (X the) (X (X hell) (X (X out) (X (X of) (X (X retail) (X (X investors) (X (X ,) (X (X '') (X (X he) (X (X says) (X .)))))))))))))))))))) (X (X the) (X (X sellers) (X (X on) (X (X Friday) (X (X came) (X (X from) (X (X all) (X (X corners) (X (X of) (X (X the) (X (X OTC) (X (X market) (X (X --) (X (X big) (X (X and) (X (X small) (X (X institutional) (X (X investors) (X (X ,) (X (X as) (X (X well) (X (X as) (X (X individual) (X (X investors) (X (X and) (X (X market) (X (X makers) (X .)))))))))))))))))))))))))))) (X (X but) (X (X grateful) (X (X traders) (X (X said) (X (X the) (X (X sell) (X (X orders) (X (X generally) (X (X ranged) (X (X from) (X (X 20,000) (X (X shares) (X (X to) (X (X 50,000) (X (X shares) (X (X ,) (X (X compared) (X (X with) (X (X blocks) (X (X of) (X (X 500,000) (X (X shares) (X (X or) (X (X more) (X (X two) (X (X years) (X (X ago) (X .)))))))))))))))))))))))))))) (X (X shearson) (X (X 's) (X (X Mr.) (X (X DaPuzzo) (X (X said) (X (X retail) (X (X investors) (X (X nervously) (X (X sold) (X (X stock) (X (X Friday) (X (X and) (X (X never) (X (X returned) (X (X to) (X (X bargain-hunt) (X .))))))))))))))))) (X (X institutional) (X (X investors) (X (X ,) (X (X which) (X (X had) (X (X been) (X (X selling) (X (X stock) (X (X throughout) (X (X last) (X (X week) (X (X to) (X (X lock) (X (X in) (X (X handsome) (X (X gains) (X (X made) (X (X through) (X (X the) (X (X third) (X (X quarter) (X (X ,) (X (X were) (X (X calmer) (X .))))))))))))))))))))))))) (X (X ``) (X (X We) (X (X had) (X (X a) (X (X good) (X (X amount) (X (X of) (X (X selling) (X (X from) (X (X institutions) (X (X ,) (X (X but) (X (X not) (X (X as) (X (X much) (X (X panic) (X (X ,) (X (X '') (X (X Mr.) (X (X DaPuzzo) (X (X said) (X .)))))))))))))))))))))) (X (X ``) (X (X If) (X (X they) (X (X could) (X (X n't) (X (X sell) (X (X ,) (X (X some) (X (X of) (X (X them) (X (X put) (X (X the) (X (X shares) (X (X back) (X (X on) (X (X the) (X (X shelf) (X (X .) (X ''))))))))))))))))))) (X (X in) (X (X addition) (X (X ,) (X (X he) (X (X said) (X (X ,) (X (X some) (X (X bigger) (X (X institutional) (X (X investors) (X (X placed) (X (X bids) (X (X to) (X (X buy) (X (X some) (X (X OTC) (X (X stocks) (X (X whose) (X (X prices) (X (X were) (X (X beaten) (X (X down) (X .))))))))))))))))))))))) (X (X in) (X (X addition) (X (X ,) (X (X Mr.) (X (X DaPuzzo) (X (X said) (X (X computer-guided) (X (X program) (X (X selling) (X (X of) (X (X OTC) (X (X stocks) (X (X in) (X (X the) (X (X Russell) (X (X Index) (X (X of) (X (X 2000) (X (X small) (X (X stocks) (X (X and) (X (X the) (X (X Standard) (X (X &) (X (X Poor) (X (X 's) (X (X 500-stock) (X (X Index) (X (X sent) (X (X occasional) (X (X ``) (X (X waves) (X (X ``) (X (X through) (X (X the) (X (X market) (X .))))))))))))))))))))))))))))))))))))) (X (X nasdaq) (X (X 's) (X (X biggest) (X (X stocks) (X (X were) (X (X hammered) (X .))))))) (X (X the) (X (X Nasdaq) (X (X 100) (X (X Index) (X (X of) (X (X the) (X (X largest) (X (X nonfinancial) (X (X issues) (X (X ,) (X (X including) (X (X the) (X (X big) (X (X OTC) (X (X technology) (X (X issues) (X (X ,) (X (X tumbled) (X (X 4.2) (X (X %) (X (X ,) (X (X or) (X (X 19.76) (X (X ,) (X (X to) (X (X 449.33) (X .))))))))))))))))))))))))))) (X (X the) (X (X Nasdaq) (X (X Financial) (X (X Index) (X (X of) (X (X giant) (X (X insurance) (X (X and) (X (X banking) (X (X stocks) (X (X dropped) (X (X 2) (X (X %) (X (X ,) (X (X or) (X (X 9.31) (X (X ,) (X (X to) (X (X 462.98) (X .)))))))))))))))))))) (X (X the) (X (X OTC) (X (X market) (X (X has) (X (X only) (X (X a) (X (X handful) (X (X of) (X (X takeover-related) (X (X stocks) (X .))))))))))) (X (X but) (X (X they) (X (X fell) (X (X sharply) (X .))))) (X (X mccaw) (X (X Cellular) (X (X Communications) (X (X ,) (X (X for) (X (X instance) (X (X ,) (X (X has) (X (X offered) (X (X to) (X (X buy) (X (X LIN) (X (X Broadcasting) (X (X as) (X (X well) (X (X as) (X (X Metromedia) (X (X 's) (X (X New) (X (X York) (X (X City) (X (X cellular) (X (X telephone) (X (X interests) (X (X ,) (X (X and) (X (X in) (X (X a) (X (X separate) (X (X transaction) (X (X ,) (X (X sell) (X (X certain) (X (X McCaw) (X (X properties) (X (X to) (X (X Contel) (X (X Cellular) (X .))))))))))))))))))))))))))))))))))))))) (X (X mccaw) (X (X lost) (X (X 8) (X (X %) (X (X ,) (X (X or) (X (X 3) (X (X 1\/2) (X (X ,) (X (X to) (X (X 40) (X .)))))))))))) (X (X lin) (X (X Broadcasting) (X (X ,) (X (X dropped) (X (X 5) (X (X 1\/2) (X (X ,) (X (X or) (X (X 5) (X (X %) (X (X ,) (X (X to) (X (X 107) (X (X 1\/2) (X .))))))))))))))) (X (X the) (X (X turnover) (X (X in) (X (X both) (X (X issues) (X (X was) (X (X roughly) (X (X normal) (X .))))))))) (X (X on) (X (X a) (X (X day) (X (X when) (X (X negative) (X (X takeover-related) (X (X news) (X (X did) (X (X n't) (X (X sit) (X (X well) (X (X with) (X (X investors) (X (X ,) (X (X Commercial) (X (X Intertech) (X (X ,) (X (X a) (X (X maker) (X (X of) (X (X engineered) (X (X metal) (X (X parts) (X (X ,) (X (X said) (X (X Haas) (X (X &) (X (X Partners) (X (X advised) (X (X it) (X (X that) (X (X it) (X (X does) (X (X n't) (X (X plan) (X (X to) (X (X pursue) (X (X its) (X (X previously) (X (X reported) (X (X $) (X (X 27.50-a-share) (X (X bid) (X (X to) (X (X buy) (X (X the) (X (X company) (X .)))))))))))))))))))))))))))))))))))))))))))))))) (X (X commercial) (X (X Intertech) (X (X plummeted) (X (X 6) (X (X to) (X (X 26) (X .))))))) (X (X the) (X (X issues) (X (X of) (X (X companies) (X (X with) (X (X ties) (X (X to) (X (X the) (X (X junk) (X (X bond) (X (X market) (X (X also) (X (X tumbled) (X (X Friday) (X .))))))))))))))) (X (X on) (X (X the) (X (X OTC) (X (X market) (X (X ,) (X (X First) (X (X Executive) (X (X ,) (X (X a) (X (X big) (X (X buyer) (X (X of) (X (X the) (X (X high-risk) (X (X ,) (X (X high-yield) (X (X issues) (X (X ,) (X (X slid) (X (X 2) (X (X to) (X (X 12) (X (X 1\/4) (X .)))))))))))))))))))))))) (X (X among) (X (X other) (X (X OTC) (X (X issues) (X (X ,) (X (X Intel) (X (X ,) (X (X dropped) (X (X 2) (X (X 1\/8) (X (X to) (X (X 33) (X (X 7\/8) (X (X ;) (X (X Laidlaw) (X (X Transportation) (X (X lost) (X (X 1) (X (X 1\/8) (X (X to) (X (X 19) (X (X 1\/2) (X (X ;) (X (X the) (X (X American) (X (X depositary) (X (X receipts) (X (X of) (X (X Jaguar) (X (X were) (X (X off) (X (X 1\/4) (X (X to) (X (X 10) (X (X 1\/4) (X (X ;) (X (X MCI) (X (X Communications) (X (X slipped) (X (X 2) (X (X 1\/4) (X (X to) (X (X 43) (X (X 1\/2) (X (X ;) (X (X Apple) (X (X Computer) (X (X fell) (X (X 3) (X (X to) (X (X 45) (X (X 3\/4) (X (X and) (X (X Nike) (X (X dropped) (X (X 2) (X (X 1\/4) (X (X to) (X (X 66) (X (X 3\/4) (X .))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X friday) (X (X ,) (X (X October) (X (X 13) (X (X ,) (X 1989)))))) (X (X the) (X (X key) (X (X U.S.) (X (X and) (X (X foreign) (X (X annual) (X (X interest) (X (X rates) (X (X below) (X (X are) (X (X a) (X (X guide) (X (X to) (X (X general) (X (X levels) (X (X but) (X (X do) (X (X n't) (X (X always) (X (X represent) (X (X actual) (X (X transactions) (X .))))))))))))))))))))))) (X (X prime) (X (X RATE) (X :))) (X (X 10) (X (X 1\/2) (X (X %) (X .)))) (X (X the) (X (X base) (X (X rate) (X (X on) (X (X corporate) (X (X loans) (X (X at) (X (X large) (X (X U.S.) (X (X money) (X (X center) (X (X commercial) (X (X banks) (X .)))))))))))))) (X (X federal) (X (X FUNDS) (X :))) (X (X 8) (X (X 13\/16) (X (X %) (X (X high) (X (X ,) (X (X 8) (X (X 1\/2) (X (X %) (X (X low) (X (X ,) (X (X 8) (X (X 5\/8) (X (X %) (X (X near) (X (X closing) (X (X bid) (X (X ,) (X (X 8) (X (X 3\/4) (X (X %) (X (X offered) (X .)))))))))))))))))))))) (X (X reserves) (X (X traded) (X (X among) (X (X commercial) (X (X banks) (X (X for) (X (X overnight) (X (X use) (X (X in) (X (X amounts) (X (X of) (X (X $) (X (X 1) (X (X million) (X (X or) (X (X more) (X .))))))))))))))))) (X (X source) (X (X :) (X (X Fulton) (X (X Prebon) (X (X -LRB-) (X (X U.S.A) (X (X .) (X (X -RRB-) (X (X Inc) (X .)))))))))) (X (X discount) (X (X RATE) (X :))) (X (X 7) (X (X %) (X .))) (X (X the) (X (X charge) (X (X on) (X (X loans) (X (X to) (X (X depository) (X (X institutions) (X (X by) (X (X the) (X (X New) (X (X York) (X (X Federal) (X (X Reserve) (X (X Bank) (X .))))))))))))))) (X (X call) (X (X MONEY) (X :))) (X (X 9) (X (X 3\/4) (X (X %) (X (X to) (X (X 10) (X (X %) (X .))))))) (X (X the) (X (X charge) (X (X on) (X (X loans) (X (X to) (X (X brokers) (X (X on) (X (X stock) (X (X exchange) (X (X collateral) (X .))))))))))) (X (X commercial) (X (X PAPER) (X (X placed) (X (X directly) (X (X by) (X (X General) (X (X Motors) (X (X Acceptance) (X (X Corp.) (X :)))))))))) (X (X 8.60) (X (X %) (X (X 30) (X (X to) (X (X 44) (X (X days) (X (X ;) (X (X 8.55) (X (X %) (X (X 45) (X (X to) (X (X 59) (X (X days) (X (X ;) (X (X 8.375) (X (X %) (X (X 60) (X (X to) (X (X 79) (X (X days) (X (X ;) (X (X 8.50) (X (X %) (X (X 80) (X (X to) (X (X 89) (X (X days) (X (X ;) (X (X 8.25) (X (X %) (X (X 90) (X (X to) (X (X 119) (X (X days) (X (X ;) (X (X 8.125) (X (X %) (X (X 120) (X (X to) (X (X 149) (X (X days) (X (X ;) (X (X 8) (X (X %) (X (X 150) (X (X to) (X (X 179) (X (X days) (X (X ;) (X (X 7.625) (X (X %) (X (X 180) (X (X to) (X (X 270) (X (X days) (X .)))))))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X commercial) (X (X PAPER) (X :))) (X (X high-grade) (X (X unsecured) (X (X notes) (X (X sold) (X (X through) (X (X dealers) (X (X by) (X (X major) (X (X corporations) (X (X in) (X (X multiples) (X (X of) (X (X $) (X (X 1,000) (X :))))))))))))))) (X (X 8.65) (X (X %) (X (X 30) (X (X days) (X (X ;) (X (X 8.55) (X (X %) (X (X 60) (X (X days) (X (X ;) (X (X 8.55) (X (X %) (X (X 90) (X (X days) (X .))))))))))))))) (X (X certificates) (X (X OF) (X (X DEPOSIT) (X :)))) (X (X 8.15) (X (X %) (X (X one) (X (X month) (X (X ;) (X (X 8.15) (X (X %) (X (X two) (X (X months) (X (X ;) (X (X 8.13) (X (X %) (X (X three) (X (X months) (X (X ;) (X (X 8.11) (X (X %) (X (X six) (X (X months) (X (X ;) (X (X 8.08) (X (X %) (X (X one) (X (X year) (X .))))))))))))))))))))))))) (X (X average) (X (X of) (X (X top) (X (X rates) (X (X paid) (X (X by) (X (X major) (X (X New) (X (X York) (X (X banks) (X (X on) (X (X primary) (X (X new) (X (X issues) (X (X of) (X (X negotiable) (X (X C.D.s) (X (X ,) (X (X usually) (X (X on) (X (X amounts) (X (X of) (X (X $) (X (X 1) (X (X million) (X (X and) (X (X more) (X .)))))))))))))))))))))))))))) (X (X the) (X (X minimum) (X (X unit) (X (X is) (X (X $) (X (X 100,000) (X .))))))) (X (X typical) (X (X rates) (X (X in) (X (X the) (X (X secondary) (X (X market) (X :))))))) (X (X 8.65) (X (X %) (X (X one) (X (X month) (X (X ;) (X (X 8.65) (X (X %) (X (X three) (X (X months) (X (X ;) (X (X 8.55) (X (X %) (X (X six) (X (X months) (X .))))))))))))))) (X (X bankers) (X (X ACCEPTANCES) (X :))) (X (X 8.52) (X (X %) (X (X 30) (X (X days) (X (X ;) (X (X 8.37) (X (X %) (X (X 60) (X (X days) (X (X ;) (X (X 8.15) (X (X %) (X (X 90) (X (X days) (X (X ;) (X (X 7.98) (X (X %) (X (X 120) (X (X days) (X (X ;) (X (X 7.92) (X (X %) (X (X 150) (X (X days) (X (X ;) (X (X 7.80) (X (X %) (X (X 180) (X (X days) (X .)))))))))))))))))))))))))))))) (X (X negotiable) (X (X ,) (X (X bank-backed) (X (X business) (X (X credit) (X (X instruments) (X (X typically) (X (X financing) (X (X an) (X (X import) (X (X order) (X .)))))))))))) (X (X london) (X (X LATE) (X (X EURODOLLARS) (X :)))) (X (X 8) (X (X 13\/16) (X (X %) (X (X to) (X (X 8) (X (X 11\/16) (X (X %) (X (X one) (X (X month) (X (X ;) (X (X 8) (X (X 13\/16) (X (X %) (X (X to) (X (X 8) (X (X 11\/16) (X (X %) (X (X two) (X (X months) (X (X ;) (X (X 8) (X (X 13\/16) (X (X %) (X (X to) (X (X 8) (X (X 11\/16) (X (X %) (X (X three) (X (X months) (X (X ;) (X (X 8) (X (X 3\/4) (X (X %) (X (X to) (X (X 8) (X (X 5\/8) (X (X %) (X (X four) (X (X months) (X (X ;) (X (X 8) (X (X 11\/16) (X (X %) (X (X to) (X (X 8) (X (X 9\/16) (X (X %) (X (X five) (X (X months) (X (X ;) (X (X 8) (X (X 5\/8) (X (X %) (X (X to) (X (X 8) (X (X 1\/2) (X (X %) (X (X six) (X (X months) (X .)))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X london) (X (X INTERBANK) (X (X OFFERED) (X (X RATES) (X (X -LRB-) (X (X LIBOR) (X (X -RRB-) (X :)))))))) (X (X 8) (X (X 3\/4) (X (X %) (X (X one) (X (X month) (X (X ;) (X (X 8) (X (X 3\/4) (X (X %) (X (X three) (X (X months) (X (X ;) (X (X 8) (X (X 9\/16) (X (X %) (X (X six) (X (X months) (X (X ;) (X (X 8) (X (X 9\/16) (X (X %) (X (X one) (X (X year) (X .)))))))))))))))))))))))) (X (X the) (X (X average) (X (X of) (X (X interbank) (X (X offered) (X (X rates) (X (X for) (X (X dollar) (X (X deposits) (X (X in) (X (X the) (X (X London) (X (X market) (X (X based) (X (X on) (X (X quotations) (X (X at) (X (X five) (X (X major) (X (X banks) (X .))))))))))))))))))))) (X (X foreign) (X (X PRIME) (X (X RATES) (X :)))) (X (X canada) (X (X 13.50) (X (X %) (X (X ;) (X (X Germany) (X (X 8.50) (X (X %) (X (X ;) (X (X Japan) (X (X 4.875) (X (X %) (X (X ;) (X (X Switzerland) (X (X 8.50) (X (X %) (X (X ;) (X (X Britain) (X (X 15) (X (X %) (X .)))))))))))))))))))) (X (X these) (X (X rate) (X (X indications) (X (X are) (X (X n't) (X (X directly) (X (X comparable) (X (X ;) (X (X lending) (X (X practices) (X (X vary) (X (X widely) (X (X by) (X (X location) (X .))))))))))))))) (X (X treasury) (X (X BILLS) (X :))) (X (X results) (X (X of) (X (X the) (X (X Tuesday) (X (X ,) (X (X October) (X (X 10) (X (X ,) (X (X 1989) (X (X ,) (X (X auction) (X (X of) (X (X short-term) (X (X U.S.) (X (X government) (X (X bills) (X (X ,) (X (X sold) (X (X at) (X (X a) (X (X discount) (X (X from) (X (X face) (X (X value) (X (X in) (X (X units) (X (X of) (X (X $) (X (X 10,000) (X (X to) (X (X $) (X (X 1) (X (X million) (X :)))))))))))))))))))))))))))))))))) (X (X 7.63) (X (X %) (X (X 13) (X (X weeks) (X (X ;) (X (X 7.60) (X (X %) (X (X 26) (X (X weeks) (X .)))))))))) (X (X federal) (X (X HOME) (X (X LOAN) (X (X MORTGAGE) (X (X CORP) (X (X .) (X (X -LRB-) (X (X Freddie) (X (X Mac) (X (X -RRB-) (X :))))))))))) (X (X posted) (X (X yields) (X (X on) (X (X 30-year) (X (X mortgage) (X (X commitments) (X (X for) (X (X delivery) (X (X within) (X (X 30) (X (X days) (X .)))))))))))) (X (X 9.91) (X (X %) (X (X ,) (X (X standard) (X (X conventional) (X (X fixedrate) (X (X mortgages) (X (X ;) (X (X 7.875) (X (X %) (X (X ,) (X (X 2) (X (X %) (X (X rate) (X (X capped) (X (X one-year) (X (X adjustable) (X (X rate) (X (X mortgages) (X .)))))))))))))))))))) (X (X source) (X (X :) (X (X Telerate) (X (X Systems) (X (X Inc) (X .)))))) (X (X federal) (X (X NATIONAL) (X (X MORTGAGE) (X (X ASSOCIATION) (X (X -LRB-) (X (X Fannie) (X (X Mae) (X (X -RRB-) (X :))))))))) (X (X posted) (X (X yields) (X (X on) (X (X 30) (X (X year) (X (X mortgage) (X (X commitments) (X (X for) (X (X delivery) (X (X within) (X (X 30) (X (X days) (X (X -LRB-) (X (X priced) (X (X at) (X (X par) (X -RRB-))))))))))))))))) (X (X 9.86) (X (X %) (X (X ,) (X (X standard) (X (X conventional) (X (X fixed-rate) (X (X mortgages) (X (X ;) (X (X 8.85) (X (X %) (X (X ,) (X (X 6\/2) (X (X rate) (X (X capped) (X (X one-year) (X (X adjustable) (X (X rate) (X (X mortgages) (X .))))))))))))))))))) (X (X source) (X (X :) (X (X Telerate) (X (X Systems) (X (X Inc) (X .)))))) (X (X merrill) (X (X LYNCH) (X (X READY) (X (X ASSETS) (X (X TRUST) (X :)))))) (X (X 8.33) (X (X %) (X .))) (X (X annualized) (X (X average) (X (X rate) (X (X of) (X (X return) (X (X after) (X (X expenses) (X (X for) (X (X the) (X (X past) (X (X 30) (X (X days) (X (X ;) (X (X not) (X (X a) (X (X forecast) (X (X of) (X (X future) (X (X returns) (X .)))))))))))))))))))) (X (X pension) (X (X funds) (X (X ,) (X (X insurers) (X (X and) (X (X other) (X (X behemoths) (X (X of) (X (X the) (X (X investing) (X (X world) (X (X said) (X (X they) (X (X began) (X (X scooping) (X (X up) (X (X stocks) (X (X during) (X (X Friday) (X (X 's) (X (X market) (X (X rout) (X .))))))))))))))))))))))) (X (X and) (X (X they) (X (X plan) (X (X to) (X (X buy) (X (X more) (X (X today) (X .)))))))) (X (X rightly) (X (X or) (X (X wrongly) (X (X ,) (X (X many) (X (X giant) (X (X institutional) (X (X investors) (X (X appear) (X (X to) (X (X be) (X (X fighting) (X (X the) (X (X latest) (X (X war) (X (X by) (X (X applying) (X (X the) (X (X lesson) (X (X they) (X (X learned) (X (X in) (X (X the) (X (X October) (X (X 1987) (X (X crash) (X (X :) (X (X Buying) (X (X at) (X (X the) (X (X bottom) (X (X pays) (X (X off) (X .)))))))))))))))))))))))))))))))))) (X (X to) (X (X be) (X (X sure) (X (X ,) (X (X big) (X (X investors) (X (X might) (X (X put) (X (X away) (X (X their) (X (X checkbooks) (X (X in) (X (X a) (X (X hurry) (X (X if) (X (X stocks) (X (X open) (X (X sharply) (X (X lower) (X (X today) (X .))))))))))))))))))))) (X (X they) (X (X could) (X (X still) (X (X panic) (X (X and) (X (X bail) (X (X out) (X (X of) (X (X the) (X (X market) (X .))))))))))) (X (X but) (X (X their) (X (X 1987) (X (X performance) (X (X indicates) (X (X that) (X (X they) (X (X wo) (X (X n't) (X (X abandon) (X (X stocks) (X (X unless) (X (X conditions) (X (X get) (X (X far) (X (X worse) (X .))))))))))))))))) (X (X ``) (X (X Last) (X (X time) (X (X ,) (X (X we) (X (X got) (X (X rewarded) (X (X for) (X (X going) (X (X out) (X (X and) (X (X buying) (X (X stocks) (X (X when) (X (X the) (X (X panic) (X (X was) (X (X the) (X (X worst) (X (X ,) (X (X '') (X (X said) (X (X John) (X (X W.) (X (X Rogers) (X (X ,) (X (X president) (X (X of) (X (X Chicago-based) (X (X Ariel) (X (X Capital) (X (X Management) (X (X Inc.) (X (X ,) (X (X which) (X (X manages) (X (X $) (X (X 1.1) (X (X billion) (X (X of) (X (X stocks) (X .)))))))))))))))))))))))))))))))))))))))))) (X (X mr.) (X (X Rogers) (X (X spent) (X (X half) (X (X his) (X (X cash) (X (X on) (X (X hand) (X (X Friday) (X (X for) (X (X ``) (X (X our) (X (X favorite) (X (X stocks) (X (X that) (X (X have) (X (X fallen) (X (X apart) (X (X .) (X '')))))))))))))))))))) (X (X he) (X (X expects) (X (X to) (X (X invest) (X (X the) (X (X rest) (X (X if) (X (X the) (X (X market) (X (X weakens) (X (X further) (X .)))))))))))) (X (X denver-based) (X (X portfolio) (X (X manager) (X (X James) (X (X Craig) (X (X was) (X (X n't) (X (X daunted) (X (X when) (X (X Friday) (X (X 's) (X (X rout) (X (X shaved) (X (X $) (X (X 40) (X (X million) (X (X from) (X (X the) (X (X value) (X (X of) (X (X the) (X (X $) (X (X 752) (X (X million) (X (X Janus) (X (X Fund) (X (X he) (X (X oversees) (X .))))))))))))))))))))))))))))) (X (X ``) (X (X I) (X (X waited) (X (X to) (X (X make) (X (X sure) (X (X all) (X (X the) (X (X program) (X (X trades) (X (X had) (X (X kicked) (X (X through) (X (X ,) (X (X '') (X (X he) (X (X said) (X .)))))))))))))))))) (X (X then) (X (X he) (X (X jumped) (X (X into) (X (X the) (X (X market) (X :))))))) (X (X ``) (X (X I) (X (X spent) (X (X $) (X (X 30) (X (X million) (X (X in) (X (X the) (X (X last) (X (X half-hour) (X (X .) (X '')))))))))))) (X (X other) (X (X money) (X (X managers) (X (X also) (X (X opened) (X (X their) (X (X wallets) (X .)))))))) (X (X ``) (X (X I) (X (X was) (X (X buying) (X (X at) (X (X the) (X (X close) (X (X -LRB-) (X (X Friday) (X (X -RRB-) (X (X and) (X (X I) (X (X 'll) (X (X be) (X (X buying) (X (X again) (X (X because) (X (X I) (X (X know) (X (X we) (X (X 're) (X (X getting) (X (X good) (X (X value) (X (X ,) (X (X '') (X (X said) (X (X Frederick) (X (X A.) (X (X Moran) (X (X ,) (X (X president) (X (X of) (X (X Moran) (X (X Asset) (X (X Management) (X (X Inc.) (X (X ,) (X (X Greenwich) (X (X ,) (X (X Conn) (X .)))))))))))))))))))))))))))))))))))))))))) (X (X ``) (X (X There) (X (X is) (X (X no) (X (X justification) (X (X on) (X (X the) (X (X fundamental) (X (X level) (X (X for) (X (X this) (X (X crash) (X (X .) (X '')))))))))))))) (X (X unlike) (X (X mutual) (X (X funds) (X (X ,) (X (X which) (X (X can) (X (X be) (X (X forced) (X (X to) (X (X sell) (X (X stockholdings) (X (X when) (X (X investors) (X (X rush) (X (X to) (X (X withdraw) (X (X money) (X (X ,) (X (X big) (X (X investors) (X (X such) (X (X as) (X (X pension) (X (X funds) (X (X and) (X (X insurance) (X (X companies) (X (X can) (X (X decide) (X (X to) (X (X ride) (X (X out) (X (X market) (X (X storms) (X (X without) (X (X jettisoning) (X (X stock) (X .)))))))))))))))))))))))))))))))))))))) (X (X most) (X (X often) (X (X ,) (X (X they) (X (X do) (X (X just) (X (X that) (X (X ,) (X (X because) (X (X stocks) (X (X have) (X (X proved) (X (X to) (X (X be) (X (X the) (X (X best-performing) (X (X long-term) (X (X investment) (X (X ,) (X (X attracting) (X (X about) (X (X $) (X (X 1) (X (X trillion) (X (X from) (X (X pension) (X (X funds) (X (X alone) (X .))))))))))))))))))))))))))))) (X (X ``) (X (X If) (X (X you) (X (X bought) (X (X after) (X (X the) (X (X crash) (X (X ,) (X (X you) (X (X did) (X (X very) (X (X very) (X (X well) (X (X off) (X (X the) (X (X bottom) (X (X ,) (X (X '') (X (X said) (X (X Stephen) (X (X B.) (X (X Timbers) (X (X ,) (X (X chief) (X (X investment) (X (X officer) (X (X of) (X (X Chicago-based) (X (X Kemper) (X (X Financial) (X (X Services) (X (X Inc) (X .))))))))))))))))))))))))))))))))) (X (X the) (X (X $) (X (X 56) (X (X billion) (X (X California) (X (X Public) (X (X Employees) (X (X Retirement) (X (X System) (X (X ,) (X (X for) (X (X one) (X (X ,) (X (X added) (X (X $) (X (X 1) (X (X billion) (X (X to) (X (X its) (X (X stock) (X (X portfolio) (X (X two) (X (X years) (X (X ago) (X .))))))))))))))))))))))))) (X (X ``) (X (X The) (X (X last) (X (X crash) (X (X taught) (X (X institutional) (X (X investors) (X (X that) (X (X they) (X (X have) (X (X to) (X (X be) (X (X long-term) (X (X holders) (X (X ,) (X (X and) (X (X that) (X (X they) (X (X ca) (X (X n't) (X (X react) (X (X to) (X (X short-term) (X (X events) (X (X ,) (X (X good) (X (X or) (X (X bad) (X (X ,) (X (X '') (X (X said) (X (X Stephen) (X (X L.) (X (X Nesbitt) (X (X ,) (X (X senior) (X (X vice) (X (X president) (X (X for) (X (X the) (X (X pension) (X (X consultants) (X (X Wilshire) (X (X Associates) (X (X in) (X (X Santa) (X (X Monica) (X (X ,) (X (X Calif) (X .)))))))))))))))))))))))))))))))))))))))))))))))))) (X (X ``) (X (X Those) (X (X that) (X (X pulled) (X (X out) (X (X -LRB-) (X (X of) (X (X stocks) (X (X -RRB-) (X (X regretted) (X (X it) (X (X ,) (X (X '') (X (X he) (X (X said) (X (X ,) (X (X ``) (X (X so) (X (X I) (X (X doubt) (X (X you) (X (X 'll) (X (X see) (X (X any) (X (X significant) (X (X changes) (X (X '') (X (X in) (X (X institutional) (X (X portfolios) (X (X as) (X (X a) (X (X result) (X (X of) (X (X Friday) (X (X 's) (X (X decline) (X .)))))))))))))))))))))))))))))))))))))) (X (X stocks) (X (X ,) (X (X as) (X (X measured) (X (X by) (X (X the) (X (X Standard) (X (X &) (X (X Poor) (X (X 's) (X (X 500-stock) (X (X index) (X (X ,) (X (X have) (X (X been) (X (X stellar) (X (X performers) (X (X this) (X (X year) (X (X ,) (X (X rising) (X (X 27.97) (X (X %) (X (X before) (X (X Friday) (X (X 's) (X (X plunge) (X (X ,) (X (X excluding) (X (X dividends) (X .))))))))))))))))))))))))))))))) (X (X even) (X (X Friday) (X (X 's) (X (X slump) (X (X leaves) (X (X investors) (X (X ahead) (X (X more) (X (X than) (X (X 20) (X (X %) (X (X ,) (X (X well) (X (X above) (X (X the) (X (X annual) (X (X average) (X (X for) (X (X stocks) (X (X over) (X (X several) (X (X decades) (X .))))))))))))))))))))))) (X (X ``) (X (X You) (X (X could) (X (X go) (X (X down) (X (X 400) (X (X points) (X (X and) (X (X still) (X (X have) (X (X a) (X (X good) (X (X year) (X (X in) (X (X the) (X (X market) (X (X ,) (X (X '') (X (X said) (X (X James) (X (X D.) (X (X Awad) (X (X ,) (X (X president) (X (X of) (X (X New) (X (X York-based) (X (X BMI) (X (X Capital) (X (X Corp) (X .))))))))))))))))))))))))))))))) (X (X mr.) (X (X Awad) (X (X ,) (X (X however) (X (X ,) (X (X worries) (X (X that) (X (X the) (X (X market) (X (X ``) (X (X could) (X (X go) (X (X down) (X (X 800) (X (X or) (X (X 900) (X (X points) (X (X in) (X (X the) (X (X next) (X (X few) (X (X days) (X .))))))))))))))))))))))) (X (X it) (X (X can) (X (X happen) (X (X before) (X (X you) (X (X can) (X (X turn) (X (X around) (X (X .) (X '')))))))))) (X (X he) (X (X said) (X (X he) (X (X discerns) (X (X many) (X (X parallels) (X (X with) (X (X 1987) (X (X ,) (X (X including) (X (X the) (X (X emphasis) (X (X on) (X (X takeover) (X (X stocks) (X (X and) (X (X the) (X (X re-emergence) (X (X of) (X (X computerized) (X (X program) (X (X trading) (X .))))))))))))))))))))))) (X (X ``) (X (X The) (X (X only) (X (X thing) (X (X you) (X (X do) (X (X n't) (X (X have) (X (X ,) (X (X '') (X (X he) (X (X said) (X (X ,) (X (X ``) (X (X is) (X (X the) (X (X `) (X (X portfolio) (X (X insurance) (X (X ') (X (X phenomenon) (X (X overlaid) (X (X on) (X (X the) (X (X rest) (X (X .) (X ''))))))))))))))))))))))))))) (X (X most) (X (X institutional) (X (X investors) (X (X have) (X (X abandoned) (X (X the) (X (X portfolio) (X (X insurance) (X (X hedging) (X (X technique) (X (X ,) (X (X which) (X (X is) (X (X widely) (X (X thought) (X (X to) (X (X have) (X (X worsened) (X (X the) (X (X 1987) (X (X crash) (X .)))))))))))))))))))))) (X (X not) (X (X really) (X (X insurance) (X (X ,) (X (X this) (X (X tactic) (X (X was) (X (X designed) (X (X to) (X (X soften) (X (X the) (X (X blow) (X (X of) (X (X declining) (X (X stock) (X (X prices) (X (X and) (X (X generate) (X (X an) (X (X offsetting) (X (X profit) (X (X by) (X (X selling) (X (X waves) (X (X of) (X (X S&P) (X (X futures) (X (X contracts) (X .))))))))))))))))))))))))))))) (X (X in) (X (X its) (X (X severest) (X (X test) (X (X ,) (X (X the) (X (X $) (X (X 60) (X (X billion) (X (X of) (X (X portfolio) (X (X insurance) (X (X in) (X (X effect) (X (X in) (X (X the) (X (X 1987) (X (X crash) (X (X did) (X (X n't) (X (X work) (X (X ,) (X (X as) (X (X stock) (X (X buyers) (X (X disappeared) (X (X and) (X (X stock) (X (X and) (X (X futures) (X (X prices) (X (X became) (X (X disconnected) (X .)))))))))))))))))))))))))))))))))) (X (X even) (X (X without) (X (X portfolio) (X (X insurance) (X (X ,) (X (X market) (X (X conditions) (X (X were) (X (X grim) (X (X Friday) (X (X ,) (X (X money) (X (X managers) (X (X said) (X .))))))))))))))) (X (X neil) (X (X Weisman) (X (X ,) (X (X whose) (X (X New) (X (X York-based) (X (X Chilmark) (X (X Capital) (X (X Partners) (X (X had) (X (X converted) (X (X 85) (X (X %) (X (X of) (X (X its) (X (X $) (X (X 220) (X (X million) (X (X investment) (X (X pool) (X (X to) (X (X cash) (X (X in) (X (X recent) (X (X months) (X (X ,) (X (X said) (X (X he) (X (X was) (X (X besieged) (X (X by) (X (X Wall) (X (X Street) (X (X firms) (X (X Friday) (X (X asking) (X (X him) (X (X to) (X (X take) (X (X stock) (X (X off) (X (X their) (X (X hands) (X .)))))))))))))))))))))))))))))))))))))))))))) (X (X ``) (X (X We) (X (X got) (X (X calls) (X (X from) (X (X big) (X (X block) (X (X houses) (X (X asking) (X (X us) (X (X if) (X (X we) (X (X want) (X (X to) (X (X make) (X (X bids) (X (X on) (X (X anything) (X (X ,) (X (X '') (X (X said) (X (X Mr.) (X (X Weisman) (X (X ,) (X (X who) (X (X ,) (X (X happy) (X (X with) (X (X his) (X (X returns) (X (X on) (X (X investments) (X (X chalked) (X (X up) (X (X earlier) (X (X ,) (X (X declined) (X (X the) (X (X offers) (X .)))))))))))))))))))))))))))))))))))))))) (X (X mr.) (X (X Weisman) (X (X predicts) (X (X stocks) (X (X will) (X (X appear) (X (X to) (X (X stabilize) (X (X in) (X (X the) (X (X next) (X (X few) (X (X days) (X (X before) (X (X declining) (X (X again) (X (X ,) (X (X trapping) (X (X more) (X (X investors) (X .))))))))))))))))))))) (X (X ``) (X (X I) (X (X think) (X (X it) (X (X will) (X (X be) (X (X a) (X (X rigor) (X (X mortis) (X (X rally) (X (X ,) (X (X '') (X (X he) (X (X said) (X .))))))))))))))) (X (X meanwhile) (X (X ,) (X (X Friday) (X (X brought) (X (X a) (X (X reprieve) (X (X for) (X (X money) (X (X managers) (X (X whose) (X (X investment) (X (X styles) (X (X had) (X (X put) (X (X them) (X (X at) (X (X odds) (X (X with) (X (X the) (X (X market) (X (X rally) (X .)))))))))))))))))))))) (X (X especially) (X (X gleeful) (X (X were) (X (X the) (X (X short) (X (X sellers) (X (X ,) (X (X who) (X (X have) (X (X been) (X (X pounded) (X (X by) (X (X this) (X (X year) (X (X 's) (X (X market) (X (X climb) (X .)))))))))))))))))) (X (X the) (X (X shorts) (X (X sell) (X (X borrowed) (X (X shares) (X (X ,) (X (X hoping) (X (X to) (X (X profit) (X (X by) (X (X replacing) (X (X them) (X (X later) (X (X at) (X (X a) (X (X lower) (X (X price) (X .)))))))))))))))))) (X (X the) (X (X nation) (X (X 's) (X (X largest) (X (X short-selling) (X (X operation) (X (X is) (X (X Feshbach) (X (X Brothers) (X (X ,) (X (X Palo) (X (X Alto) (X (X ,) (X (X Calif.) (X (X ,) (X (X which) (X (X said) (X (X last) (X (X May) (X (X that) (X (X its) (X (X short) (X (X positions) (X (X had) (X (X shown) (X (X losses) (X (X of) (X (X 10) (X (X %) (X (X for) (X (X the) (X (X year) (X (X up) (X (X to) (X (X that) (X (X point) (X .))))))))))))))))))))))))))))))))))))) (X (X all) (X (X that) (X (X now) (X (X has) (X (X changed) (X .)))))) (X (X ``) (X (X We) (X (X 're) (X (X ahead) (X (X for) (X (X the) (X (X year) (X (X because) (X (X of) (X (X Friday) (X (X ,) (X (X '') (X (X said) (X (X the) (X (X firm) (X (X 's) (X (X Kurt) (X (X Feshbach) (X .))))))))))))))))))) (X (X ``) (X (X We) (X (X 're) (X (X not) (X (X making) (X (X a) (X (X killing) (X (X ,) (X (X but) (X (X we) (X (X had) (X (X a) (X (X good) (X (X day) (X .))))))))))))))) (X (X food) (X (X and) (X (X Drug) (X (X Administration) (X (X spokesman) (X (X Jeff) (X (X Nesbit) (X (X said) (X (X the) (X (X agency) (X (X has) (X (X turned) (X (X over) (X (X evidence) (X (X in) (X (X a) (X (X criminal) (X (X investigation) (X (X concerning) (X (X Vitarine) (X (X Pharmaceuticals) (X (X Inc.) (X (X to) (X (X the) (X (X U.S.) (X (X Attorney) (X (X 's) (X (X office) (X (X in) (X (X Baltimore) (X .))))))))))))))))))))))))))))))) (X (X neither) (X (X Vitarine) (X (X nor) (X (X any) (X (X of) (X (X the) (X (X Springfield) (X (X Gardens) (X (X ,) (X (X N.Y.) (X (X ,) (X (X company) (X (X 's) (X (X officials) (X (X or) (X (X employees) (X (X have) (X (X been) (X (X charged) (X (X with) (X (X any) (X (X crimes) (X .))))))))))))))))))))))) (X (X vitarine) (X (X won) (X (X approval) (X (X to) (X (X market) (X (X a) (X (X version) (X (X of) (X (X a) (X (X blood) (X (X pressure) (X (X medicine) (X (X but) (X (X acknowledged) (X (X that) (X (X it) (X (X substituted) (X (X a) (X (X SmithKline) (X (X Beecham) (X (X PLC) (X (X product) (X (X as) (X (X its) (X (X own) (X (X in) (X (X tests) (X .)))))))))))))))))))))))))))) (X (X mr.) (X (X Nesbit) (X (X also) (X (X said) (X (X the) (X (X FDA) (X (X has) (X (X asked) (X (X Bolar) (X (X Pharmaceutical) (X (X Co.) (X (X to) (X (X recall) (X (X at) (X (X the) (X (X retail) (X (X level) (X (X its) (X (X urinary) (X (X tract) (X (X antibiotic) (X .)))))))))))))))))))))) (X (X but) (X (X so) (X (X far) (X (X the) (X (X company) (X (X has) (X (X n't) (X (X complied) (X (X with) (X (X that) (X (X request) (X (X ,) (X (X the) (X (X spokesman) (X (X said) (X .)))))))))))))))) (X (X bolar) (X (X ,) (X (X the) (X (X subject) (X (X of) (X (X a) (X (X criminal) (X (X investigation) (X (X by) (X (X the) (X (X FDA) (X (X and) (X (X the) (X (X Inspector) (X (X General) (X (X 's) (X (X office) (X (X of) (X (X the) (X (X Health) (X (X and) (X (X Human) (X (X Services) (X (X Department) (X (X ,) (X (X only) (X (X agreed) (X (X to) (X (X recall) (X (X two) (X (X strengths) (X (X of) (X (X its) (X (X version) (X (X of) (X (X Macrodantin) (X (X ``) (X (X as) (X (X far) (X (X down) (X (X as) (X (X direct) (X (X customers) (X (X ,) (X (X mostly) (X (X wholesalers) (X (X ,) (X (X '') (X (X Mr.) (X (X Nesbit) (X (X said) (X .)))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X bolar) (X (X ,) (X (X of) (X (X Copiague) (X (X ,) (X (X N.Y.) (X (X ,) (X (X earlier) (X (X began) (X (X a) (X (X voluntary) (X (X recall) (X (X of) (X (X both) (X (X its) (X (X 100) (X (X milligram) (X (X and) (X (X 50) (X (X milligram) (X (X versions) (X (X of) (X (X the) (X (X drug) (X .))))))))))))))))))))))))) (X (X the) (X (X FDA) (X (X has) (X (X said) (X (X it) (X (X presented) (X (X evidence) (X (X it) (X (X uncovered) (X (X to) (X (X the) (X (X company) (X (X indicating) (X (X that) (X (X Bolar) (X (X substituted) (X (X the) (X (X brand-name) (X (X product) (X (X for) (X (X its) (X (X own) (X (X to) (X (X gain) (X (X government) (X (X approval) (X (X to) (X (X sell) (X (X generic) (X (X versions) (X (X of) (X (X Macrodantin) (X .))))))))))))))))))))))))))))))))) (X (X bolar) (X (X has) (X (X denied) (X (X that) (X (X it) (X (X switched) (X (X the) (X (X brand-name) (X (X product) (X (X for) (X (X its) (X (X own) (X (X in) (X (X such) (X (X testing) (X .)))))))))))))))) (X (X the) (X (X West) (X (X German) (X (X retailer) (X (X ASKO) (X (X Deutsche) (X (X Kaufhaus) (X (X AG) (X (X plans) (X (X to) (X (X challenge) (X (X the) (X (X legality) (X (X of) (X (X a) (X (X widely) (X (X employed) (X (X anti-takeover) (X (X defense) (X (X of) (X (X companies) (X (X in) (X (X the) (X (X Netherlands) (X .))))))))))))))))))))))))) (X (X the) (X (X eventual) (X (X court) (X (X decision) (X (X could) (X (X become) (X (X a) (X (X landmark) (X (X in) (X (X Dutch) (X (X corporate) (X (X law) (X (X because) (X (X the) (X (X lawsuit) (X (X ASKO) (X (X plans) (X (X to) (X (X file) (X (X would) (X (X be) (X (X the) (X (X first) (X (X to) (X (X challenge) (X (X the) (X (X entire) (X (X principle) (X (X and) (X (X practice) (X (X of) (X (X companies) (X (X issuing) (X (X voting) (X (X preferred) (X (X shares) (X (X to) (X (X management-controlled) (X (X trusts) (X (X to) (X (X dilute) (X (X voting) (X (X power) (X (X of) (X (X common) (X (X stockholders) (X .))))))))))))))))))))))))))))))))))))))))))))))) (X (X up) (X (X to) (X (X now) (X (X only) (X (X specific) (X (X aspects) (X (X of) (X (X these) (X (X defenses) (X (X have) (X (X been) (X (X challenged) (X (X ,) (X (X though) (X (X unsuccessfully) (X (X ,) (X (X ASKO) (X (X 's) (X (X Dutch) (X (X lawyers) (X (X noted) (X .)))))))))))))))))))))) (X (X should) (X (X the) (X (X courts) (X (X uphold) (X (X the) (X (X validity) (X (X of) (X (X this) (X (X type) (X (X of) (X (X defense) (X (X ,) (X (X ASKO) (X (X will) (X (X then) (X (X ask) (X (X the) (X (X court) (X (X to) (X (X overturn) (X (X such) (X (X a) (X (X vote-diluting) (X (X maneuver) (X (X recently) (X (X deployed) (X (X by) (X (X Koninklijke) (X (X Ahold) (X (X NV) (X .))))))))))))))))))))))))))))))) (X (X asko) (X (X says) (X (X the) (X (X Dutch-based) (X (X international) (X (X food) (X (X retailer) (X (X had) (X (X n't) (X (X reasonable) (X (X grounds) (X (X to) (X (X issue) (X (X preferred) (X (X stock) (X (X to) (X (X a) (X (X friendly) (X (X trust) (X (X and) (X (X thus) (X (X dilute) (X (X the) (X (X worth) (X (X and) (X (X voting) (X (X power) (X (X of) (X (X ASKO) (X (X and) (X (X other) (X (X shareholders) (X .))))))))))))))))))))))))))))))))) (X (X speaking) (X (X through) (X (X its) (X (X Dutch) (X (X lawyers) (X (X ,) (X (X ASKO) (X (X also) (X (X disclosed) (X (X it) (X (X holds) (X (X a) (X (X 15) (X (X %) (X (X stake) (X (X in) (X (X Ahold) (X .)))))))))))))))))) (X (X it) (X (X was) (X (X previously) (X (X thought) (X (X ASKO) (X (X held) (X (X a) (X (X 13.6) (X (X %) (X (X stake) (X (X that) (X (X was) (X (X accumulated) (X (X since) (X (X July) (X .)))))))))))))))) (X (X a) (X (X spokesman) (X (X for) (X (X Ahold) (X (X said) (X (X his) (X (X company) (X (X is) (X (X confident) (X (X of) (X (X its) (X (X own) (X (X position) (X (X and) (X (X the) (X (X propriety) (X (X of) (X (X the) (X (X preferred-share) (X (X issue) (X .))))))))))))))))))))) (X (X he) (X (X termed) (X (X ASKO) (X (X 's) (X (X legal) (X (X actions) (X (X as) (X (X ``) (X (X unproductive) (X (X '') (X (X to) (X (X international) (X (X cooperation) (X (X among) (X (X European) (X (X retailers) (X .))))))))))))))))) (X (X chase) (X (X Manhattan) (X (X Bank) (X (X Chairman) (X (X Willard) (X (X Butcher) (X (X is) (X (X a) (X (X conservative) (X (X banker) (X (X and) (X (X a) (X (X loyal) (X (X Republican) (X (X ,) (X (X but) (X (X on) (X (X Friday) (X (X morning) (X (X he) (X (X had) (X (X few) (X (X kind) (X (X words) (X (X for) (X (X President) (X (X Bush) (X (X 's) (X (X economic) (X (X policy-making) (X .))))))))))))))))))))))))))))))) (X (X ``) (X (X There) (X (X are) (X (X some) (X (X very) (X (X significant) (X (X issues) (X (X out) (X (X there) (X (X ,) (X (X such) (X (X as) (X (X the) (X (X fiscal) (X (X deficit) (X (X ,) (X (X the) (X (X trade) (X (X deficit) (X (X ,) (X (X our) (X (X relations) (X (X with) (X (X Japan) (X (X ,) (X (X that) (X (X have) (X (X to) (X (X be) (X (X the) (X (X subject) (X (X of) (X (X major) (X (X initiatives) (X (X ,) (X (X '') (X (X he) (X (X said) (X (X in) (X (X an) (X (X interview) (X .)))))))))))))))))))))))))))))))))))))))))) (X (X ``) (X (X I) (X (X 'd) (X (X like) (X (X to) (X (X see) (X (X that) (X (X initiative) (X (X ,) (X (X and) (X (X I) (X (X have) (X (X n't) (X .)))))))))))))) (X (X there) (X (X is) (X (X n't) (X (X a) (X (X big) (X (X shot) (X (X ,) (X (X an) (X (X agenda) (X (X .) (X ''))))))))))) (X (X a) (X (X few) (X (X hours) (X (X later) (X (X ,) (X (X the) (X (X stock) (X (X market) (X (X dropped) (X (X 190) (X (X points) (X .)))))))))))) (X (X politicians) (X (X tried) (X (X to) (X (X finger) (X (X each) (X (X other) (X (X for) (X (X the) (X (X blame) (X (X ,) (X (X although) (X (X many) (X (X analysts) (X (X doubt) (X (X that) (X (X Washington) (X (X was) (X (X singly) (X (X responsible) (X (X for) (X (X Wall) (X (X Street) (X (X 's) (X (X woes) (X .))))))))))))))))))))))))) (X (X but) (X (X Mr.) (X (X Butcher) (X (X 's) (X (X comments) (X (X make) (X (X one) (X (X thing) (X (X clear) (X (X :) (X (X Some) (X (X on) (X (X Wall) (X (X Street) (X (X wonder) (X (X if) (X (X anyone) (X (X is) (X (X in) (X (X charge) (X (X of) (X (X economic) (X (X policy) (X .)))))))))))))))))))))))) (X (X consider) (X (X this) (X :))) (X (X --) (X (X By) (X (X 11:59) (X (X p.m.) (X (X tonight) (X (X ,) (X (X President) (X (X Bush) (X (X must) (X (X order) (X (X $) (X (X 16) (X (X billion) (X (X of) (X (X automatic) (X (X ,) (X (X across-the-board) (X (X cuts) (X (X in) (X (X government) (X (X spending) (X (X to) (X (X comply) (X (X with) (X (X the) (X (X Gramm-Rudman) (X (X budget) (X (X law) (X .))))))))))))))))))))))))))))) (X (X the) (X (X cuts) (X (X are) (X (X necessary) (X (X because) (X (X Congress) (X (X and) (X (X the) (X (X administration) (X (X have) (X (X failed) (X (X to) (X (X reach) (X (X agreement) (X (X on) (X (X a) (X (X deficit-cutting) (X (X bill) (X .))))))))))))))))))) (X (X ``) (X (X We) (X (X simply) (X (X do) (X (X n't) (X (X have) (X (X strong) (X (X leadership) (X (X to) (X (X try) (X (X to) (X (X reduce) (X (X the) (X (X deficit) (X (X and) (X (X make) (X (X tough) (X (X choices) (X (X ,) (X (X '') (X (X House) (X (X Budget) (X (X Committee) (X (X Chairman) (X (X Leon) (X (X Panetta) (X (X -LRB-) (X (X D.) (X (X ,) (X (X Calif) (X (X .) (X (X -RRB-) (X (X said) (X (X yesterday) (X (X on) (X (X NBC) (X (X News) (X (X 's) (X (X ``) (X (X Meet) (X (X the) (X (X Press) (X (X .) (X '')))))))))))))))))))))))))))))))))))))))))))) (X (X --) (X (X For) (X (X the) (X (X last) (X (X two) (X (X weeks) (X (X ,) (X (X the) (X (X Bush) (X (X administration) (X (X and) (X (X the) (X (X Federal) (X (X Reserve) (X (X have) (X (X been) (X (X engaged) (X (X in) (X (X a) (X (X semi-public) (X (X battle) (X (X over) (X (X international) (X (X economic) (X (X policy) (X .)))))))))))))))))))))))))) (X (X the) (X (X administration) (X (X has) (X (X been) (X (X trying) (X (X to) (X (X push) (X (X the) (X (X dollar) (X (X lower) (X (X ;) (X (X the) (X (X Fed) (X (X has) (X (X been) (X (X resisting) (X .))))))))))))))))) (X (X ``) (X (X One) (X (X of) (X (X the) (X (X things) (X (X that) (X (X continues) (X (X to) (X (X worry) (X (X me) (X (X is) (X (X this) (X (X monetary) (X (X warfare) (X (X between) (X (X the) (X (X Treasury) (X (X Department) (X (X and) (X (X the) (X (X Federal) (X (X Reserve) (X (X Board) (X (X ,) (X (X '') (X (X said) (X (X Lawrence) (X (X Kudlow) (X (X ,) (X (X a) (X (X Bear) (X (X ,) (X (X Stearns) (X (X &) (X (X Co.) (X (X economist) (X (X ,) (X (X on) (X (X ABC) (X (X 's) (X (X ``) (X (X This) (X (X Week) (X (X .) (X ''))))))))))))))))))))))))))))))))))))))))))))) (X (X --) (X (X The) (X (X administration) (X (X has) (X (X sent) (X (X out) (X (X confusing) (X (X signals) (X (X about) (X (X its) (X (X response) (X (X to) (X (X a) (X (X recent) (X (X spate) (X (X of) (X (X airline) (X (X takeovers) (X .))))))))))))))))))) (X (X last) (X (X month) (X (X ,) (X (X Transportation) (X (X Secretary) (X (X Sam) (X (X Skinner) (X (X forced) (X (X Northwest) (X (X Airlines) (X (X to) (X (X reduce) (X (X a) (X (X stake) (X (X held) (X (X by) (X (X KLM) (X (X Royal) (X (X Dutch) (X (X Airlines) (X .))))))))))))))))))))) (X (X but) (X (X he) (X (X has) (X (X since) (X (X run) (X (X into) (X (X opposition) (X (X from) (X (X the) (X (X Treasury) (X (X and) (X (X the) (X (X White) (X (X House) (X (X over) (X (X that) (X (X decision) (X .)))))))))))))))))) (X (X and) (X (X he) (X (X has) (X (X kept) (X (X mum) (X (X on) (X (X how) (X (X his) (X (X decision) (X (X might) (X (X affect) (X (X a) (X (X bid) (X (X for) (X (X United) (X (X Airlines) (X (X ,) (X (X which) (X (X includes) (X (X a) (X (X big) (X (X stake) (X (X by) (X (X British) (X (X Airways) (X (X PLC) (X .))))))))))))))))))))))))))) (X (X some) (X (X analysts) (X (X say) (X (X uncertainty) (X (X about) (X (X Washington) (X (X 's) (X (X anti-takeover) (X (X policy) (X (X was) (X (X one) (X (X reason) (X (X that) (X (X financing) (X (X for) (X (X the) (X (X United) (X (X Airlines) (X (X takeover) (X (X fell) (X (X through) (X (X --) (X (X the) (X (X event) (X (X that) (X (X triggered) (X (X the) (X (X market) (X (X drop) (X .)))))))))))))))))))))))))))))) (X (X in) (X (X many) (X (X ways) (X (X ,) (X (X the) (X (X backdrop) (X (X to) (X (X Friday) (X (X 's) (X (X stock) (X (X decline) (X (X is) (X (X eerily) (X (X similar) (X (X to) (X (X that) (X (X of) (X (X October) (X (X 1987) (X (X 's) (X (X 508-point) (X (X crash) (X .))))))))))))))))))))))) (X (X then) (X (X ,) (X (X as) (X (X now) (X (X ,) (X (X the) (X (X budget) (X (X debate) (X (X was) (X (X behind) (X (X schedule) (X (X and) (X (X automatic) (X (X spending) (X (X cuts) (X (X were) (X (X within) (X (X days) (X (X of) (X (X taking) (X (X hold) (X .)))))))))))))))))))))) (X (X the) (X (X Treasury) (X (X was) (X (X locked) (X (X in) (X (X a) (X (X battle) (X (X over) (X (X international) (X (X economic) (X (X policy) (X (X ,) (X (X although) (X (X at) (X (X that) (X (X time) (X (X it) (X (X was) (X (X with) (X (X West) (X (X German) (X (X officials) (X (X rather) (X (X than) (X (X the) (X (X Federal) (X (X Reserve) (X .)))))))))))))))))))))))))))) (X (X and) (X (X concern) (X (X about) (X (X official) (X (X actions) (X (X aimed) (X (X at) (X (X takeovers) (X (X --) (X (X then) (X (X by) (X (X the) (X (X tax-writing) (X (X House) (X (X Ways) (X (X and) (X (X Means) (X (X Committee) (X (X rather) (X (X than) (X (X the) (X (X Transportation) (X (X Department) (X (X --) (X (X were) (X (X making) (X (X markets) (X (X nervous) (X .))))))))))))))))))))))))))))) (X (X the) (X (X 1987) (X (X crash) (X (X brought) (X (X the) (X (X Reagan) (X (X administration) (X (X and) (X (X Democratic) (X (X lawmakers) (X (X to) (X (X the) (X (X table) (X (X for) (X (X the) (X (X first) (X (X budget) (X (X summit) (X (X ,) (X (X resulting) (X (X in) (X (X a) (X (X two-year) (X (X plan) (X (X to) (X (X reduce) (X (X the) (X (X deficit) (X (X by) (X (X more) (X (X than) (X (X $) (X (X 76) (X (X billion) (X (X --) (X (X even) (X (X though) (X (X the) (X (X deficit) (X (X actually) (X (X rose) (X (X by) (X (X nearly) (X (X $) (X (X 12) (X (X billion) (X (X during) (X (X that) (X (X period) (X .)))))))))))))))))))))))))))))))))))))))))))))))))) (X (X but) (X (X ,) (X (X barring) (X (X further) (X (X drops) (X (X in) (X (X the) (X (X market) (X (X this) (X (X week) (X (X ,) (X (X a) (X (X similar) (X (X outcome) (X (X does) (X (X n't) (X (X seem) (X (X likely) (X (X this) (X (X year) (X .))))))))))))))))))))) (X (X lawmakers) (X (X and) (X (X administration) (X (X officials) (X (X agree) (X (X that) (X (X Friday) (X (X 's) (X (X drop) (X (X ,) (X (X by) (X (X itself) (X (X ,) (X (X is) (X (X n't) (X (X enough) (X (X to) (X (X force) (X (X both) (X (X sides) (X (X back) (X (X to) (X (X the) (X (X table) (X (X to) (X (X try) (X (X to) (X (X reach) (X (X a) (X (X deficit-reduction) (X (X agreement) (X (X that) (X (X would) (X (X be) (X (X more) (X (X serious) (X (X and) (X (X more) (X (X far-reaching) (X (X than) (X (X last) (X (X spring) (X (X 's) (X (X gimmick-ridden) (X (X plan) (X (X ,) (X (X which) (X (X still) (X (X is) (X (X n't) (X (X fully) (X (X implemented) (X .))))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X one) (X (X of) (X (X the) (X (X biggest) (X (X reasons) (X (X that) (X (X new) (X (X talks) (X (X are) (X (X n't) (X (X likely) (X (X to) (X (X come) (X (X about) (X (X is) (X (X that) (X (X ,) (X (X as) (X (X everyone) (X (X learned) (X (X in) (X (X 1987) (X (X ,) (X (X the) (X (X economy) (X (X and) (X (X the) (X (X market) (X (X can) (X (X survive) (X (X a) (X (X one-day) (X (X 508-point) (X (X tumble) (X .))))))))))))))))))))))))))))))))))) (X (X ``) (X (X Everybody) (X (X thought) (X (X we) (X (X were) (X (X looking) (X (X at) (X (X a) (X (X repetition) (X (X of) (X (X 1929) (X (X ,) (X (X that) (X (X we) (X (X were) (X (X looking) (X (X at) (X (X a) (X (X recession) (X (X ,) (X (X '') (X (X Rep.) (X (X Panetta) (X (X said) (X (X yesterday) (X (X in) (X (X an) (X (X interview) (X .))))))))))))))))))))))))))))) (X (X ``) (X (X That) (X (X did) (X (X not) (X (X happen) (X .)))))) (X (X they) (X (X learned) (X (X they) (X (X could) (X (X survive) (X (X it) (X (X without) (X (X much) (X (X problem) (X (X .) (X ''))))))))))) (X (X but) (X (X administration) (X (X officials) (X (X privately) (X (X agree) (X (X with) (X (X Mr.) (X (X Panetta) (X (X ,) (X (X who) (X (X said) (X (X a) (X (X precipitous) (X (X drop) (X (X this) (X (X week) (X (X ``) (X (X is) (X (X going) (X (X to) (X (X force) (X (X the) (X (X president) (X (X and) (X (X Congress) (X (X to) (X (X take) (X (X a) (X (X much) (X (X harder) (X (X look) (X (X at) (X (X fiscal) (X (X policy) (X (X .) (X '')))))))))))))))))))))))))))))))))))) (X (X in) (X (X that) (X (X case) (X (X ,) (X (X there) (X (X will) (X (X be) (X (X plenty) (X (X of) (X (X blame) (X (X to) (X (X go) (X (X around) (X .)))))))))))))) (X (X ``) (X (X There) (X (X is) (X (X an) (X (X underlying) (X (X concern) (X (X on) (X (X the) (X (X part) (X (X of) (X (X the) (X (X American) (X (X people) (X (X --) (X (X and) (X (X there) (X (X should) (X (X be) (X (X -) (X (X that) (X (X the) (X (X administration) (X (X has) (X (X not) (X (X gone) (X (X far) (X (X enough) (X (X in) (X (X cutting) (X (X this) (X (X deficit) (X (X and) (X (X that) (X (X Congress) (X (X has) (X (X been) (X (X unwilling) (X (X to) (X (X cut) (X (X what) (X (X the) (X (X administration) (X (X asked) (X (X us) (X (X to) (X (X cut) (X (X ,) (X (X '') (X (X said) (X (X Senate) (X (X Finance) (X (X Committee) (X (X Chairman) (X (X Lloyd) (X (X Bentsen) (X (X -LRB-) (X (X D.) (X (X ,) (X (X Texas) (X (X -RRB-) (X .))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X nevertheless) (X (X ,) (X (X it) (X (X clearly) (X (X will) (X (X take) (X (X more) (X (X than) (X (X Friday) (X (X 's) (X (X 190-point) (X (X decline) (X (X to) (X (X overcome) (X (X the) (X (X bitter) (X (X feelings) (X (X that) (X (X have) (X (X developed) (X (X between) (X (X lawmakers) (X (X and) (X (X White) (X (X House) (X (X Budget) (X (X Director) (X (X Richard) (X (X Darman) (X (X over) (X (X the) (X (X capital-gains) (X (X fight) (X .)))))))))))))))))))))))))))))))))) (X (X hill) (X (X Democrats) (X (X are) (X (X particularly) (X (X angry) (X (X over) (X (X Mr.) (X (X Bush) (X (X 's) (X (X claim) (X (X that) (X (X the) (X (X capital-gains) (X (X cut) (X (X was) (X (X part) (X (X of) (X (X April) (X (X 's) (X (X budget) (X (X accord) (X (X and) (X (X his) (X (X insistence) (X (X on) (X (X combining) (X (X it) (X (X with) (X (X the) (X (X deficit-reduction) (X (X legislation) (X .)))))))))))))))))))))))))))))))) (X (X ``) (X (X There) (X (X is) (X (X no) (X (X prospect) (X (X of) (X (X any) (X (X so-called) (X (X grand) (X (X compromise) (X (X or) (X (X deal) (X (X next) (X (X year) (X (X because) (X (X the) (X (X administration) (X (X simply) (X (X did) (X (X n't) (X (X live) (X (X up) (X (X to) (X (X this) (X (X year) (X (X 's) (X (X deal) (X (X ,) (X (X '') (X (X Senate) (X (X Majority) (X (X Leader) (X (X George) (X (X Mitchell) (X (X -LRB-) (X (X D.) (X (X ,) (X (X Maine) (X (X -RRB-) (X (X said) (X (X yesterday) (X (X on) (X (X CBS) (X (X News) (X (X 's) (X (X ``) (X (X Face) (X (X the) (X (X Nation) (X (X .) (X ''))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X during) (X (X last) (X (X week) (X (X 's) (X (X maneuverings) (X (X on) (X (X the) (X (X deficit-cutting) (X (X bill) (X (X and) (X (X the) (X (X capital-gains) (X (X issue) (X (X ,) (X (X there) (X (X were) (X (X signs) (X (X that) (X (X Senate) (X (X Republicans) (X (X and) (X (X the) (X (X administration) (X (X were) (X (X at) (X (X odds) (X .))))))))))))))))))))))))))) (X (X at) (X (X the) (X (X very) (X (X moment) (X (X that) (X (X Senate) (X (X Republicans) (X (X were) (X (X negotiating) (X (X a) (X (X deal) (X (X to) (X (X exclude) (X (X capital) (X (X gains) (X (X from) (X (X the) (X (X deficit-reduction) (X (X legislation) (X (X ,) (X (X White) (X (X House) (X (X spokesman) (X (X Marlin) (X (X Fitzwater) (X (X told) (X (X reporters) (X (X that) (X (X it) (X (X was) (X (X the) (X (X president) (X (X 's) (X (X policy) (X (X to) (X (X include) (X (X it) (X .)))))))))))))))))))))))))))))))))))))) (X (X when) (X (X an) (X (X agreement) (X (X was) (X (X reached) (X (X to) (X (X strip) (X (X capital) (X (X gains) (X (X from) (X (X the) (X (X legislation) (X (X ,) (X (X Oregon) (X (X Sen.) (X (X Bob) (X (X Packwood) (X (X ,) (X (X the) (X (X ranking) (X (X GOP) (X (X member) (X (X of) (X (X the) (X (X tax-writing) (X (X Senate) (X (X Finance) (X (X Committee) (X (X ,) (X (X hailed) (X (X it) (X .)))))))))))))))))))))))))))))))) (X (X asked) (X (X if) (X (X the) (X (X administration) (X (X agreed) (X (X ,) (X (X he) (X (X curtly) (X (X replied) (X (X :) (X (X ``) (X (X The) (X (X adminstration) (X (X will) (X (X have) (X (X to) (X (X speak) (X (X for) (X (X itself) (X (X .) (X ''))))))))))))))))))))) (X (X friday) (X (X 's) (X (X market) (X (X tumble) (X (X could) (X (X spur) (X (X action) (X (X on) (X (X reconciling) (X (X the) (X (X House) (X (X and) (X (X Senate) (X (X versions) (X (X of) (X (X the) (X (X deficit-reduction) (X (X measure) (X (X ,) (X (X a) (X (X process) (X (X that) (X (X is) (X (X n't) (X (X expected) (X (X to) (X (X begin) (X (X until) (X (X tomorrow) (X (X at) (X (X the) (X (X soonest) (X .))))))))))))))))))))))))))))))))) (X (X senate) (X (X Republicans) (X (X expressed) (X (X the) (X (X hope) (X (X that) (X (X the) (X (X House) (X (X would) (X (X follow) (X (X the) (X (X lead) (X (X of) (X (X the) (X (X Senate) (X (X ,) (X (X which) (X (X on) (X (X Friday) (X (X agreed) (X (X to) (X (X drop) (X (X a) (X (X variety) (X (X of) (X (X spending) (X (X measures) (X (X and) (X (X tax) (X (X breaks) (X (X that) (X (X would) (X (X have) (X (X increased) (X (X the) (X (X fiscal) (X (X 1990) (X (X deficit) (X .))))))))))))))))))))))))))))))))))))))) (X (X ``) (X (X The) (X (X market) (X (X needs) (X (X a) (X (X strong) (X (X signal) (X (X that) (X (X we) (X (X 're) (X (X serious) (X (X about) (X (X deficit) (X (X reduction) (X (X ,) (X (X and) (X (X the) (X (X best) (X (X way) (X (X to) (X (X do) (X (X that) (X (X is) (X (X for) (X (X the) (X (X House) (X (X of) (X (X Representatives) (X (X to) (X (X strip) (X (X their) (X (X bill) (X (X '') (X (X of) (X (X similar) (X (X provisions) (X (X ,) (X (X Sen.) (X (X Warren) (X (X Rudman) (X (X -LRB-) (X (X R.) (X (X ,) (X (X N.H) (X (X .) (X (X -RRB-) (X (X .) (X (X said) (X (X yesterday) (X .)))))))))))))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X White) (X (X House) (X (X Office) (X (X of) (X (X Management) (X (X and) (X (X Budget) (X (X ,) (X (X whose) (X (X calculations) (X (X determine) (X (X whether) (X (X the) (X (X Gramm-Rudman) (X (X targets) (X (X are) (X (X met) (X (X ,) (X (X estimated) (X (X that) (X (X the) (X (X House-passed) (X (X deficit-reduction) (X (X measure) (X (X would) (X (X cut) (X (X the) (X (X fiscal) (X (X 1990) (X (X shortfall) (X (X by) (X (X $) (X (X 6.2) (X (X billion) (X (X ,) (X (X almost) (X (X half) (X (X of) (X (X the) (X (X Congressional) (X (X Budget) (X (X Office) (X (X 's) (X (X estimate) (X (X of) (X (X $) (X (X 11.0) (X (X billion) (X .)))))))))))))))))))))))))))))))))))))))))))))))))) (X (X rep.) (X (X Panetta) (X (X said) (X (X that) (X (X OMB) (X (X 's) (X (X figure) (X (X would) (X (X still) (X (X be) (X (X enough) (X (X to) (X (X avoid) (X (X permanent) (X (X across-the-board) (X (X cuts) (X (X ,) (X (X but) (X (X added) (X (X :) (X (X ``) (X (X We) (X (X 're) (X (X getting) (X (X very) (X (X close) (X (X to) (X (X the) (X (X margins) (X (X here) (X (X .) (X '')))))))))))))))))))))))))))))))) (X (X no) (X (X one) (X (X in) (X (X Washington) (X (X was) (X (X willing) (X (X to) (X (X take) (X (X the) (X (X blame) (X (X for) (X (X provoking) (X (X Friday) (X (X 's) (X (X drop) (X (X in) (X (X the) (X (X stock) (X (X market) (X .)))))))))))))))))))) (X (X but) (X (X some) (X (X players) (X (X were) (X (X quick) (X (X to) (X (X seize) (X (X the) (X (X moment) (X .)))))))))) (X (X before) (X (X the) (X (X sun) (X (X had) (X (X set) (X (X on) (X (X Friday) (X (X ,) (X (X Richard) (X (X Rahn) (X (X ,) (X (X the) (X (X supply-side) (X (X chief) (X (X economist) (X (X of) (X (X the) (X (X U.S.) (X (X Chamber) (X (X of) (X (X Commerce) (X (X ,) (X (X issued) (X (X a) (X (X statement) (X (X attributing) (X (X the) (X (X drop) (X (X in) (X (X stock) (X (X prices) (X (X to) (X (X the) (X (X Senate) (X (X decision) (X (X to) (X (X postpone) (X (X action) (X (X on) (X (X capital) (X (X gains) (X .)))))))))))))))))))))))))))))))))))))))))) (X (X ``) (X (X Investors) (X (X ,) (X (X who) (X (X had) (X (X been) (X (X holding) (X (X assets) (X (X in) (X (X anticipation) (X (X of) (X (X a) (X (X more) (X (X favorable) (X (X time) (X (X to) (X (X sell) (X (X ,) (X (X were) (X (X spooked) (X (X ,) (X (X '') (X (X he) (X (X said) (X .))))))))))))))))))))))))) (X (X ``) (X (X There) (X (X have) (X (X been) (X (X many) (X (X preposterous) (X (X reasons) (X (X advanced) (X (X to) (X (X support) (X (X a) (X (X capital-gains) (X (X tax) (X (X cut) (X (X ,) (X (X '') (X (X Sen.) (X (X Mitchell) (X (X said) (X (X during) (X (X his) (X (X television) (X (X appearance) (X (X ,) (X (X ``) (X (X but) (X (X I) (X (X suggest) (X (X that) (X (X is) (X (X perhaps) (X (X more) (X (X than) (X (X any) (X (X of) (X (X the) (X (X others) (X .)))))))))))))))))))))))))))))))))))))) (X (X the) (X (X following) (X (X U.S.) (X (X Treasury) (X (X ,) (X (X corporate) (X (X and) (X (X municipal) (X (X offerings) (X (X are) (X (X tentatively) (X (X scheduled) (X (X for) (X (X sale) (X (X this) (X (X week) (X (X ,) (X (X according) (X (X to) (X (X Dow) (X (X Jones) (X (X Capital) (X (X Markets) (X (X Report) (X :))))))))))))))))))))))))) (X (X $) (X (X 15.2) (X (X billion) (X (X of) (X (X three-month) (X (X and) (X (X six-month) (X (X bills) (X .))))))))) (X (X two-year) (X (X notes) (X (X ,) (X (X refinancing) (X (X about) (X (X $) (X (X 9.6) (X (X billion) (X (X in) (X (X maturing) (X (X debt) (X .)))))))))))) (X (X $) (X (X 9.75) (X (X billion) (X (X of) (X (X 52-week) (X (X bills) (X .))))))) (X (X connecticut) (X (X Light) (X (X &) (X (X Power) (X (X Co.) (X --)))))) (X (X three) (X (X million) (X (X shares) (X (X of) (X (X $) (X (X 25) (X (X preferred) (X (X ,) (X (X via) (X (X competitive) (X (X bidding) (X .)))))))))))) (X (X b&h) (X (X Crude) (X (X Carriers) (X (X Ltd.) (X --))))) (X (X four) (X (X million) (X (X common) (X (X shares) (X (X ,) (X (X via) (X (X Salomon) (X (X Brothers) (X (X Inc) (X .)))))))))) (X (X baldwin) (X (X Technology) (X (X Co.) (X --)))) (X (X 2.6) (X (X million) (X (X Class) (X (X A) (X (X shares) (X (X ,) (X (X via) (X (X Smith) (X (X Barney) (X (X Harris) (X (X Upham) (X (X &) (X (X Co) (X .)))))))))))))) (X (X blockbuster) (X (X Entertainment) (X (X Corp.) (X --)))) (X (X $) (X (X 250) (X (X million) (X (X -LRB-) (X (X face) (X (X amount) (X (X -RRB-) (X (X Liquid) (X (X Yield) (X (X Option) (X (X Notes) (X (X ,) (X (X via) (X (X Merrill) (X (X Lynch) (X (X Capital) (X (X Markets) (X .)))))))))))))))))) (X (X chase) (X (X Manhattan) (X (X Corp.) (X --)))) (X (X 14) (X (X million) (X (X common) (X (X shares) (X (X ,) (X (X via) (X (X Goldman) (X (X ,) (X (X Sachs) (X (X &) (X (X Co) (X .)))))))))))) (X (X comcast) (X (X Corp.) (X --))) (X (X $) (X (X 150) (X (X million) (X (X convertible) (X (X debentures) (X (X ,) (X (X via) (X (X Merrill) (X (X Lynch) (X .)))))))))) (X (X css) (X (X Industries) (X --))) (X (X 1.3) (X (X million) (X (X common) (X (X shares) (X (X ,) (X (X via) (X (X Merrill) (X (X Lynch) (X .))))))))) (X (X eastern) (X (X Utilities) (X (X Associates) (X --)))) (X (X 1.5) (X (X million) (X (X common) (X (X shares) (X (X ,) (X (X via) (X (X PaineWebber) (X (X Inc) (X .))))))))) (X (X employee) (X (X Benefit) (X (X Plans) (X (X Inc.) (X --))))) (X (X two) (X (X million) (X (X common) (X (X shares) (X (X ,) (X (X via) (X (X Dean) (X (X Witter) (X (X Capital) (X (X Markets) (X .))))))))))) (X (X exabyte) (X (X Corp.) (X --))) (X (X 2,850,000) (X (X common) (X (X shares) (X (X ,) (X (X via) (X (X Goldman) (X (X Sachs) (X .)))))))) (X (X knowledgeware) (X (X Inc.) (X --))) (X (X 2.4) (X (X million) (X (X common) (X (X shares) (X (X ,) (X (X via) (X (X Montgomery) (X (X Securities) (X .))))))))) (X (X oregon) (X --)) (X (X $) (X (X 100) (X (X million) (X (X of) (X (X general) (X (X obligation) (X (X veterans) (X (X ') (X (X tax) (X (X notes) (X (X ,) (X (X Series) (X (X 1989) (X (X ,) (X (X via) (X (X competitive) (X (X bid) (X .)))))))))))))))))) (X (X washington) (X (X ,) (X (X D.C.) (X --)))) (X (X $) (X (X 200) (X (X million) (X (X of) (X (X 1990) (X (X general) (X (X obligation) (X (X tax) (X (X revenue) (X (X notes) (X (X -LRB-) (X (X Series) (X (X 1990A) (X (X -RRB-) (X (X ,) (X (X via) (X (X competitive) (X (X bid) (X .))))))))))))))))))) (X (X virginia) (X (X Public) (X (X School) (X (X Authority) (X --))))) (X (X $) (X (X 55,730,000) (X (X of) (X (X school) (X (X financing) (X (X bonds) (X (X ,) (X (X 1989) (X (X Series) (X (X B) (X (X -LRB-) (X (X 1987) (X (X resolution) (X (X -RRB-) (X (X ,) (X (X via) (X (X competitive) (X (X bid) (X .))))))))))))))))))) (X (X austin) (X (X ,) (X (X Texas) (X --)))) (X (X $) (X (X 68,230,000) (X (X of) (X (X various) (X (X bonds) (X (X ,) (X (X including) (X (X $) (X (X 32) (X (X million) (X (X hotel) (X (X occupancy) (X (X tax) (X (X revenue) (X (X bonds) (X (X ,) (X (X Series) (X (X 1989A) (X (X ,) (X (X and) (X (X $) (X (X 36.23) (X (X million) (X (X convention) (X (X center) (X (X revenue) (X (X bonds) (X (X ,) (X (X Series) (X (X 1989B) (X (X ,) (X (X via) (X (X a) (X (X Morgan) (X (X Stanley) (X (X &) (X (X Co.) (X (X group) (X .))))))))))))))))))))))))))))))))))))))) (X (X california) (X (X Health) (X (X Facilities) (X (X Financing) (X (X Authority) (X --)))))) (X (X $) (X (X 144.5) (X (X million) (X (X of) (X (X Kaiser) (X (X Permanente) (X (X revenue) (X (X bonds) (X (X ,) (X (X via) (X (X a) (X (X PaineWebber) (X (X group) (X .)))))))))))))) (X (X connecticut) (X --)) (X (X $) (X (X 100) (X (X million) (X (X of) (X (X general) (X (X obligation) (X (X capital) (X (X appreciation) (X (X bonds) (X (X ,) (X (X College) (X (X Savings) (X (X Plan) (X (X ,) (X (X 1989) (X (X Series) (X (X B) (X (X ,) (X (X via) (X (X a) (X (X Prudential-Bache) (X (X Capital) (X (X Funding) (X (X group) (X .))))))))))))))))))))))))) (X (X pennsylvania) (X (X Higher) (X (X Education) (X (X Facilities) (X (X Authority) (X --)))))) (X (X $) (X (X 117) (X (X million) (X (X of) (X (X revenue) (X (X bonds) (X (X for) (X (X Hahnemann) (X (X University) (X (X ,) (X (X Series) (X (X 1989) (X (X ,) (X (X via) (X (X a) (X (X Merrill) (X (X Lynch) (X (X group) (X .))))))))))))))))))) (X (X tennessee) (X (X Valley) (X (X Authority) (X --)))) (X (X three) (X (X billion) (X (X of) (X (X power) (X (X bonds) (X (X ,) (X (X via) (X (X First) (X (X Boston) (X (X Corp) (X .))))))))))) (X (X university) (X (X of) (X (X Medicine) (X (X And) (X (X Dentistry) (X (X of) (X (X New) (X (X Jersey) (X --))))))))) (X (X $) (X (X 55) (X (X million) (X (X of) (X (X Series) (X (X C) (X (X bonds) (X (X ,) (X (X via) (X (X a) (X (X Prudential-Bache) (X (X group) (X .))))))))))))) (X (X west) (X (X Virginia) (X (X Parkways) (X (X ,) (X (X Economic) (X (X Development) (X (X And) (X (X Tourism) (X (X Authority) (X --)))))))))) (X (X $) (X (X 143) (X (X million) (X (X of) (X (X parkway) (X (X revenue) (X (X bonds) (X (X ,) (X (X Series) (X (X 1989) (X (X ,) (X (X via) (X (X a) (X (X PaineWebber) (X (X group) (X .)))))))))))))))) (X (X san) (X (X Antonio) (X (X ,) (X (X Texas) (X --))))) (X (X $) (X (X 640) (X (X million) (X (X of) (X (X gas) (X (X and) (X (X electric) (X (X revenue) (X (X refunding) (X (X bonds) (X (X ,) (X (X via) (X (X a) (X (X First) (X (X Boston) (X (X group) (X .))))))))))))))))) (X (X south) (X (X Dakota) (X (X Health) (X (X &) (X (X Education) (X (X Facility) (X (X Authority) (X --)))))))) (X (X $) (X (X 51.1) (X (X million) (X (X of) (X (X Rapid) (X (X City) (X (X Regional) (X (X Hospital) (X (X bonds) (X (X ,) (X (X via) (X (X a) (X (X Dougherty) (X (X ,) (X (X Dawkins) (X (X ,) (X (X Strand) (X (X &) (X (X Yost) (X (X Inc.) (X (X group) (X .)))))))))))))))))))))) (X (X small) (X (X investors) (X (X matched) (X (X their) (X (X big) (X (X institutional) (X (X brethren) (X (X in) (X (X anxiety) (X (X over) (X (X the) (X (X weekend) (X (X ,) (X (X but) (X (X most) (X (X seemed) (X (X to) (X (X be) (X (X taking) (X (X a) (X (X philosophical) (X (X approach) (X (X and) (X (X said) (X (X they) (X (X were) (X (X resigned) (X (X to) (X (X riding) (X (X out) (X (X the) (X (X latest) (X (X storm) (X (X in) (X (X the) (X (X stock) (X (X market) (X .)))))))))))))))))))))))))))))))))))))) (X (X ``) (X (X I) (X (X 'm) (X (X not) (X (X losing) (X (X faith) (X (X in) (X (X the) (X (X market) (X (X ,) (X (X '') (X (X said) (X (X Boston) (X (X lawyer) (X (X Christopher) (X (X Sullivan) (X (X as) (X (X he) (X (X watched) (X (X the) (X (X market) (X (X plunge) (X (X on) (X (X a) (X (X big) (X (X screen) (X (X in) (X (X front) (X (X of) (X (X a) (X (X brokerage) (X (X firm) (X .))))))))))))))))))))))))))))))))) (X (X but) (X (X he) (X (X 's) (X (X not) (X (X so) (X (X sure) (X (X about) (X (X everyone) (X (X else) (X .)))))))))) (X (X ``) (X (X I) (X (X think) (X (X on) (X (X Monday) (X (X the) (X (X small) (X (X -LRB-) (X (X investors) (X (X -RRB-) (X (X are) (X (X going) (X (X to) (X (X panic) (X (X and) (X (X sell) (X (X ,) (X (X '') (X (X predicted) (X (X Mr.) (X (X Sullivan) (X (X ,) (X (X whose) (X (X investments) (X (X include) (X (X AMR) (X (X Corp.) (X (X 's) (X (X American) (X (X Airlines) (X (X unit) (X (X and) (X (X several) (X (X mutual) (X (X funds) (X .)))))))))))))))))))))))))))))))))))) (X (X ``) (X (X And) (X (X I) (X (X think) (X (X institutions) (X (X are) (X (X going) (X (X to) (X (X come) (X (X in) (X (X and) (X (X buy) (X ...))))))))))))) (X (X i) (X (X 'm) (X (X going) (X (X to) (X (X hold) (X (X on) (X .))))))) (X (X if) (X (X I) (X (X sell) (X (X now) (X (X ,) (X (X I) (X (X 'll) (X (X take) (X (X a) (X (X big) (X (X loss) (X (X .) (X ''))))))))))))) (X (X some) (X (X evinced) (X (X an) (X (X optimism) (X (X that) (X (X had) (X (X been) (X (X rewarded) (X (X when) (X (X they) (X (X did) (X (X n't) (X (X flee) (X (X the) (X (X market) (X (X in) (X (X 1987) (X .)))))))))))))))))) (X (X ``) (X (X Oh) (X (X ,) (X (X I) (X (X bet) (X (X it) (X (X 'll) (X (X be) (X (X up) (X (X 50) (X (X points) (X (X on) (X (X Monday) (X (X ,) (X (X '') (X (X said) (X (X Lucy) (X (X Crump) (X (X ,) (X (X a) (X (X 78-year-old) (X (X retired) (X (X housewife) (X (X in) (X (X Lexington) (X (X ,) (X (X Ky) (X .)))))))))))))))))))))))))))) (X (X mrs.) (X (X Crump) (X (X said) (X (X her) (X (X Ashwood) (X (X Investment) (X (X Club) (X (X 's) (X (X portfolio) (X (X lost) (X (X about) (X (X one-third) (X (X of) (X (X its) (X (X value) (X (X following) (X (X the) (X (X Black) (X (X Monday) (X (X crash) (X (X ,) (X (X ``) (X (X but) (X (X no) (X (X one) (X (X got) (X (X discouraged) (X (X ,) (X (X and) (X (X we) (X (X gained) (X (X that) (X (X back) (X (X --) (X (X and) (X (X more) (X (X .) (X '')))))))))))))))))))))))))))))))))))))) (X (X at) (X (X the) (X (X annual) (X (X congress) (X (X of) (X (X the) (X (X National) (X (X Association) (X (X of) (X (X Investors) (X (X Corp.) (X (X at) (X (X the) (X (X Hyatt) (X (X Regency) (X (X hotel) (X (X in) (X (X Minneapolis) (X (X ,) (X (X the) (X (X scene) (X (X was) (X (X calm) (X .)))))))))))))))))))))))) (X (X some) (X (X 500) (X (X investors) (X (X representing) (X (X investor) (X (X clubs) (X (X from) (X (X around) (X (X the) (X (X U.S.) (X (X were) (X (X attending) (X (X when) (X (X the) (X (X market) (X (X started) (X (X to) (X (X slide) (X (X Friday) (X .)))))))))))))))))))) (X (X but) (X (X Robert) (X (X Showalter) (X (X ,) (X (X an) (X (X official) (X (X of) (X (X the) (X (X association) (X (X ,) (X (X said) (X (X no) (X (X special) (X (X bulletins) (X (X or) (X (X emergency) (X (X meetings) (X (X of) (X (X the) (X (X investors) (X (X ') (X (X clubs) (X (X are) (X (X planned) (X .))))))))))))))))))))))))) (X (X in) (X (X fact) (X (X ,) (X (X some) (X (X of) (X (X the) (X (X association) (X (X 's) (X (X members) (X (X --) (X (X long-term) (X (X ,) (X (X buy-and-hold) (X (X investors) (X (X --) (X (X welcomed) (X (X the) (X (X drop) (X (X in) (X (X prices) (X .))))))))))))))))))))) (X (X ``) (X (X We) (X (X hope) (X (X to) (X (X take) (X (X advantage) (X (X of) (X (X it) (X (X ,) (X (X '') (X (X said) (X (X John) (X (X Snyder) (X (X ,) (X (X a) (X (X member) (X (X of) (X (X a) (X (X Los) (X (X Angeles) (X (X investors) (X (X ') (X (X club) (X .)))))))))))))))))))))))) (X (X he) (X (X has) (X (X four) (X (X stocks) (X (X in) (X (X mind) (X (X to) (X (X buy) (X (X if) (X (X the) (X (X prices) (X (X drop) (X (X to) (X (X the) (X (X level) (X (X he) (X (X wants) (X .)))))))))))))))))) (X (X not) (X (X everyone) (X (X is) (X (X reacting) (X (X so) (X (X calmly) (X (X ,) (X (X however) (X (X ,) (X (X and) (X (X many) (X (X wonder) (X (X about) (X (X the) (X (X long-term) (X (X implications) (X (X of) (X (X what) (X (X is) (X (X widely) (X (X viewed) (X (X as) (X (X the) (X (X cause) (X (X of) (X (X Friday) (X (X 's) (X (X slide) (X (X ,) (X (X reluctance) (X (X by) (X (X banks) (X (X to) (X (X provide) (X (X financing) (X (X for) (X (X a) (X (X buy-out) (X (X of) (X (X UAL) (X (X Corp.) (X (X ,) (X (X parent) (X (X of) (X (X United) (X (X Airlines) (X .))))))))))))))))))))))))))))))))))))))))))))))) (X (X marc) (X (X Perkins) (X (X ,) (X (X a) (X (X Tampa) (X (X ,) (X (X Fla.) (X (X ,) (X (X investment) (X (X banker) (X (X ,) (X (X said) (X (X the) (X (X market) (X (X drop) (X (X is) (X (X one) (X (X of) (X (X ``) (X (X a) (X (X tremendous) (X (X number) (X (X of) (X (X signs) (X (X that) (X (X the) (X (X leveraged) (X (X take-out) (X (X era) (X (X is) (X (X ending) (X .)))))))))))))))))))))))))))))))) (X (X there) (X (X 's) (X (X no) (X (X question) (X (X that) (X (X there) (X (X 's) (X (X a) (X (X general) (X (X distaste) (X (X for) (X (X leverage) (X (X among) (X (X lenders) (X .))))))))))))))) (X (X '') (X (X Mr.) (X (X Perkins) (X (X believes) (X (X ,) (X (X however) (X (X ,) (X (X that) (X (X the) (X (X market) (X (X could) (X (X be) (X (X stabilized) (X (X if) (X (X California) (X (X investor) (X (X Marvin) (X (X Davis) (X (X steps) (X (X back) (X (X in) (X (X to) (X (X the) (X (X United) (X (X bidding) (X (X with) (X (X an) (X (X offer) (X (X of) (X (X $) (X (X 275) (X (X a) (X (X share) (X .)))))))))))))))))))))))))))))))))) (X (X sara) (X (X Albert) (X (X ,) (X (X a) (X (X 34-year-old) (X (X Dallas) (X (X law) (X (X student) (X (X ,) (X (X says) (X (X she) (X (X 's) (X (X generally) (X (X skittish) (X (X about) (X (X the) (X (X stock) (X (X market) (X (X and) (X (X the) (X (X takeover) (X (X activity) (X (X that) (X (X seems) (X (X to) (X (X fuel) (X (X it) (X .)))))))))))))))))))))))))))) (X (X ``) (X (X I) (X (X have) (X (X this) (X (X feeling) (X (X that) (X (X it) (X (X 's) (X (X built) (X (X on) (X (X sand) (X (X ,) (X (X '') (X (X she) (X (X says) (X (X ,) (X (X that) (X (X the) (X (X market) (X (X rises) (X (X ``) (X (X but) (X (X there) (X (X 's) (X (X no) (X (X foundation) (X (X to) (X (X it) (X (X .) (X '')))))))))))))))))))))))))))))) (X (X she) (X (X and) (X (X her) (X (X husband) (X (X pulled) (X (X most) (X (X of) (X (X their) (X (X investments) (X (X out) (X (X of) (X (X the) (X (X market) (X (X after) (X (X the) (X (X 1987) (X (X crash) (X (X ,) (X (X although) (X (X she) (X (X still) (X (X owns) (X (X some) (X (X Texaco) (X (X stock) (X .)))))))))))))))))))))))))) (X (X partly) (X (X because) (X (X of) (X (X concern) (X (X about) (X (X the) (X (X economy) (X (X and) (X (X partly) (X (X because) (X (X she) (X (X recently) (X (X quit) (X (X her) (X (X job) (X (X as) (X (X a) (X (X legal) (X (X assistant) (X (X to) (X (X go) (X (X to) (X (X school) (X (X ,) (X (X ``) (X (X I) (X (X think) (X (X at) (X (X this) (X (X point) (X (X we) (X (X want) (X (X to) (X (X be) (X (X a) (X (X lot) (X (X more) (X (X liquid) (X (X .) (X '')))))))))))))))))))))))))))))))))))))))) (X (X others) (X (X wonder) (X (X how) (X (X many) (X (X more) (X (X of) (X (X these) (X (X shocks) (X (X the) (X (X small) (X (X investor) (X (X can) (X (X stand) (X .)))))))))))))) (X (X ``) (X (X We) (X (X all) (X (X assumed) (X (X October) (X (X '87) (X (X was) (X (X a) (X (X one-time) (X (X shot) (X (X ,) (X (X '') (X (X said) (X (X San) (X (X Francisco) (X (X attorney) (X (X David) (X (X Greenberg) (X .))))))))))))))))))) (X (X ``) (X (X We) (X (X told) (X (X the) (X (X little) (X (X guy) (X (X it) (X (X could) (X (X only) (X (X happen) (X (X once) (X (X in) (X (X a) (X (X lifetime) (X (X ,) (X (X come) (X (X on) (X (X back) (X .))))))))))))))))))) (X (X now) (X (X it) (X (X 's) (X (X happening) (X (X again) (X (X .) (X ''))))))) (X (X mr.) (X (X Greenberg) (X (X got) (X (X out) (X (X just) (X (X before) (X (X the) (X (X 1987) (X (X crash) (X (X and) (X (X ,) (X (X to) (X (X his) (X (X regret) (X (X ,) (X (X never) (X (X went) (X (X back) (X (X even) (X (X as) (X (X the) (X (X market) (X (X soared) (X .)))))))))))))))))))))))) (X (X this) (X (X time) (X (X he) (X (X 's) (X (X ready) (X (X to) (X (X buy) (X (X in) (X (X ``) (X (X when) (X (X the) (X (X panic) (X (X wears) (X (X off) (X (X .) (X '')))))))))))))))) (X (X still) (X (X ,) (X (X he) (X (X adds) (X (X :) (X (X ``) (X (X We) (X (X ca) (X (X n't) (X (X have) (X (X this) (X (X kind) (X (X of) (X (X thing) (X (X happen) (X (X very) (X (X often) (X .)))))))))))))))))) (X (X when) (X (X the) (X (X little) (X (X guy) (X (X gets) (X (X frightened) (X (X ,) (X (X the) (X (X big) (X (X guys) (X (X hurt) (X (X badly) (X .))))))))))))) (X (X merrill) (X (X Lynch) (X (X ca) (X (X n't) (X (X survive) (X (X without) (X (X the) (X (X little) (X (X guy) (X (X .) (X ''))))))))))) (X (X small) (X (X investors) (X (X have) (X (X tiptoed) (X (X back) (X (X into) (X (X the) (X (X market) (X (X following) (X (X Black) (X (X Monday) (X (X ,) (X (X but) (X (X mostly) (X (X through) (X (X mutual) (X (X funds) (X .)))))))))))))))))) (X (X discount) (X (X brokerage) (X (X customers) (X (X ``) (X (X have) (X (X been) (X (X in) (X (X the) (X (X market) (X (X somewhat) (X (X but) (X (X not) (X (X whole) (X (X hog) (X (X like) (X (X they) (X (X were) (X (X two) (X (X years) (X (X ago) (X (X ,) (X (X '') (X (X says) (X (X Leslie) (X (X Quick) (X (X Jr.) (X (X ,) (X (X chairman) (X (X of) (X (X the) (X (X Quick) (X (X &) (X (X Reilly) (X (X discount) (X (X brokerage) (X (X firm) (X .))))))))))))))))))))))))))))))))))))) (X (X hugo) (X (X Quackenbush) (X (X ,) (X (X senior) (X (X vice) (X (X president) (X (X at) (X (X Charles) (X (X Scwhab) (X (X Corp.) (X (X ,) (X (X says) (X (X Schwab) (X (X customers) (X (X ``) (X (X have) (X (X been) (X (X neutral) (X (X to) (X (X cautious) (X (X recently) (X (X about) (X (X stocks) (X (X .) (X ''))))))))))))))))))))))))) (X (X individual) (X (X investors) (X (X are) (X (X still) (X (X angry) (X (X about) (X (X program) (X (X trading) (X (X ,) (X (X Mr.) (X (X Quackenbush) (X (X says) (X .))))))))))))) (X (X avner) (X (X Arbel) (X (X ,) (X (X a) (X (X Cornell) (X (X University) (X (X finance) (X (X professor) (X (X ,) (X (X says) (X (X government) (X (X regulators) (X (X will) (X (X have) (X (X to) (X (X more) (X (X closely) (X (X control) (X (X program) (X (X trading) (X (X to) (X (X ``) (X (X win) (X (X back) (X (X the) (X (X confidence) (X (X of) (X (X the) (X (X small) (X (X investor) (X (X .) (X '')))))))))))))))))))))))))))))))) (X (X but) (X (X it) (X (X 's) (X (X not) (X (X only) (X (X the) (X (X stock) (X (X market) (X (X that) (X (X has) (X (X some) (X (X small) (X (X investors) (X (X worried) (X .))))))))))))))) (X (X alan) (X (X Helfman) (X (X ,) (X (X general) (X (X sales) (X (X manager) (X (X of) (X (X a) (X (X Chrysler) (X (X dealership) (X (X in) (X (X Houston) (X (X ,) (X (X said) (X (X he) (X (X and) (X (X his) (X (X mother) (X (X have) (X (X some) (X (X joint) (X (X stock) (X (X investments) (X (X ,) (X (X but) (X (X the) (X (X overall) (X (X economy) (X (X is) (X (X his) (X (X chief) (X (X worry) (X .))))))))))))))))))))))))))))))))) (X (X ``) (X (X These) (X (X high) (X (X rollers) (X (X took) (X (X a) (X (X big) (X (X bath) (X (X today) (X (X ,) (X (X '') (X (X he) (X (X said) (X (X in) (X (X his) (X (X showroom) (X (X ,) (X (X which) (X (X is) (X (X within) (X (X a) (X (X few) (X (X miles) (X (X of) (X (X the) (X (X multi-million) (X (X dollar) (X (X homes) (X (X of) (X (X some) (X (X of) (X (X Houston) (X (X 's) (X (X richest) (X (X citizens) (X .)))))))))))))))))))))))))))))))))))) (X (X ``) (X (X And) (X (X I) (X (X can) (X (X tell) (X (X you) (X (X that) (X (X a) (X (X high) (X (X roller) (X (X is) (X (X n't) (X (X going) (X (X to) (X (X come) (X (X in) (X (X tomorrow) (X (X and) (X (X buy) (X (X a) (X (X Chrysler) (X (X TC) (X (X by) (X (X Maserati) (X (X .) (X '')))))))))))))))))))))))))) (X (X and) (X (X ,) (X (X finally) (X (X ,) (X (X there) (X (X were) (X (X the) (X (X gloaters) (X .))))))))) (X (X ``) (X (X I) (X (X got) (X (X out) (X (X in) (X (X 1987) (X .))))))) (X (X everything) (X (X ,) (X (X '') (X (X said) (X (X Pascal) (X (X Antori) (X (X ,) (X (X an) (X (X Akron) (X (X ,) (X (X Ohio) (X (X ,) (X (X plumbing) (X (X contractor) (X (X who) (X (X was) (X (X visiting) (X (X Chicago) (X (X and) (X (X stopped) (X (X by) (X (X Fidelity) (X (X Investments) (X (X ') (X (X LaSalle) (X (X Street) (X (X office) (X .)))))))))))))))))))))))))))) (X (X ``) (X (X I) (X (X just) (X (X stopped) (X (X by) (X (X to) (X (X see) (X (X how) (X (X much) (X (X I) (X (X would) (X (X have) (X (X lost) (X (X .) (X ''))))))))))))))) (X (X would) (X (X Mr.) (X (X Antori) (X (X ever) (X (X get) (X (X back) (X (X in) (X ?)))))))) (X (X ``) (X (X Are) (X (X you) (X (X kidding) (X !))))) (X (X when) (X (X it) (X (X comes) (X (X to) (X (X money) (X (X :) (X (X Once) (X (X bitten) (X (X ,) (X (X 2,000) (X (X times) (X (X shy) (X .))))))))))))) (X (X the) (X (X crowded) (X (X field) (X (X for) (X (X notebook-sized) (X (X computers) (X (X is) (X (X about) (X (X to) (X (X become) (X (X a) (X (X lot) (X (X more) (X (X crowded) (X .))))))))))))))) (X (X compaq) (X (X Computer) (X (X Corp.) (X (X 's) (X (X long-awaited) (X (X entry) (X (X today) (X (X into) (X (X the) (X (X notebook) (X (X field) (X (X is) (X (X expected) (X (X to) (X (X put) (X (X immediate) (X (X heat) (X (X on) (X (X others) (X (X in) (X (X the) (X (X market) (X (X ,) (X (X especially) (X (X Zenith) (X (X Electronics) (X (X Corp.) (X (X ,) (X (X the) (X (X current) (X (X market) (X (X leader) (X (X ,) (X (X and) (X (X on) (X (X a) (X (X swarm) (X (X of) (X (X promising) (X (X start-ups) (X .))))))))))))))))))))))))))))))))))))))))) (X (X compaq) (X (X 's) (X (X series) (X (X of) (X (X notebooks) (X (X extends) (X (X a) (X (X trend) (X (X toward) (X (X downsizing) (X (X in) (X (X the) (X (X personal) (X (X computer) (X (X market) (X .)))))))))))))))) (X (X one) (X (X manufacturer) (X (X already) (X (X has) (X (X produced) (X (X a) (X (X clipboard-sized) (X (X computer) (X (X called) (X (X a) (X (X notepad) (X (X ,) (X (X and) (X (X two) (X (X others) (X (X have) (X (X introduced) (X (X even) (X (X smaller) (X (X ``) (X (X palmtops) (X (X .) (X ''))))))))))))))))))))))) (X (X but) (X (X those) (X (X machines) (X (X are) (X (X still) (X (X considered) (X (X novelties) (X (X ,) (X (X with) (X (X keyboards) (X (X only) (X (X a) (X (X munchkin) (X (X could) (X (X love) (X (X and) (X (X screens) (X (X to) (X (X match) (X .)))))))))))))))))))) (X (X compaq) (X (X 's) (X (X notebooks) (X (X ,) (X (X by) (X (X contrast) (X (X ,) (X (X may) (X (X be) (X (X the) (X (X first) (X (X in) (X (X their) (X (X weight) (X (X class) (X (X not) (X (X to) (X (X skimp) (X (X on) (X (X features) (X (X found) (X (X in) (X (X much) (X (X bigger) (X (X machines) (X .)))))))))))))))))))))))))) (X (X analysts) (X (X say) (X (X they) (X (X 're) (X (X faster) (X (X and) (X (X carry) (X (X more) (X (X memory) (X (X than) (X (X anything) (X (X else) (X (X of) (X (X their) (X (X size) (X (X on) (X (X the) (X (X market) (X (X --) (X (X and) (X (X they) (X (X 're) (X (X priced) (X (X aggressively) (X (X at) (X (X $) (X (X 2,400) (X (X to) (X (X $) (X (X 5,000) (X .))))))))))))))))))))))))))))))) (X (X all) (X (X of) (X (X this) (X (X comes) (X (X in) (X (X a) (X (X machine) (X (X that) (X (X weighs) (X (X only) (X (X six) (X (X pounds) (X (X and) (X (X fits) (X (X comfortably) (X (X into) (X (X most) (X (X briefcases) (X .))))))))))))))))))) (X (X in) (X (X recent) (X (X months) (X (X ,) (X (X Compaq) (X (X 's) (X (X competition) (X (X ,) (X (X including) (X (X Zenith) (X (X ,) (X (X Toshiba) (X (X Corp.) (X (X ,) (X (X Tandy) (X (X Corp.) (X (X and) (X (X NEC) (X (X Corp.) (X (X all) (X (X have) (X (X introduced) (X (X portables) (X (X that) (X (X weigh) (X (X approximately) (X (X the) (X (X same) (X (X and) (X (X that) (X (X are) (X (X called) (X (X notebooks) (X (X --) (X (X perhaps) (X (X misleadingly) (X .))))))))))))))))))))))))))))))))))))) (X (X one) (X (X analyst) (X (X ,) (X (X noting) (X (X that) (X (X most) (X (X such) (X (X machines) (X (X are) (X (X about) (X (X two) (X (X inches) (X (X thick) (X (X ,) (X (X takes) (X (X exception) (X (X to) (X (X the) (X (X name) (X .)))))))))))))))))))) (X (X ``) (X (X This) (X (X is) (X (X n't) (X (X quite) (X (X a) (X (X notebook) (X (X --) (X (X I) (X (X call) (X (X it) (X (X a) (X (X phonebook) (X (X ,) (X (X '') (X (X he) (X (X says) (X .)))))))))))))))))) (X (X that) (X (X ca) (X (X n't) (X (X be) (X (X said) (X (X of) (X (X the) (X (X $) (X (X 2,400) (X (X notepad) (X (X computer) (X (X introduced) (X (X a) (X (X few) (X (X weeks) (X (X ago) (X (X by) (X (X GRiD) (X (X Systems) (X (X Corp.) (X (X ,) (X (X a) (X (X unit) (X (X of) (X (X Tandy) (X .)))))))))))))))))))))))))) (X (X instead) (X (X of) (X (X a) (X (X keyboard) (X (X ,) (X (X it) (X (X features) (X (X a) (X (X writing) (X (X surface) (X (X ,) (X (X an) (X (X electronic) (X (X pen) (X (X and) (X (X the) (X (X ability) (X (X to) (X (X ``) (X (X read) (X (X '') (X (X block) (X (X printing) (X .)))))))))))))))))))))))) (X (X at) (X (X 4) (X (X 1\/2) (X (X pounds) (X (X ,) (X (X it) (X (X may) (X (X be) (X (X too) (X (X ambitiously) (X (X named) (X (X ,) (X (X but) (X (X it) (X (X nevertheless) (X (X opens) (X (X up) (X (X the) (X (X kind) (X (X of) (X (X marketing) (X (X possibilities) (X (X that) (X (X make) (X (X analysts) (X (X froth) (X .))))))))))))))))))))))))))) (X (X palmtops) (X (X are) (X (X n't) (X (X far) (X (X behind) (X .)))))) (X (X atari) (X (X Corp.) (X (X 's) (X (X Portfolio) (X (X ,) (X (X introduced) (X (X in) (X (X Europe) (X (X two) (X (X months) (X (X ago) (X (X and) (X (X in) (X (X the) (X (X U.S.) (X (X in) (X (X early) (X (X September) (X (X ,) (X (X weighs) (X (X less) (X (X than) (X (X a) (X (X pound) (X (X ,) (X (X costs) (X (X a) (X (X mere) (X (X $) (X (X 400) (X (X and) (X (X runs) (X (X on) (X (X three) (X (X AA) (X (X batteries) (X (X ,) (X (X yet) (X (X has) (X (X the) (X (X power) (X (X to) (X (X run) (X (X some) (X (X spreadsheets) (X (X and) (X (X word) (X (X processing) (X (X programs) (X .)))))))))))))))))))))))))))))))))))))))))))))))))) (X (X some) (X (X critics) (X (X ,) (X (X however) (X (X ,) (X (X say) (X (X its) (X (X ability) (X (X to) (X (X run) (X (X commonplace) (X (X programs) (X (X is) (X (X restricted) (X (X by) (X (X a) (X (X limited) (X (X memory) (X .))))))))))))))))))) (X (X poquet) (X (X Computer) (X (X Corp.) (X (X ,) (X (X meanwhile) (X (X ,) (X (X has) (X (X introduced) (X (X a) (X (X much) (X (X more) (X (X sophisticated) (X (X palmtop) (X (X that) (X (X can) (X (X run) (X (X Lotus) (X (X 1-2-3) (X (X and) (X (X other) (X (X sophisticated) (X (X software) (X (X programs) (X (X ,) (X (X but) (X (X costs) (X (X five) (X (X times) (X (X as) (X (X much) (X .))))))))))))))))))))))))))))))) (X (X at) (X (X stake) (X (X is) (X (X what) (X (X Mike) (X (X Swavely) (X (X ,) (X (X Compaq) (X (X 's) (X (X president) (X (X of) (X (X North) (X (X America) (X (X operations) (X (X ,) (X (X calls) (X (X ``) (X (X the) (X (X Holy) (X (X Grail) (X (X of) (X (X the) (X (X computer) (X (X industry) (X (X '') (X (X --) (X (X the) (X (X search) (X (X for) (X (X ``) (X (X a) (X (X real) (X (X computer) (X (X in) (X (X a) (X (X package) (X (X so) (X (X small) (X (X you) (X (X can) (X (X take) (X (X it) (X (X everywhere) (X (X .) (X ''))))))))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X market) (X (X is) (X (X so) (X (X new) (X (X ,) (X (X nobody) (X (X knows) (X (X yet) (X (X how) (X (X big) (X (X it) (X (X can) (X (X be) (X .))))))))))))))) (X (X ``) (X (X I) (X (X 've) (X (X had) (X (X a) (X (X lot) (X (X of) (X (X people) (X (X trying) (X (X to) (X (X sell) (X (X me) (X (X services) (X (X to) (X (X find) (X (X out) (X (X how) (X (X big) (X (X it) (X (X is) (X (X ,) (X (X '') (X (X says) (X (X Tom) (X (X Humphries) (X (X ,) (X (X director) (X (X of) (X (X marketing) (X (X for) (X (X GRiD) (X .)))))))))))))))))))))))))))))))) (X (X ``) (X (X Whether) (X (X it) (X (X 's) (X (X $) (X (X 5) (X (X billion) (X (X or) (X (X $) (X (X 3.5) (X (X billion) (X (X ,) (X (X it) (X (X does) (X (X n't) (X (X matter) (X .))))))))))))))))) (X (X it) (X (X 's) (X (X huge) (X (X .) (X ''))))) (X (X consider) (X (X the) (X (X growth) (X (X of) (X (X portables) (X (X ,) (X (X which) (X (X now) (X (X comprise) (X (X 12) (X (X %) (X (X of) (X (X all) (X (X personal) (X (X computer) (X (X sales) (X .))))))))))))))))) (X (X laptops) (X (X --) (X (X generally) (X (X anything) (X (X under) (X (X 15) (X (X pounds) (X (X --) (X (X have) (X (X become) (X (X the) (X (X fastest-growing) (X (X personal) (X (X computer) (X (X segment) (X (X ,) (X (X with) (X (X sales) (X (X doubling) (X (X this) (X (X year) (X .)))))))))))))))))))))) (X (X responding) (X (X to) (X (X that) (X (X demand) (X (X ,) (X (X however) (X (X ,) (X (X has) (X (X led) (X (X to) (X (X a) (X (X variety) (X (X of) (X (X compromises) (X .))))))))))))))) (X (X making) (X (X computers) (X (X smaller) (X (X often) (X (X means) (X (X sacrificing) (X (X memory) (X .)))))))) (X (X it) (X (X also) (X (X has) (X (X precluded) (X (X use) (X (X of) (X (X the) (X (X faster) (X (X ,) (X (X more) (X (X powerful) (X (X microprocessors) (X (X found) (X (X in) (X (X increasing) (X (X numbers) (X (X of) (X (X desktop) (X (X machines) (X .)))))))))))))))))))) (X (X size) (X (X and) (X (X weight) (X (X considerations) (X (X also) (X (X have) (X (X limited) (X (X screen) (X (X displays) (X .)))))))))) (X (X the) (X (X competitive) (X (X sniping) (X (X can) (X (X get) (X (X pretty) (X (X petty) (X (X at) (X (X times) (X .)))))))))) (X (X a) (X (X Poquet) (X (X spokesman) (X (X ,) (X (X for) (X (X example) (X (X ,) (X (X criticizes) (X (X the) (X (X Atari) (X (X Portfolio) (X (X because) (X (X it) (X (X requires) (X (X three) (X (X batteries) (X (X while) (X (X the) (X (X Poquet) (X (X needs) (X (X only) (X (X two) (X .))))))))))))))))))))))) (X (X both) (X (X palmtops) (X (X are) (X (X dismissed) (X (X by) (X (X notebook) (X (X makers) (X (X ,) (X (X who) (X (X argue) (X (X that) (X (X they) (X (X 're) (X (X too) (X (X small) (X (X --) (X (X a) (X (X problem) (X (X Poquet) (X (X also) (X (X encountered) (X (X in) (X (X focus) (X (X groups) (X (X ,) (X (X admits) (X (X Gerry) (X (X Purdy) (X (X ,) (X (X director) (X (X of) (X (X marketing) (X .))))))))))))))))))))))))))))))))) (X (X poquet) (X (X ,) (X (X trying) (X (X to) (X (X avoid) (X (X the) (X (X ``) (X (X gadget) (X (X '') (X (X label) (X (X ,) (X (X responded) (X (X with) (X (X the) (X (X tag) (X (X line) (X (X ,) (X (X ``) (X (X The) (X (X Poquet) (X (X PC) (X (X --) (X (X a) (X (X Very) (X (X Big) (X (X Computer) (X (X .) (X '')))))))))))))))))))))))))))) (X (X despite) (X (X the) (X (X sniping) (X (X ,) (X (X few) (X (X question) (X (X the) (X (X inevitability) (X (X of) (X (X the) (X (X move) (X (X to) (X (X small) (X (X machines) (X (X that) (X (X do) (X (X n't) (X (X make) (X (X compromises) (X .)))))))))))))))))))) (X (X toward) (X (X that) (X (X end) (X (X ,) (X (X experts) (X (X say) (X (X the) (X (X real) (X (X battle) (X (X will) (X (X take) (X (X place) (X (X between) (X (X center-stage) (X (X players) (X (X like) (X (X Toshiba) (X (X ,) (X (X Zenith) (X (X and) (X (X now) (X (X Compaq) (X .))))))))))))))))))))))) (X (X compaq) (X (X 's) (X (X new) (X (X machines) (X (X are) (X (X considered) (X (X a) (X (X direct) (X (X threat) (X (X to) (X (X start-up) (X (X firms) (X (X like) (X (X Dynabook) (X (X Inc.) (X (X ,) (X (X which) (X (X introduced) (X (X in) (X (X June) (X (X a) (X (X computer) (X (X that) (X (X ,) (X (X like) (X (X Compaq) (X (X 's) (X (X ,) (X (X uses) (X (X an) (X (X Intel) (X (X 286) (X (X microprocessor) (X (X and) (X (X has) (X (X a) (X (X hard) (X (X disk) (X (X drive) (X .)))))))))))))))))))))))))))))))))))))))) (X (X but) (X (X the) (X (X Dynabook) (X (X product) (X (X is) (X (X twice) (X (X as) (X (X heavy) (X (X and) (X (X costs) (X (X more) (X (X than) (X (X Compaq) (X (X 's) (X .))))))))))))))) (X (X compaq) (X (X 's) (X (X announcement) (X (X also) (X (X spells) (X (X trouble) (X (X for) (X (X Zenith) (X (X ,) (X (X which) (X (X last) (X (X year) (X (X had) (X (X 28) (X (X %) (X (X of) (X (X the) (X (X U.S.) (X (X laptop) (X (X market) (X (X but) (X (X recently) (X (X agreed) (X (X to) (X (X sell) (X (X its) (X (X computer) (X (X business) (X (X to) (X (X Cie.) (X (X des) (X (X Machines) (X (X Bull) (X (X ,) (X (X the) (X (X French) (X (X government-owned) (X (X computer) (X (X maker) (X .)))))))))))))))))))))))))))))))))))))))) (X (X zenith) (X (X holders) (X (X will) (X (X vote) (X (X in) (X (X December) (X (X on) (X (X the) (X (X proposed) (X (X $) (X (X 635) (X (X million) (X (X sale) (X (X ,) (X (X a) (X (X price) (X (X that) (X (X could) (X (X slip) (X (X because) (X (X it) (X (X is) (X (X pegged) (X (X to) (X (X Zenith) (X (X 's) (X (X share) (X (X and) (X (X sales) (X .)))))))))))))))))))))))))))))) (X (X compaq) (X (X is) (X (X already) (X (X taking) (X (X aim) (X (X at) (X (X Zenith) (X (X 's) (X (X market) (X (X share) (X .))))))))))) (X (X rod) (X (X Canion) (X (X ,) (X (X Compaq) (X (X 's) (X (X president) (X (X and) (X (X chief) (X (X executive) (X (X officer) (X (X ,) (X (X notes) (X (X pointedly) (X (X that) (X (X Zenith) (X (X 's) (X (X $) (X (X 2,000) (X (X MinisPort) (X (X uses) (X (X an) (X (X ``) (X (X unconventional) (X (X '') (X (X two-inch) (X (X floppy) (X (X disk) (X (X ,) (X (X whereas) (X (X Compaq) (X (X 's) (X (X new) (X (X machines) (X (X use) (X (X the) (X (X more) (X (X common) (X (X 3) (X (X 1\/2-inch) (X (X disk) (X .))))))))))))))))))))))))))))))))))))))))) (X (X john) (X (X P.) (X (X Frank) (X (X ,) (X (X president) (X (X of) (X (X Zenith) (X (X Data) (X (X Systems) (X (X ,) (X (X simply) (X (X shrugs) (X (X off) (X (X such) (X (X criticism) (X (X ,) (X (X noting) (X (X that) (X (X 3) (X (X 1\/2-inch) (X (X floppies) (X (X were) (X (X also) (X (X ``) (X (X unconventional) (X (X '') (X (X when) (X (X they) (X (X first) (X (X replaced) (X (X five-inch) (X (X disks) (X .))))))))))))))))))))))))))))))))) (X (X ``) (X (X We) (X (X do) (X (X n't) (X (X look) (X (X at) (X (X it) (X (X as) (X (X not) (X (X being) (X (X a) (X (X standard) (X (X ,) (X (X we) (X (X look) (X (X at) (X (X it) (X (X as) (X (X a) (X (X new) (X (X standard) (X (X ,) (X (X '') (X (X he) (X (X argues) (X .)))))))))))))))))))))))))) (X (X analysts) (X (X do) (X (X n't) (X (X see) (X (X it) (X (X that) (X (X way) (X .)))))))) (X (X ``) (X (X I) (X (X ca) (X (X n't) (X (X imagine) (X (X that) (X (X you) (X (X 'll) (X (X talk) (X (X to) (X (X anyone) (X (X who) (X (X wo) (X (X n't) (X (X tell) (X (X you) (X (X this) (X (X is) (X (X dynamite) (X (X for) (X (X Compaq) (X (X and) (X (X a) (X (X stopper) (X (X for) (X (X everyone) (X (X else) (X (X ,) (X (X '') (X (X says) (X (X Gene) (X (X Talsky) (X (X ,) (X (X president) (X (X of) (X (X Professional) (X (X Marketing) (X (X Management) (X (X Inc) (X .)))))))))))))))))))))))))))))))))))))))) (X (X adds) (X (X Bill) (X (X Lempesis) (X (X ,) (X (X senior) (X (X industry) (X (X analyst) (X (X for) (X (X DataQuest) (X (X ,) (X (X a) (X (X high-technology) (X (X market) (X (X research) (X (X firm) (X (X :) (X (X ``) (X (X We) (X (X basically) (X (X think) (X (X that) (X (X these) (X (X are) (X (X very) (X (X hot) (X (X products) (X .))))))))))))))))))))))))))) (X (X the) (X (X problem) (X (X Compaq) (X (X is) (X (X going) (X (X to) (X (X have) (X (X is) (X (X that) (X (X they) (X (X wo) (X (X n't) (X (X be) (X (X able) (X (X to) (X (X make) (X (X enough) (X (X of) (X (X them) (X (X .) (X ''))))))))))))))))))))) (X (X compaq) (X (X 's) (X (X machines) (X (X include) (X (X the) (X (X 3) (X (X 1\/2-inch) (X (X floppy) (X (X disk) (X (X drive) (X (X ,) (X (X a) (X (X backlit) (X (X screen) (X (X that) (X (X is) (X (X only) (X (X 1\/4-inch) (X (X thick) (X (X and) (X (X an) (X (X internal) (X (X expansion) (X (X slot) (X (X for) (X (X a) (X (X modem) (X (X --) (X (X in) (X (X other) (X (X words) (X (X ,) (X (X almost) (X (X all) (X (X the) (X (X capabilities) (X (X of) (X (X a) (X (X typical) (X (X office) (X (X machine) (X .)))))))))))))))))))))))))))))))))))))))))) (X (X others) (X (X undoubtedly) (X (X will) (X (X follow) (X (X ,) (X (X but) (X (X most) (X (X analysts) (X (X believe) (X (X Compaq) (X (X has) (X (X at) (X (X least) (X (X a) (X (X six-month) (X (X lead) (X (X on) (X (X the) (X (X competition) (X .)))))))))))))))))))) (X (X toshiba) (X (X 's) (X (X line) (X (X of) (X (X portables) (X (X ,) (X (X for) (X (X example) (X (X ,) (X (X features) (X (X the) (X (X T-1000) (X (X ,) (X (X which) (X (X is) (X (X in) (X (X the) (X (X same) (X (X weight) (X (X class) (X (X but) (X (X is) (X (X much) (X (X slower) (X (X and) (X (X has) (X (X less) (X (X memory) (X (X ,) (X (X and) (X (X the) (X (X T-1600) (X (X ,) (X (X which) (X (X also) (X (X uses) (X (X a) (X (X 286) (X (X microprocessor) (X (X ,) (X (X but) (X (X which) (X (X weighs) (X (X almost) (X (X twice) (X (X as) (X (X much) (X (X and) (X (X is) (X (X three) (X (X times) (X (X the) (X (X size) (X .)))))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X a) (X (X third) (X (X model) (X (X ,) (X (X marketed) (X (X in) (X (X Japan) (X (X ,) (X (X may) (X (X hit) (X (X the) (X (X U.S.) (X (X by) (X (X the) (X (X end) (X (X of) (X (X the) (X (X first) (X (X quarter) (X (X of) (X (X 1990) (X (X ,) (X (X but) (X (X by) (X (X then) (X (X ,) (X (X analysts) (X (X say) (X (X ,) (X (X Compaq) (X (X will) (X (X have) (X (X established) (X (X itself) (X (X as) (X (X one) (X (X of) (X (X three) (X (X major) (X (X players) (X .))))))))))))))))))))))))))))))))))))))))) (X (X what) (X (X about) (X (X Big) (X (X Blue) (X ?))))) (X (X international) (X (X Business) (X (X Machines) (X (X Corp.) (X (X ,) (X (X analysts) (X (X say) (X (X ,) (X (X has) (X (X been) (X (X burned) (X (X twice) (X (X in) (X (X trying) (X (X to) (X (X enter) (X (X the) (X (X laptop) (X (X market) (X (X and) (X (X shows) (X (X no) (X (X signs) (X (X of) (X (X trying) (X (X to) (X (X get) (X (X into) (X (X notebooks) (X (X anytime) (X (X soon) (X .)))))))))))))))))))))))))))))))) (X (X honeywell) (X (X Inc.) (X (X and) (X (X International) (X (X Business) (X (X Machines) (X (X Corp.) (X (X received) (X (X Air) (X (X Force) (X (X contracts) (X (X to) (X (X develop) (X (X integrated) (X (X circuits) (X (X for) (X (X use) (X (X in) (X (X space) (X .)))))))))))))))))))) (X (X honeywell) (X (X 's) (X (X contract) (X (X totaled) (X (X $) (X (X 69.7) (X (X million) (X (X ,) (X (X and) (X (X IBM) (X (X 's) (X (X $) (X (X 68.8) (X (X million) (X .))))))))))))))) (X (X boeing) (X (X Co.) (X (X received) (X (X a) (X (X $) (X (X 46.7) (X (X million) (X (X Air) (X (X Force) (X (X contract) (X (X for) (X (X developing) (X (X cable) (X (X systems) (X (X for) (X (X the) (X (X Minuteman) (X (X Missile) (X .))))))))))))))))))) (X (X general) (X (X Dynamics) (X (X Corp.) (X (X received) (X (X a) (X (X $) (X (X 29) (X (X million) (X (X Air) (X (X Force) (X (X contract) (X (X for) (X (X electronic-warfare) (X (X training) (X (X sets) (X .)))))))))))))))) (X (X grumman) (X (X Corp.) (X (X received) (X (X an) (X (X $) (X (X 18.1) (X (X million) (X (X Navy) (X (X contract) (X (X to) (X (X upgrade) (X (X aircraft) (X (X electronics) (X .)))))))))))))) (X (X avco) (X (X Corp.) (X (X received) (X (X an) (X (X $) (X (X 11.8) (X (X million) (X (X Army) (X (X contract) (X (X for) (X (X helicopter) (X (X engines) (X .))))))))))))) (X (X sharp) (X (X increases) (X (X in) (X (X the) (X (X price) (X (X of) (X (X fresh) (X (X produce) (X (X caused) (X (X Spain) (X (X 's) (X (X September) (X (X consumer) (X (X price) (X (X index) (X (X to) (X (X shoot) (X (X up) (X (X 1.1) (X (X %) (X (X from) (X (X the) (X (X previous) (X (X month) (X (X ,) (X (X pushing) (X (X the) (X (X annual) (X (X rate) (X (X of) (X (X inflation) (X (X to) (X (X 6.8) (X (X %) (X (X ,) (X (X the) (X (X National) (X (X Institute) (X (X of) (X (X Statistics) (X (X said) (X (X Friday) (X .))))))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X monthly) (X (X increase) (X (X is) (X (X the) (X (X highest) (X (X recorded) (X (X in) (X (X the) (X (X past) (X (X four) (X (X years) (X .))))))))))))) (X (X the) (X (X index) (X (X ,) (X (X which) (X (X registered) (X (X 156.8) (X (X at) (X (X the) (X (X end) (X (X of) (X (X September) (X (X ,) (X (X has) (X (X a) (X (X base) (X (X of) (X (X 100) (X (X set) (X (X in) (X (X 1983) (X (X and) (X (X is) (X (X n't) (X (X seasonally) (X (X adjusted) (X .)))))))))))))))))))))))))) (X (X prices) (X (X have) (X (X risen) (X (X 5.9) (X (X %) (X (X in) (X (X the) (X (X first) (X (X nine) (X (X months) (X (X of) (X (X the) (X (X year) (X (X ,) (X (X outstripping) (X (X both) (X (X the) (X (X initial) (X (X 3) (X (X %) (X (X inflation) (X (X goal) (X (X set) (X (X by) (X (X the) (X (X government) (X (X of) (X (X Socialist) (X (X Prime) (X (X Minister) (X (X Felipe) (X (X Gonzalez) (X (X and) (X (X the) (X (X second) (X (X ,) (X (X revised) (X (X goal) (X (X of) (X (X 5.8) (X (X %) (X .)))))))))))))))))))))))))))))))))))))))))) (X (X japan) (X (X 's) (X (X wholesale) (X (X prices) (X (X in) (X (X September) (X (X rose) (X (X 3.3) (X (X %) (X (X from) (X (X a) (X (X year) (X (X earlier) (X (X and) (X (X were) (X (X up) (X (X 0.4) (X (X %) (X (X from) (X (X the) (X (X previous) (X (X month) (X (X ,) (X (X the) (X (X Bank) (X (X of) (X (X Japan) (X (X announced) (X (X Friday) (X .)))))))))))))))))))))))))))))) (X (X the) (X (X wholesale) (X (X price) (X (X index) (X (X stood) (X (X at) (X (X 90.1) (X (X ,) (X (X compared) (X (X with) (X (X a) (X (X 1985) (X (X base) (X (X of) (X (X 100) (X .)))))))))))))))) (X (X plunge) (X ?)) (X (X what) (X (X plunge) (X ?))) (X (X twenty-four) (X (X New) (X (X York) (X (X Stock) (X (X Exchange) (X (X issues) (X (X hit) (X (X 52-week) (X (X highs) (X (X during) (X (X Friday) (X (X 's) (X (X trading) (X (X ,) (X (X despite) (X (X the) (X (X Dow) (X (X Jones) (X (X Industrial) (X (X Average) (X (X 's) (X (X 190.58-point) (X (X plunge) (X .)))))))))))))))))))))))) (X (X stocks) (X (X of) (X (X utilities) (X (X held) (X (X up) (X (X relatively) (X (X better) (X (X than) (X (X other) (X (X market) (X (X sectors) (X (X during) (X (X the) (X (X sell-off) (X .))))))))))))))) (X (X and) (X (X among) (X (X the) (X (X issues) (X (X hitting) (X (X new) (X (X highs) (X (X were) (X (X Detroit) (X (X Edison) (X (X Co.) (X (X and) (X (X Niagara) (X (X Mohawk) (X (X Power) (X (X Corp) (X .))))))))))))))))) (X (X other) (X (X major) (X (X issues) (X (X hitting) (X (X highs) (X (X included) (X (X American) (X (X Telephone) (X (X &) (X (X Telegraph) (X (X Co.) (X (X ,) (X (X Westinghouse) (X (X Electric) (X (X Corp.) (X (X ,) (X (X Exxon) (X (X Corp.) (X (X and) (X (X Cigna) (X (X Corp.) (X (X ,) (X (X the) (X (X big) (X (X insurer) (X .)))))))))))))))))))))))))) (X (X of) (X (X course) (X (X ,) (X (X many) (X (X more) (X (X issues) (X (X --) (X (X 93) (X (X --) (X (X hit) (X (X new) (X (X lows) (X .))))))))))))) (X (X these) (X (X included) (X (X International) (X (X Business) (X (X Machines) (X (X Corp.) (X (X ,) (X (X which) (X (X during) (X (X Friday) (X (X 's) (X (X session) (X (X traded) (X (X below) (X (X $) (X (X 100) (X (X a) (X (X share) (X (X for) (X (X the) (X (X first) (X (X time) (X (X since) (X (X June) (X (X 1984) (X .)))))))))))))))))))))))))) (X (X ibm) (X (X closed) (X (X at) (X (X $) (X (X 102) (X (X ,) (X (X down) (X (X $) (X (X 5.625) (X .)))))))))) (X (X other) (X (X new) (X (X lows) (X (X included) (X (X Navistar) (X (X International) (X (X Corp.) (X (X ,) (X (X Union) (X (X Carbide) (X (X Corp.) (X (X and) (X (X Bethlehem) (X (X Steel) (X (X Corp.) (X (X ,) (X (X all) (X (X of) (X (X which) (X (X are) (X (X included) (X (X in) (X (X the) (X (X industrial) (X (X average) (X .)))))))))))))))))))))))))) (X (X meanwhile) (X (X ,) (X (X two) (X (X initial) (X (X public) (X (X offerings) (X (X braved) (X (X the) (X (X cascading) (X (X market) (X (X in) (X (X their) (X (X maiden) (X (X day) (X (X of) (X (X national) (X (X over-the-counter) (X (X trading) (X (X Friday) (X .)))))))))))))))))))) (X (X shares) (X (X of) (X (X Rally) (X (X 's) (X (X Inc.) (X (X ,) (X (X an) (X (X operator) (X (X of) (X (X fast-food) (X (X restaurants) (X (X ,) (X (X closed) (X (X at) (X (X $) (X (X 17) (X (X each) (X (X ,) (X (X up) (X (X from) (X (X its) (X (X $) (X (X 15) (X (X offering) (X (X price) (X (X and) (X (X shares) (X (X of) (X (X Employee) (X (X Benefit) (X (X Plans) (X (X Inc.) (X (X ,) (X (X a) (X (X health-care) (X (X consultant) (X (X ,) (X (X closed) (X (X at) (X (X $) (X (X 14.125) (X (X ,) (X (X up) (X (X from) (X (X its) (X (X $) (X (X 12) (X (X offering) (X (X price) (X .)))))))))))))))))))))))))))))))))))))))))))))))))) (X (X ford) (X (X Motor) (X (X Co.) (X (X said) (X (X it) (X (X acquired) (X (X 5) (X (X %) (X (X of) (X (X the) (X (X shares) (X (X in) (X (X Jaguar) (X (X PLC) (X .))))))))))))))) (X (X jaguar) (X (X ,) (X (X the) (X (X London) (X (X Stock) (X (X Exchange) (X (X and) (X (X the) (X (X U.S.) (X (X Securities) (X (X and) (X (X Exchange) (X (X Commission) (X (X are) (X (X being) (X (X notified) (X (X of) (X (X the) (X (X transactions) (X (X ,) (X (X the) (X (X company) (X (X said) (X .)))))))))))))))))))))))) (X (X the) (X (X U.S.) (X (X Federal) (X (X Trade) (X (X Commission) (X (X advised) (X (X Ford) (X (X last) (X (X week) (X (X that) (X (X it) (X (X would) (X (X n't) (X (X raise) (X (X any) (X (X objection) (X (X to) (X (X the) (X (X acquisition) (X (X of) (X (X as) (X (X much) (X (X as) (X (X 15) (X (X %) (X (X of) (X (X Jaguar) (X (X shares) (X .))))))))))))))))))))))))))))) (X (X the) (X (X No.) (X (X 2) (X (X auto) (X (X maker) (X (X disclosed) (X (X last) (X (X month) (X (X that) (X (X it) (X (X wants) (X (X to) (X (X buy) (X (X as) (X (X much) (X (X as) (X (X 15) (X (X %) (X (X of) (X (X the) (X (X British) (X (X luxury-car) (X (X maker) (X (X ,) (X (X the) (X (X maximum) (X (X allowed) (X (X under) (X (X current) (X (X United) (X (X Kingdom) (X (X government) (X (X restrictions) (X .)))))))))))))))))))))))))))))))))) (X (X general) (X (X Motors) (X (X Corp.) (X (X said) (X (X it) (X (X had) (X (X discussed) (X (X the) (X (X possibility) (X (X of) (X (X a) (X (X joint) (X (X venture) (X (X with) (X (X Jaguar) (X (X before) (X (X Ford) (X (X began) (X (X buying) (X (X shares) (X .))))))))))))))))))))) (X (X gm) (X (X said) (X (X it) (X (X still) (X (X is) (X (X talking) (X (X with) (X (X Jaguar) (X (X about) (X (X acquiring) (X (X a) (X (X minority) (X (X interest) (X .)))))))))))))) (X (X investors) (X (X who) (X (X bought) (X (X stock) (X (X with) (X (X borrowed) (X (X money) (X (X --) (X (X that) (X (X is) (X (X ,) (X (X ``) (X (X on) (X (X margin) (X (X '') (X (X --) (X (X may) (X (X be) (X (X more) (X (X worried) (X (X than) (X (X most) (X (X following) (X (X Friday) (X (X 's) (X (X market) (X (X drop) (X .)))))))))))))))))))))))))))) (X (X that) (X (X 's) (X (X because) (X (X their) (X (X brokers) (X (X can) (X (X require) (X (X them) (X (X to) (X (X sell) (X (X some) (X (X shares) (X (X or) (X (X put) (X (X up) (X (X more) (X (X cash) (X (X to) (X (X enhance) (X (X the) (X (X collateral) (X (X backing) (X (X their) (X (X loans) (X .))))))))))))))))))))))))) (X (X in) (X (X October) (X (X 1987) (X (X ,) (X (X these) (X (X margin) (X (X calls) (X (X were) (X (X thought) (X (X to) (X (X have) (X (X contributed) (X (X to) (X (X the) (X (X downward) (X (X spiral) (X (X of) (X (X the) (X (X stock) (X (X market) (X .))))))))))))))))))))) (X (X typically) (X (X ,) (X (X a) (X (X margin) (X (X call) (X (X occurs) (X (X when) (X (X the) (X (X price) (X (X of) (X (X a) (X (X stock) (X (X falls) (X (X below) (X (X 75) (X (X %) (X (X of) (X (X its) (X (X original) (X (X value) (X .))))))))))))))))))))) (X (X if) (X (X the) (X (X investor) (X (X does) (X (X n't) (X (X put) (X (X up) (X (X the) (X (X extra) (X (X cash) (X (X to) (X (X satisfy) (X (X the) (X (X call) (X (X ,) (X (X the) (X (X brokerage) (X (X firm) (X (X may) (X (X begin) (X (X liquidating) (X (X the) (X (X securities) (X .)))))))))))))))))))))))) (X (X but) (X (X some) (X (X big) (X (X brokerage) (X (X firms) (X (X said) (X (X they) (X (X do) (X (X n't) (X (X expect) (X (X major) (X (X problems) (X (X as) (X (X a) (X (X result) (X (X of) (X (X margin) (X (X calls) (X .))))))))))))))))))) (X (X margin) (X (X calls) (X (X since) (X (X Friday) (X (X ``) (X (X have) (X (X been) (X (X higher) (X (X than) (X (X usual) (X (X ,) (X (X but) (X (X reasonable) (X (X ,) (X (X '') (X (X a) (X (X spokesman) (X (X for) (X (X Shearson) (X (X Lehman) (X (X Hutton) (X (X Inc.) (X (X said) (X .)))))))))))))))))))))))) (X (X merrill) (X (X Lynch) (X (X &) (X (X Co.) (X (X officials) (X (X ``) (X (X do) (X (X n't) (X (X expect) (X (X -LCB-) (X (X margin) (X (X calls) (X (X -RCB-) (X (X to) (X (X be) (X (X as) (X (X big) (X (X a) (X (X factor) (X (X as) (X (X in) (X (X 1987) (X (X '') (X (X because) (X (X fewer) (X (X individual) (X (X investors) (X (X are) (X (X buying) (X (X stock) (X (X on) (X (X margin) (X (X ,) (X (X a) (X (X spokesman) (X (X said) (X .))))))))))))))))))))))))))))))))))))) (X (X hugo) (X (X Quackenbush) (X (X ,) (X (X senior) (X (X vice) (X (X president) (X (X at) (X (X Charles) (X (X Schwab) (X (X Corp.) (X (X ,) (X (X the) (X (X San) (X (X Francisco-based) (X (X discount) (X (X brokerage) (X (X firm) (X (X ,) (X (X said) (X (X he) (X (X did) (X (X n't) (X (X expect) (X (X any) (X (X immediate) (X (X problems) (X (X with) (X (X margin) (X (X calls) (X (X for) (X (X Schwab) (X (X customers) (X .))))))))))))))))))))))))))))))))) (X (X he) (X (X said) (X (X Schwab) (X (X had) (X (X increased) (X (X margin) (X (X requirements) (X (X ``) (X (X so) (X (X customers) (X (X have) (X (X more) (X (X of) (X (X a) (X (X cushion) (X (X .) (X ''))))))))))))))))) (X (X he) (X (X added) (X (X :) (X (X ``) (X (X We) (X (X learned) (X (X a) (X (X lesson) (X (X in) (X (X 1987) (X (X about) (X (X volatility) (X .))))))))))))) (X (X avis) (X (X Inc.) (X (X ,) (X (X following) (X (X rival) (X (X Hertz) (X (X Corp.) (X (X 's) (X (X lead) (X (X ,) (X (X said) (X (X it) (X (X is) (X (X backing) (X (X out) (X (X of) (X (X frequent-flier) (X (X programs) (X (X with) (X (X three) (X (X airlines) (X .)))))))))))))))))))))) (X (X the) (X (X Garden) (X (X City) (X (X ,) (X (X N.Y.) (X (X ,) (X (X car-rental) (X (X company) (X (X said) (X (X it) (X (X wo) (X (X n't) (X (X renew) (X (X contracts) (X (X with) (X (X NWA) (X (X Inc.) (X (X 's) (X (X Northwest) (X (X Airlines) (X (X unit) (X (X ,) (X (X Pan) (X (X Am) (X (X Corp.) (X (X 's) (X (X Pan) (X (X American) (X (X World) (X (X Airways) (X (X unit) (X (X and) (X (X Midway) (X (X Airlines) (X (X at) (X (X the) (X (X end) (X (X of) (X (X this) (X (X year) (X .))))))))))))))))))))))))))))))))))))))))) (X (X but) (X (X it) (X (X remains) (X (X involved) (X (X in) (X (X programs) (X (X with) (X (X AMR) (X (X Corp.) (X (X 's) (X (X American) (X (X Airlines) (X (X unit) (X (X and) (X (X Delta) (X (X Air) (X (X Lines) (X .)))))))))))))))))) (X (X industry) (X (X estimates) (X (X put) (X (X Avis) (X (X 's) (X (X annual) (X (X cost) (X (X of) (X (X all) (X (X five) (X (X programs) (X (X at) (X (X between) (X (X $) (X (X 8) (X (X million) (X (X and) (X (X $) (X (X 14) (X (X million) (X .))))))))))))))))))))) (X (X a) (X (X spokesman) (X (X for) (X (X Avis) (X (X would) (X (X n't) (X (X specify) (X (X the) (X (X costs) (X (X but) (X (X said) (X (X the) (X (X three) (X (X airlines) (X (X being) (X (X dropped) (X (X account) (X (X for) (X (X ``) (X (X far) (X (X less) (X (X than) (X (X half) (X (X '') (X (X of) (X (X the) (X (X total) (X .)))))))))))))))))))))))))))) (X (X budget) (X (X Rent) (X (X a) (X (X Car) (X (X Corp.) (X (X ,) (X (X of) (X (X Chicago) (X (X ,) (X (X and) (X (X National) (X (X Car) (X (X Rental) (X (X Systems) (X (X Inc.) (X (X ,) (X (X of) (X (X Minneapolis) (X (X ,) (X (X both) (X (X said) (X (X they) (X (X had) (X (X no) (X (X plans) (X (X to) (X (X follow) (X (X suit) (X .))))))))))))))))))))))))))))) (X (X in) (X (X fact) (X (X ,) (X (X Budget) (X (X indicated) (X (X it) (X (X saw) (X (X some) (X (X benefit) (X (X to) (X (X staying) (X (X involved) (X (X in) (X (X these) (X (X programs) (X (X ,) (X (X in) (X (X which) (X (X renters) (X (X earn) (X (X frequent-flier) (X (X miles) (X (X and) (X (X fliers) (X (X can) (X (X get) (X (X car-rental) (X (X discounts) (X .))))))))))))))))))))))))))))) (X (X ``) (X (X I) (X (X can) (X (X not) (X (X see) (X (X how) (X (X this) (X (X news) (X (X by) (X (X Hertz) (X (X and) (X (X Avis) (X (X can) (X (X not) (X (X benefit) (X (X Budget) (X (X 's) (X (X programs) (X (X ,) (X (X '') (X (X said) (X (X Bob) (X (X Wilson) (X (X ,) (X (X Budget) (X (X 's) (X (X vice) (X (X president) (X (X ,) (X (X marketing) (X (X planning) (X .)))))))))))))))))))))))))))))))) (X (X northwest) (X (X and) (X (X Midway) (X (X are) (X (X two) (X (X of) (X (X the) (X (X five) (X (X airlines) (X (X with) (X (X which) (X (X Budget) (X (X has) (X (X agreements) (X .))))))))))))))) (X (X national) (X (X also) (X (X participates) (X (X in) (X (X the) (X (X Northwest) (X (X frequent-flier) (X (X program) (X (X along) (X (X with) (X (X four) (X (X other) (X (X airlines) (X (X ,) (X (X including) (X (X Delta) (X (X and) (X (X USAir) (X (X Group) (X (X Inc.) (X (X 's) (X (X USAir) (X (X unit) (X .)))))))))))))))))))))))) (X (X a) (X (X month) (X (X ago) (X (X ,) (X (X Hertz) (X (X ,) (X (X of) (X (X Park) (X (X Ridge) (X (X ,) (X (X N.J.) (X (X ,) (X (X said) (X (X that) (X (X it) (X (X would) (X (X drop) (X (X its) (X (X marketing) (X (X agreements) (X (X at) (X (X year) (X (X end) (X (X with) (X (X Delta) (X (X ,) (X (X America) (X (X West) (X (X and) (X (X Texas) (X (X Air) (X (X Corp.) (X (X 's) (X (X Continental) (X (X Airlines) (X (X and) (X (X Eastern) (X (X Airlines) (X (X ,) (X (X and) (X (X that) (X (X pacts) (X (X with) (X (X American) (X (X Airlines) (X (X ,) (X (X UAL) (X (X Inc) (X (X 's) (X (X United) (X (X Airlines) (X (X and) (X (X USAir) (X (X also) (X (X would) (X (X be) (X (X ended) (X (X ...) (X (X sometime) (X (X after) (X (X Dec.) (X (X 31) (X .))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X at) (X (X the) (X (X time) (X (X ,) (X (X Hertz) (X (X said) (X (X its) (X (X annual) (X (X fees) (X (X to) (X (X those) (X (X airlines) (X (X amounted) (X (X to) (X (X $) (X (X 20) (X (X million) (X (X and) (X (X that) (X (X the) (X (X value) (X (X of) (X (X redeemed) (X (X awards) (X (X topped) (X (X $) (X (X 15) (X (X million) (X .))))))))))))))))))))))))))))) (X (X analysts) (X (X and) (X (X competitors) (X (X ,) (X (X however) (X (X ,) (X (X doubt) (X (X the) (X (X numbers) (X (X were) (X (X that) (X (X high) (X .))))))))))))) (X (X budget) (X (X said) (X (X its) (X (X frequent-flier) (X (X costs) (X (X are) (X (X ``) (X (X substantially) (X (X below) (X (X '') (X (X Avis) (X (X 's) (X (X level) (X .)))))))))))))) (X (X robert) (X (X D.) (X (X Cardillo) (X (X ,) (X (X Avis) (X (X vice) (X (X president) (X (X of) (X (X marketing) (X (X ,) (X (X said) (X (X ,) (X (X ``) (X (X The) (X (X proliferation) (X (X and) (X (X costs) (X (X attached) (X (X to) (X (X -LCB-) (X (X frequent-flier) (X (X programs) (X (X -RCB-) (X (X have) (X (X significantly) (X (X diminished) (X (X their) (X (X value) (X (X .) (X '')))))))))))))))))))))))))))))) (X (X this) (X (X year) (X (X has) (X (X been) (X (X difficult) (X (X for) (X (X both) (X (X Hertz) (X (X and) (X (X Avis) (X (X ,) (X (X said) (X (X Charles) (X (X Finnie) (X (X ,) (X (X car-rental) (X (X industry) (X (X analyst) (X (X at) (X (X Alex) (X (X .) (X (X Brown) (X (X &) (X (X Sons) (X .))))))))))))))))))))))))) (X (X ``) (X (X They) (X (X 've) (X (X been) (X (X looking) (X (X to) (X (X get) (X (X their) (X (X costs) (X (X down) (X (X ,) (X (X and) (X (X this) (X (X is) (X (X a) (X (X fairly) (X (X sensible) (X (X way) (X (X to) (X (X do) (X (X it) (X (X ,) (X (X '') (X (X he) (X (X said) (X .)))))))))))))))))))))))))) (X (X cbs) (X (X Inc.) (X (X is) (X (X cutting) (X (X ``) (X (X The) (X (X Pat) (X (X Sajak) (X (X Show) (X (X '') (X (X down) (X (X to) (X (X one) (X (X hour) (X (X from) (X (X its) (X (X current) (X (X 90) (X (X minutes) (X .)))))))))))))))))))) (X (X cbs) (X (X insisted) (X (X the) (X (X move) (X (X was) (X (X n't) (X (X a) (X (X setback) (X (X for) (X (X the) (X (X program) (X (X ,) (X (X which) (X (X is) (X (X the) (X (X network) (X (X 's) (X (X first) (X (X entry) (X (X into) (X (X the) (X (X late-night) (X (X talk) (X (X show) (X (X format) (X (X since) (X (X 1972) (X .)))))))))))))))))))))))))))) (X (X ``) (X (X I) (X (X have) (X (X every) (X (X intention) (X (X of) (X (X making) (X (X this) (X (X the) (X (X best) (X (X possible) (X (X show) (X (X and) (X (X having) (X (X it) (X (X run) (X (X one) (X (X hour) (X (X is) (X (X the) (X (X best) (X (X way) (X (X to) (X (X it) (X (X ,) (X (X '') (X (X said) (X (X Rod) (X (X Perth) (X (X ,) (X (X who) (X (X was) (X (X named) (X (X vice) (X (X president) (X (X of) (X (X late) (X (X night) (X (X entertainment) (X (X in) (X (X August) (X .)))))))))))))))))))))))))))))))))))))))))) (X (X ``) (X (X This) (X (X will) (X (X raise) (X (X the) (X (X energy) (X (X level) (X (X of) (X (X the) (X (X show) (X (X .) (X '')))))))))))) (X (X cbs) (X (X will) (X (X continue) (X (X to) (X (X program) (X (X action-adventure) (X (X shows) (X (X to) (X (X follow) (X (X the) (X (X Sajak) (X (X hour) (X .))))))))))))) (X (X but) (X (X CBS) (X (X News) (X (X will) (X (X extend) (X (X its) (X (X four-hour) (X (X ``) (X (X Nightwatch) (X (X '') (X (X by) (X (X 30) (X (X minutes) (X (X and) (X (X begin) (X (X at) (X (X 1:30) (X (X a.m) (X .))))))))))))))))))) (X (X the) (X (X show) (X (X ,) (X (X despite) (X (X a) (X (X promising) (X (X start) (X (X ,) (X (X has) (X (X slipped) (X (X badly) (X (X in) (X (X the) (X (X weekly) (X (X ratings) (X (X as) (X (X compiled) (X (X by) (X (X A.C.) (X (X Nielsen) (X (X Co.) (X (X ,) (X (X finishing) (X (X far) (X (X below) (X (X ``) (X (X Tonight) (X (X '') (X (X on) (X (X NBC) (X (X ,) (X (X a) (X (X unit) (X (X of) (X (X General) (X (X Electric) (X (X Co.) (X (X ,) (X (X and) (X (X ``) (X (X Nightline) (X (X '') (X (X on) (X (X ABC-TV) (X (X ,) (X (X a) (X (X unit) (X (X of) (X (X Capital) (X (X Cities\/ABC) (X (X Inc) (X .)))))))))))))))))))))))))))))))))))))))))))))))))))) (X (X further) (X (X fractioning) (X (X the) (X (X late-night) (X (X audience) (X (X is) (X (X the) (X (X addition) (X (X of) (X (X the) (X (X ``) (X (X Arsenio) (X (X Hall) (X (X Show) (X (X ,) (X (X '') (X (X syndicated) (X (X by) (X (X Paramount) (X (X Communications) (X (X Inc) (X .)))))))))))))))))))))) (X (X tandem) (X (X Computers) (X (X Inc.) (X (X ,) (X (X preparing) (X (X to) (X (X fight) (X (X with) (X (X International) (X (X Business) (X (X Machines) (X (X Corp.) (X (X for) (X (X a) (X (X piece) (X (X of) (X (X the) (X (X mainframe) (X (X business) (X (X ,) (X (X said) (X (X it) (X (X expects) (X (X to) (X (X post) (X (X higher) (X (X revenue) (X (X and) (X (X earnings) (X (X for) (X (X its) (X (X fiscal) (X (X fourth) (X (X quarter) (X (X ended) (X (X Sept.) (X (X 30) (X .)))))))))))))))))))))))))))))))))))))) (X (X tandem) (X (X said) (X (X it) (X (X expects) (X (X to) (X (X report) (X (X revenue) (X (X of) (X (X about) (X (X $) (X (X 450) (X (X million) (X (X and) (X (X earnings) (X (X of) (X (X 35) (X (X cents) (X (X to) (X (X 40) (X (X cents) (X (X a) (X (X share) (X .))))))))))))))))))))))) (X (X the) (X (X results) (X (X ,) (X (X which) (X (X are) (X (X in) (X (X line) (X (X with) (X (X analysts) (X (X ') (X (X estimates) (X (X ,) (X (X reflect) (X (X ``) (X (X a) (X (X continued) (X (X improvement) (X (X in) (X (X our) (X (X U.S.) (X (X business) (X (X ,) (X (X '') (X (X said) (X (X James) (X (X Treybig) (X (X ,) (X (X Tandem) (X (X 's) (X (X chief) (X (X executive) (X (X officer) (X .))))))))))))))))))))))))))))))))) (X (X in) (X (X the) (X (X year-earlier) (X (X period) (X (X ,) (X (X Tandem) (X (X reported) (X (X net) (X (X income) (X (X of) (X (X $) (X (X 30.1) (X (X million) (X (X ,) (X (X or) (X (X 31) (X (X cents) (X (X a) (X (X share) (X (X ,) (X (X on) (X (X revenue) (X (X of) (X (X $) (X (X 383.9) (X (X million) (X .))))))))))))))))))))))))))) (X (X tandem) (X (X expects) (X (X to) (X (X report) (X (X the) (X (X full) (X (X results) (X (X for) (X (X the) (X (X quarter) (X (X next) (X (X week) (X .))))))))))))) (X (X analysts) (X (X have) (X (X predicted) (X (X that) (X (X the) (X (X Cupertino) (X (X ,) (X (X Calif.) (X (X ,) (X (X company) (X (X will) (X (X report) (X (X revenue) (X (X of) (X (X $) (X (X 430) (X (X million) (X (X to) (X (X $) (X (X 460) (X (X million) (X (X and) (X (X earnings) (X (X of) (X (X 35) (X (X cents) (X (X to) (X (X 40) (X (X cents) (X (X a) (X (X share) (X .)))))))))))))))))))))))))))))))) (X (X commenting) (X (X on) (X (X the) (X (X results) (X (X for) (X (X the) (X (X quarter) (X (X ,) (X (X Mr.) (X (X Treybig) (X (X said) (X (X the) (X (X strength) (X (X of) (X (X the) (X (X company) (X (X 's) (X (X domestic) (X (X business) (X (X came) (X (X as) (X (X ``) (X (X a) (X (X surprise) (X (X '') (X (X to) (X (X him) (X (X ,) (X (X noting) (X (X that) (X (X sales) (X (X ``) (X (X in) (X (X every) (X (X region) (X (X of) (X (X the) (X (X U.S.) (X (X exceeded) (X (X our) (X (X plan) (X (X .) (X ''))))))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X company) (X (X 's) (X (X U.S.) (X (X performance) (X (X was) (X (X helped) (X (X by) (X (X ``) (X (X a) (X (X record) (X (X quarter) (X (X for) (X (X new) (X (X customers) (X (X ,) (X (X '') (X (X he) (X (X said) (X .)))))))))))))))))))) (X (X tandem) (X (X makes) (X (X ``) (X (X fault-tolerant) (X (X '') (X (X computers) (X (X --) (X (X machines) (X (X with) (X (X built-in) (X (X backup) (X (X systems) (X (X --) (X (X that) (X (X run) (X (X stock) (X (X exchanges) (X (X ,) (X (X networks) (X (X of) (X (X automatic) (X (X tellers) (X (X and) (X (X other) (X (X complex) (X (X computer) (X (X systems) (X .)))))))))))))))))))))))))))) (X (X tomorrow) (X (X the) (X (X company) (X (X is) (X (X scheduled) (X (X to) (X (X announce) (X (X its) (X (X most) (X (X powerful) (X (X computer) (X (X ever) (X (X ,) (X (X which) (X (X for) (X (X the) (X (X first) (X (X time) (X (X will) (X (X bring) (X (X it) (X (X into) (X (X direct) (X (X competition) (X (X with) (X (X makers) (X (X of) (X (X mainframe) (X (X computers) (X .)))))))))))))))))))))))))))))) (X (X tandem) (X (X 's) (X (X new) (X (X high-end) (X (X computer) (X (X is) (X (X called) (X (X Cyclone) (X .))))))))) (X (X prices) (X (X for) (X (X the) (X (X machine) (X (X ,) (X (X which) (X (X can) (X (X come) (X (X in) (X (X various) (X (X configurations) (X (X ,) (X (X are) (X (X $) (X (X 2) (X (X million) (X (X to) (X (X $) (X (X 10) (X (X million) (X .))))))))))))))))))))) (X (X analysts) (X (X expect) (X (X the) (X (X new) (X (X computer) (X (X to) (X (X wrest) (X (X a) (X (X hefty) (X (X slice) (X (X of) (X (X business) (X (X away) (X (X from) (X (X IBM) (X (X ,) (X (X the) (X (X longtime) (X (X leader) (X (X in) (X (X mainframes) (X .)))))))))))))))))))))) (X (X ``) (X (X We) (X (X believe) (X (X they) (X (X could) (X (X siphon) (X (X perhaps) (X (X two) (X (X to) (X (X three) (X (X billion) (X (X dollars) (X (X from) (X (X IBM) (X (X '') (X (X over) (X (X the) (X (X next) (X (X few) (X (X years) (X (X ,) (X (X said) (X (X George) (X (X Weiss) (X (X ,) (X (X an) (X (X analyst) (X (X at) (X (X the) (X (X Gartner) (X (X group) (X .)))))))))))))))))))))))))))))))) (X (X that) (X (X will) (X (X spur) (X (X Tandem) (X (X 's) (X (X growth) (X .))))))) (X (X ``) (X (X I) (X (X 'd) (X (X be) (X (X disappointed) (X (X if) (X (X the) (X (X company) (X (X grew) (X (X by) (X (X less) (X (X than) (X (X 20) (X (X %) (X (X next) (X (X year) (X (X ,) (X (X '') (X (X said) (X (X John) (X (X Levinson) (X (X ,) (X (X an) (X (X analyst) (X (X at) (X (X Goldman) (X (X ,) (X (X Sachs) (X (X &) (X (X Co) (X .))))))))))))))))))))))))))))))) (X (X ibm) (X (X is) (X (X expected) (X (X to) (X (X respond) (X (X to) (X (X Tandem) (X (X 's) (X (X Cyclone) (X (X by) (X (X discounting) (X (X its) (X (X own) (X (X mainframes) (X (X ,) (X (X which) (X (X analysts) (X (X say) (X (X are) (X (X roughly) (X (X three) (X (X times) (X (X the) (X (X price) (X (X of) (X (X a) (X (X comparable) (X (X system) (X (X from) (X (X Tandem) (X .))))))))))))))))))))))))))))))) (X (X ``) (X (X Obviously) (X (X IBM) (X (X can) (X (X give) (X (X bigger) (X (X discounts) (X (X to) (X (X users) (X (X immediately) (X (X ,) (X (X '') (X (X said) (X (X Mr.) (X (X Weiss) (X .)))))))))))))))) (X (X but) (X (X Mr.) (X (X Treybig) (X (X questions) (X (X whether) (X (X that) (X (X will) (X (X be) (X (X enough) (X (X to) (X (X stop) (X (X Tandem) (X (X 's) (X (X first) (X (X mainframe) (X (X from) (X (X taking) (X (X on) (X (X some) (X (X of) (X (X the) (X (X functions) (X (X that) (X (X large) (X (X organizations) (X (X previously) (X (X sought) (X (X from) (X (X Big) (X (X Blue) (X (X 's) (X (X machines) (X .))))))))))))))))))))))))))))))))) (X (X ``) (X (X The) (X (X answer) (X (X is) (X (X n't) (X (X price) (X (X reductions) (X (X ,) (X (X but) (X (X new) (X (X systems) (X (X ,) (X (X '') (X (X he) (X (X said) (X .)))))))))))))))) (X (X nevertheless) (X (X ,) (X (X Tandem) (X (X faces) (X (X a) (X (X variety) (X (X of) (X (X challenges) (X (X ,) (X (X the) (X (X biggest) (X (X being) (X (X that) (X (X customers) (X (X generally) (X (X view) (X (X the) (X (X company) (X (X 's) (X (X computers) (X (X as) (X (X complementary) (X (X to) (X (X IBM) (X (X 's) (X (X mainframes) (X .))))))))))))))))))))))))))) (X (X even) (X (X Mr.) (X (X Treybig) (X (X is) (X (X reluctant) (X (X to) (X (X abandon) (X (X this) (X (X notion) (X (X ,) (X (X insisting) (X (X that) (X (X Tandem) (X (X 's) (X (X new) (X (X machines) (X (X are) (X (X n't) (X (X replacements) (X (X for) (X (X IBM) (X (X 's) (X (X mainframes) (X .)))))))))))))))))))))))) (X (X ``) (X (X We) (X (X 're) (X (X after) (X (X a) (X (X little) (X (X bigger) (X (X niche) (X (X ,) (X (X '') (X (X he) (X (X said) (X .))))))))))))) (X (X do) (X (X n't) (X (X jump) (X (X yet) (X .))))) (X (X the) (X (X stock) (X (X market) (X (X 's) (X (X swoon) (X (X may) (X (X turn) (X (X out) (X (X to) (X (X be) (X (X good) (X (X news) (X (X for) (X (X the) (X (X economy) (X .)))))))))))))))) (X (X in) (X (X one) (X (X wild) (X (X hour) (X (X of) (X (X trading) (X (X ,) (X (X the) (X (X market) (X (X managed) (X (X to) (X (X accomplish) (X (X what) (X (X the) (X (X Bush) (X (X administration) (X (X has) (X (X been) (X (X trying) (X (X to) (X (X do) (X (X ,) (X (X unsuccessfully) (X (X ,) (X (X for) (X (X weeks) (X .))))))))))))))))))))))))))) (X (X it) (X (X is) (X (X forcing) (X (X the) (X (X Federal) (X (X Reserve) (X (X to) (X (X ease) (X (X its) (X (X grip) (X (X on) (X (X credit) (X (X and) (X (X it) (X (X took) (X (X the) (X (X wind) (X (X out) (X (X of) (X (X a) (X (X previously) (X (X irrepressible) (X (X dollar) (X .)))))))))))))))))))))))) (X (X the) (X (X resulting) (X (X decline) (X (X in) (X (X interest) (X (X rates) (X (X and) (X (X the) (X (X value) (X (X of) (X (X the) (X (X dollar) (X (X could) (X (X reinvigorate) (X (X American) (X (X business) (X (X --) (X (X indeed) (X (X ,) (X (X the) (X (X entire) (X (X economy) (X .))))))))))))))))))))))) (X (X this) (X (X may) (X (X sound) (X (X strangely) (X (X optimistic) (X .)))))) (X (X after) (X (X all) (X (X ,) (X (X until) (X (X a) (X (X few) (X (X years) (X (X ago) (X (X ,) (X (X the) (X (X stock) (X (X market) (X (X was) (X (X viewed) (X (X as) (X (X a) (X (X barometer) (X (X of) (X (X the) (X (X national) (X (X economy) (X .)))))))))))))))))))))) (X (X when) (X (X it) (X (X went) (X (X down) (X (X ,) (X (X by) (X (X all) (X (X tradition) (X (X ,) (X (X the) (X (X economy) (X (X followed) (X .))))))))))))) (X (X that) (X (X has) (X (X changed) (X (X ,) (X (X partly) (X (X because) (X (X the) (X (X two) (X (X years) (X (X following) (X (X the) (X (X worst) (X (X stock-market) (X (X plunge) (X (X in) (X (X history) (X (X have) (X (X been) (X (X reasonably) (X (X comfortable) (X .))))))))))))))))))))) (X (X the) (X (X 1987) (X (X crash) (X (X was) (X (X ``) (X (X a) (X (X false) (X (X alarm) (X (X however) (X (X you) (X (X view) (X (X it) (X (X ,) (X (X '') (X (X says) (X (X University) (X (X of) (X (X Chicago) (X (X economist) (X (X Victor) (X (X Zarnowitz) (X .)))))))))))))))))))))) (X (X the) (X (X market) (X (X seems) (X (X increasingly) (X (X disconnected) (X (X from) (X (X the) (X (X rest) (X (X of) (X (X the) (X (X nation) (X .)))))))))))) (X (X its) (X (X spasms) (X (X ca) (X (X n't) (X (X be) (X (X traced) (X (X to) (X (X fundamental) (X (X business) (X (X conditions) (X (X ,) (X (X nor) (X (X do) (X (X they) (X (X appear) (X (X to) (X (X presage) (X (X major) (X (X shifts) (X (X in) (X (X the) (X (X economy) (X .))))))))))))))))))))))) (X (X ``) (X (X The) (X (X market) (X (X today) (X (X has) (X (X a) (X (X life) (X (X of) (X (X its) (X (X own) (X (X ,) (X (X '') (X (X John) (X (X Akers) (X (X ,) (X (X chairman) (X (X of) (X (X International) (X (X Business) (X (X Machines) (X (X Corp.) (X (X ,) (X (X said) (X (X Saturday) (X .))))))))))))))))))))))))) (X (X ``) (X (X There) (X (X 's) (X (X nothing) (X (X rational) (X (X about) (X (X this) (X (X kind) (X (X of) (X (X action) (X (X .) (X '')))))))))))) (X (X of) (X (X course) (X (X ,) (X (X the) (X (X health) (X (X of) (X (X the) (X (X economy) (X (X will) (X (X be) (X (X threatened) (X (X if) (X (X the) (X (X market) (X (X continues) (X (X to) (X (X dive) (X (X this) (X (X week) (X .)))))))))))))))))))) (X (X sharply) (X (X falling) (X (X stock) (X (X prices) (X (X do) (X (X reduce) (X (X consumer) (X (X wealth) (X (X ,) (X (X damage) (X (X business) (X (X confidence) (X (X and) (X (X discourage) (X (X the) (X (X foreign) (X (X investors) (X (X upon) (X (X whom) (X (X the) (X (X U.S.) (X (X now) (X (X relies) (X (X for) (X (X financial) (X (X sustenance) (X .))))))))))))))))))))))))))) (X (X the) (X (X financial-services) (X (X industry) (X (X was) (X (X battered) (X (X by) (X (X the) (X (X 1987) (X (X crash) (X .)))))))))) (X (X what) (X (X 's) (X (X more) (X (X ,) (X (X although) (X (X the) (X (X stock) (X (X market) (X (X is) (X (X far) (X (X less) (X (X overvalued) (X (X today) (X (X than) (X (X two) (X (X years) (X (X ago) (X (X ,) (X (X the) (X (X U.S.) (X (X economy) (X (X is) (X (X weaker) (X .)))))))))))))))))))))))) (X (X growth) (X (X is) (X (X slower) (X .)))) (X (X profits) (X (X are) (X (X softer) (X .)))) (X (X debt) (X (X burdens) (X (X are) (X (X heavier) (X .))))) (X (X but) (X (X if) (X (X the) (X (X stock) (X (X market) (X (X does) (X (X n't) (X (X continue) (X (X to) (X (X plummet) (X (X ,) (X (X the) (X (X beneficial) (X (X effects) (X (X of) (X (X lower) (X (X interest) (X (X rates) (X (X and) (X (X a) (X (X lower) (X (X dollar) (X (X may) (X (X well) (X (X dominate) (X .)))))))))))))))))))))))))) (X (X the) (X (X Fed) (X (X ,) (X (X which) (X (X until) (X (X Friday) (X (X had) (X (X been) (X (X resisting) (X (X moves) (X (X to) (X (X ease) (X (X credit) (X (X ,) (X (X is) (X (X now) (X (X poised) (X (X to) (X (X pour) (X (X money) (X (X into) (X (X the) (X (X economy) (X (X if) (X (X needed) (X (X to) (X (X soothe) (X (X the) (X (X markets) (X .)))))))))))))))))))))))))))))) (X (X fed) (X (X officials) (X (X may) (X (X protest) (X (X that) (X (X this) (X (X does) (X (X n't) (X (X necessarily) (X (X mean) (X (X a) (X (X fundamental) (X (X change) (X (X in) (X (X their) (X (X interest-rate) (X (X policies) (X .)))))))))))))))))) (X (X but) (X (X the) (X (X experience) (X (X of) (X (X the) (X (X 1987) (X (X crash) (X (X suggests) (X (X the) (X (X Fed) (X (X is) (X (X likely) (X (X to) (X (X bring) (X (X down) (X (X short-term) (X (X interest) (X (X rates) (X (X in) (X (X its) (X (X effort) (X (X to) (X (X calm) (X (X markets) (X .))))))))))))))))))))))))) (X (X anticipating) (X (X the) (X (X Fed) (X (X 's) (X (X move) (X (X ,) (X (X money) (X (X traders) (X (X lowered) (X (X a) (X (X key) (X (X interest) (X (X rate) (X (X known) (X (X as) (X (X the) (X (X Federal) (X (X Funds) (X (X rate) (X (X to) (X (X 8.625) (X (X %) (X (X late) (X (X Friday) (X (X ,) (X (X down) (X (X from) (X (X 8.820) (X (X %) (X (X the) (X (X day) (X (X before) (X .))))))))))))))))))))))))))))))))) (X (X tiny) (X (X movements) (X (X in) (X (X the) (X (X rate) (X (X ,) (X (X which) (X (X is) (X (X what) (X (X banks) (X (X charge) (X (X each) (X (X other) (X (X for) (X (X overnight) (X (X loans) (X (X ,) (X (X are) (X (X usually) (X (X among) (X (X the) (X (X few) (X (X visible) (X (X tracks) (X (X that) (X (X the) (X (X Fed) (X (X leaves) (X (X on) (X (X the) (X (X monetary) (X (X markets) (X .))))))))))))))))))))))))))))))))) (X (X the) (X (X dollar) (X (X also) (X (X began) (X (X to) (X (X decline) (X (X Friday) (X (X as) (X (X the) (X (X stock) (X (X market) (X (X 's) (X (X plunge) (X (X caused) (X (X some) (X (X investors) (X (X to) (X (X reassess) (X (X their) (X (X desire) (X (X to) (X (X invest) (X (X in) (X (X the) (X (X U.S.) (X .)))))))))))))))))))))))))) (X (X treasury) (X (X officials) (X (X have) (X (X been) (X (X arguing) (X (X for) (X (X months) (X (X that) (X (X the) (X (X dollar) (X (X 's) (X (X strength) (X (X was) (X (X out) (X (X of) (X (X whack) (X (X with) (X (X economic) (X (X fundamentals) (X (X ,) (X (X threatening) (X (X to) (X (X extinguish) (X (X the) (X (X export) (X (X boom) (X (X that) (X (X has) (X (X sustained) (X (X manufacturers) (X (X for) (X (X several) (X (X years) (X .)))))))))))))))))))))))))))))))))) (X (X the) (X (X market) (X (X drop) (X (X has) (X (X now) (X (X apparently) (X (X convinced) (X (X foreign) (X (X investors) (X (X that) (X (X the) (X (X Treasury) (X (X was) (X (X right) (X (X about) (X (X the) (X (X overpriced) (X (X dollar) (X .))))))))))))))))))) (X (X a) (X (X modest) (X (X drop) (X (X in) (X (X the) (X (X dollar) (X (X --) (X (X only) (X (X a) (X (X modest) (X (X one) (X (X ,) (X (X mind) (X (X you) (X (X --) (X (X would) (X (X be) (X (X welcomed) (X (X by) (X (X the) (X (X U.S.) (X .)))))))))))))))))))))) (X (X that) (X (X was) (X (X n't) (X (X the) (X (X case) (X (X in) (X (X 1987) (X (X ,) (X (X when) (X (X the) (X (X dollar) (X (X was) (X (X so) (X (X weak) (X (X that) (X (X some) (X (X economists) (X (X and) (X (X government) (X (X officials) (X (X seriously) (X (X worried) (X (X that) (X (X it) (X (X might) (X (X collapse) (X (X ,) (X (X producing) (X (X panic) (X (X among) (X (X foreign) (X (X investors) (X (X and) (X (X diminishing) (X (X the) (X (X flow) (X (X of) (X (X foreign) (X (X capital) (X (X to) (X (X the) (X (X U.S.) (X .))))))))))))))))))))))))))))))))))))))))))) (X (X another) (X (X big) (X (X difference) (X (X between) (X (X 1987) (X (X and) (X (X 1989) (X (X is) (X (X n't) (X (X so) (X (X comforting) (X .)))))))))))) (X (X in) (X (X the) (X (X third) (X (X quarter) (X (X of) (X (X 1987) (X (X ,) (X (X the) (X (X economy) (X (X spurted) (X (X at) (X (X an) (X (X inflation-adjusted) (X (X annual) (X (X rate) (X (X of) (X (X 5.3) (X (X %) (X .))))))))))))))))))) (X (X the) (X (X consensus) (X (X among) (X (X economists) (X (X is) (X (X that) (X (X it) (X (X grew) (X (X a) (X (X much) (X (X more) (X (X sluggish) (X (X 2.3) (X (X %) (X (X in) (X (X the) (X (X third) (X (X quarter) (X (X of) (X (X 1989) (X (X ,) (X (X which) (X (X ended) (X (X two) (X (X weeks) (X (X ago) (X .))))))))))))))))))))))))))) (X (X the) (X (X plunge) (X (X in) (X (X stock) (X (X prices) (X (X ``) (X (X is) (X (X happening) (X (X at) (X (X a) (X (X time) (X (X when) (X (X the) (X (X economy) (X (X has) (X (X already) (X (X slowed) (X (X down) (X (X ,) (X (X '') (X (X says) (X (X economist) (X (X Lawrence) (X (X Chimerine) (X (X of) (X (X WEFA) (X (X Group) (X (X ,) (X (X a) (X (X Bala) (X (X Cynwyd) (X (X ,) (X (X Pa.) (X (X ,) (X (X forecasting) (X (X company) (X .))))))))))))))))))))))))))))))))))))) (X (X ``) (X (X A) (X (X lot) (X (X of) (X (X pent-up) (X (X demand) (X (X is) (X (X gone) (X (X .) (X '')))))))))) (X (X consumer) (X (X spending) (X (X did) (X (X drop) (X (X in) (X (X the) (X (X months) (X (X following) (X (X Black) (X (X Monday) (X (X 1987) (X (X --) (X (X ``) (X (X but) (X (X only) (X (X slightly) (X (X and) (X (X for) (X (X a) (X (X short) (X (X period) (X (X of) (X (X time) (X (X ,) (X (X '') (X (X recalls) (X (X Mr.) (X (X Zarnowitz) (X (X ,) (X (X a) (X (X longtime) (X (X student) (X (X of) (X (X business) (X (X cycles) (X .)))))))))))))))))))))))))))))))))))) (X (X ``) (X (X That) (X (X was) (X (X offset) (X (X by) (X (X strength) (X (X elsewhere) (X .)))))))) (X (X -lcb-) (X (X The) (X (X effects) (X (X -RCB-) (X (X were) (X (X much) (X (X less) (X (X severe) (X (X and) (X (X less) (X (X prolonged) (X (X than) (X (X some) (X (X had) (X (X feared) (X (X or) (X (X expected) (X .)))))))))))))))))) (X (X '') (X (X Today) (X (X ,) (X (X he) (X (X frets) (X (X ,) (X (X exports) (X (X and) (X (X business) (X (X investment) (X (X spending) (X (X may) (X (X be) (X (X insufficient) (X (X to) (X (X pick) (X (X up) (X (X the) (X (X slack) (X (X if) (X (X stock) (X (X prices) (X (X sink) (X (X this) (X (X week) (X (X and) (X (X if) (X (X consumers) (X (X retrench) (X (X in) (X (X reaction) (X .)))))))))))))))))))))))))))))))) (X (X what) (X (X 's) (X (X more) (X (X ,) (X (X the) (X (X corporate) (X (X borrowing) (X (X binge) (X (X has) (X (X n't) (X (X abated) (X (X in) (X (X the) (X (X past) (X (X two) (X (X years) (X .))))))))))))))))) (X (X ``) (X (X We) (X (X 've) (X (X had) (X (X two) (X (X more) (X (X years) (X (X of) (X (X significant) (X (X accumulation) (X (X of) (X (X debt) (X (X ...) (X (X just) (X (X at) (X (X the) (X (X time) (X (X when) (X (X earnings) (X (X are) (X (X being) (X (X squeezed) (X (X ,) (X (X '') (X (X Mr.) (X (X Chimerine) (X (X notes) (X .)))))))))))))))))))))))))))) (X (X the) (X (X more) (X (X a) (X (X company) (X (X relies) (X (X on) (X (X borrowed) (X (X money) (X (X ,) (X (X the) (X (X greater) (X (X its) (X (X sensitivity) (X (X to) (X (X an) (X (X economic) (X (X slowdown) (X .)))))))))))))))))) (X (X a) (X (X company) (X (X with) (X (X a) (X (X strong) (X (X balance) (X (X sheet) (X (X can) (X (X withstand) (X (X an) (X (X unanticipated) (X (X storm) (X (X ;) (X (X a) (X (X highly) (X (X leveraged) (X (X company) (X (X may) (X (X end) (X (X up) (X (X in) (X (X bankruptcy) (X (X court) (X .)))))))))))))))))))))))) (X (X the) (X (X Fed) (X (X ,) (X (X of) (X (X course) (X (X ,) (X (X knows) (X (X that) (X (X very) (X (X well) (X (X --) (X (X hence) (X (X its) (X (X readiness) (X (X to) (X (X pump) (X (X credit) (X (X into) (X (X the) (X (X economy) (X (X this) (X (X morning) (X .))))))))))))))))))))))) (X (X but) (X (X ,) (X (X in) (X (X the) (X (X process) (X (X ,) (X (X the) (X (X Fed) (X (X risks) (X (X reigniting) (X (X inflation) (X .)))))))))))) (X (X even) (X (X before) (X (X Friday) (X (X 's) (X (X events) (X (X ,) (X (X Harvard) (X (X University) (X (X economist) (X (X Benjamin) (X (X Friedman) (X (X was) (X (X arguing) (X (X that) (X (X the) (X (X Fed) (X (X wo) (X (X n't) (X (X be) (X (X able) (X (X to) (X (X live) (X (X up) (X (X to) (X (X its) (X (X tough) (X (X words) (X (X on) (X (X eliminating) (X (X inflation) (X (X because) (X (X of) (X (X its) (X (X responsibility) (X (X to) (X (X protect) (X (X fragile) (X (X financial) (X (X markets) (X (X ,) (X (X banks) (X (X and) (X (X highly) (X (X leveraged) (X (X corporations) (X .)))))))))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X biggest) (X (X threat) (X (X on) (X (X the) (X (X economic) (X (X horizon) (X (X right) (X (X now) (X (X is) (X (X n't) (X (X recession) (X (X ,) (X (X he) (X (X reasons) (X (X ;) (X (X it) (X (X 's) (X (X an) (X (X outbreak) (X (X of) (X (X uncontrolled) (X (X inflation) (X .)))))))))))))))))))))))) (X (X in) (X (X the) (X (X end) (X (X ,) (X (X the) (X (X 1987) (X (X collapse) (X (X suggested) (X (X ,) (X (X the) (X (X economy) (X (X does) (X (X n't) (X (X move) (X (X in) (X (X lockstep) (X (X with) (X (X stock) (X (X prices) (X .)))))))))))))))))))) (X (X the) (X (X economy) (X (X does) (X (X ,) (X (X however) (X (X ,) (X (X depend) (X (X on) (X (X the) (X (X confidence) (X (X of) (X (X businesses) (X (X ,) (X (X consumers) (X (X and) (X (X foreign) (X (X investors) (X .)))))))))))))))))) (X (X a) (X (X panic) (X (X on) (X (X Wall) (X (X Street) (X (X does) (X (X n't) (X (X exactly) (X (X inspire) (X (X confidence) (X .))))))))))) (X (X surveys) (X (X suggested) (X (X that) (X (X consumer) (X (X confidence) (X (X was) (X (X high) (X (X before) (X (X Friday) (X .)))))))))) (X (X a) (X (X 190-point) (X (X drop) (X (X is) (X (X n't) (X (X likely) (X (X to) (X (X make) (X (X much) (X (X of) (X (X a) (X (X dent) (X (X ;) (X (X multiply) (X (X that) (X (X a) (X (X few) (X (X times) (X (X over) (X (X ,) (X (X though) (X (X ,) (X (X and) (X (X it) (X (X will) (X .)))))))))))))))))))))))))) (X (X if) (X (X the) (X (X reactions) (X (X of) (X (X executives) (X (X gathered) (X (X Saturday) (X (X at) (X (X Hot) (X (X Springs) (X (X ,) (X (X Va.) (X (X ,) (X (X for) (X (X the) (X (X Business) (X (X Council) (X (X meetings) (X (X are) (X (X typical) (X (X ,) (X (X business) (X (X leaders) (X (X were) (X (X n't) (X (X overly) (X (X rattled) (X (X by) (X (X Friday) (X (X 's) (X (X decline) (X .)))))))))))))))))))))))))))))))) (X (X and) (X (X if) (X (X foreign) (X (X investors) (X (X become) (X (X a) (X (X tad) (X (X more) (X (X cautious) (X (X --) (X (X well) (X (X ,) (X (X the) (X (X dollar) (X (X 's) (X (X recent) (X (X strength) (X (X suggests) (X (X that) (X (X the) (X (X U.S.) (X (X can) (X (X stand) (X (X it) (X .))))))))))))))))))))))))) (X (X on) (X (X the) (X (X bottom) (X (X line) (X (X ,) (X (X the) (X (X most) (X (X comforting) (X (X fact) (X (X for) (X (X the) (X (X economic) (X (X outlook) (X (X is) (X (X that) (X (X we) (X (X 've) (X (X been) (X (X through) (X (X this) (X (X before) (X .)))))))))))))))))))))) (X (X two) (X (X years) (X (X ago) (X (X ,) (X (X about) (X (X the) (X (X only) (X (X point) (X (X of) (X (X comparison) (X (X was) (X (X the) (X (X 1929) (X (X crash) (X (X and) (X (X the) (X (X subsequent) (X (X Depression) (X .))))))))))))))))))) (X (X the) (X (X doomsayers) (X (X had) (X (X a) (X (X receptive) (X (X audience) (X .))))))) (X (X the) (X (X prosperity) (X (X that) (X (X followed) (X (X Black) (X (X Monday) (X (X permits) (X (X a) (X (X more) (X (X optimistic) (X (X view) (X (X today) (X .))))))))))))) (X (X at) (X (X the) (X (X very) (X (X least) (X (X ,) (X (X the) (X (X establishment) (X (X here) (X (X is) (X (X taking) (X (X comfort) (X (X from) (X (X the) (X (X nation) (X (X 's) (X (X success) (X (X in) (X (X handling) (X (X the) (X (X last) (X (X go-around) (X .)))))))))))))))))))))) (X (X as) (X (X Sen.) (X (X Lloyd) (X (X Bentsen) (X (X -LRB-) (X (X D.) (X (X ,) (X (X Texas) (X (X -RRB-) (X (X observed) (X (X yesterday) (X (X ,) (X (X ``) (X (X The) (X (X Fed) (X (X avoided) (X (X a) (X (X meltdown) (X (X last) (X (X time) (X .))))))))))))))))))))) (X (X they) (X (X are) (X (X more) (X (X sophisticated) (X (X this) (X (X time) (X .))))))) (X (X the) (X (X chemical) (X (X industry) (X (X is) (X (X expected) (X (X to) (X (X report) (X (X that) (X (X profits) (X (X eroded) (X (X in) (X (X the) (X (X third) (X (X quarter) (X (X because) (X (X of) (X (X skidding) (X (X prices) (X (X in) (X (X the) (X (X commodity) (X (X end) (X (X of) (X (X the) (X (X business) (X .)))))))))))))))))))))))))) (X (X producers) (X (X of) (X (X commodity) (X (X chemicals) (X (X ,) (X (X the) (X (X basic) (X (X chemicals) (X (X produced) (X (X in) (X (X huge) (X (X volumes) (X (X for) (X (X other) (X (X manufacturers) (X (X ,) (X (X have) (X (X seen) (X (X sharp) (X (X inventory) (X (X cutting) (X (X by) (X (X buyers) (X .)))))))))))))))))))))))) (X (X once) (X (X the) (X (X chief) (X (X beneficiaries) (X (X of) (X (X the) (X (X industry) (X (X 's) (X (X now) (X (X fading) (X (X boom) (X (X ,) (X (X these) (X (X producers) (X (X also) (X (X will) (X (X be) (X (X reporting) (X (X against) (X (X exceptionally) (X (X strong) (X (X performances) (X (X in) (X (X the) (X (X 1988) (X (X third) (X (X quarter) (X .)))))))))))))))))))))))))))) (X (X ``) (X (X For) (X (X some) (X (X of) (X (X these) (X (X companies) (X (X ,) (X (X this) (X (X will) (X (X be) (X (X the) (X (X first) (X (X quarter) (X (X with) (X (X year-to-year) (X (X negative) (X (X comparisons) (X (X ,) (X (X '') (X (X says) (X (X Leonard) (X (X Bogner) (X (X ,) (X (X a) (X (X chemical) (X (X industry) (X (X analyst) (X (X at) (X (X Prudential) (X (X Bache) (X (X Research) (X .)))))))))))))))))))))))))))))))) (X (X ``) (X (X This) (X (X could) (X (X be) (X (X the) (X (X first) (X (X of) (X (X five) (X (X or) (X (X six) (X (X down) (X (X quarters) (X (X .) (X '')))))))))))))) (X (X perhaps) (X (X most) (X (X prominent) (X (X ,) (X (X Dow) (X (X Chemical) (X (X Co.) (X (X ,) (X (X which) (X (X as) (X (X of) (X (X midyear) (X (X had) (X (X racked) (X (X up) (X (X eight) (X (X consecutive) (X (X record) (X (X quarters) (X (X ,) (X (X is) (X (X expected) (X (X to) (X (X report) (X (X that) (X (X profit) (X (X decreased) (X (X in) (X (X the) (X (X latest) (X (X quarter) (X (X from) (X (X a) (X (X year) (X (X earlier) (X (X ,) (X (X if) (X (X only) (X (X by) (X (X a) (X (X shade) (X .)))))))))))))))))))))))))))))))))))))))))) (X (X though) (X (X Dow) (X (X has) (X (X aggressively) (X (X diversified) (X (X into) (X (X specialty) (X (X chemicals) (X (X and) (X (X pharmaceuticals) (X (X ,) (X (X the) (X (X company) (X (X still) (X (X has) (X (X a) (X (X big) (X (X stake) (X (X in) (X (X polyethylene) (X (X ,) (X (X which) (X (X is) (X (X used) (X (X in) (X (X packaging) (X (X and) (X (X housewares) (X .))))))))))))))))))))))))))))) (X (X analysts) (X (X ') (X (X third-quarter) (X (X estimates) (X (X for) (X (X the) (X (X Midland) (X (X ,) (X (X Mich.) (X (X ,) (X (X company) (X (X are) (X (X between) (X (X $) (X (X 3.20) (X (X a) (X (X share) (X (X and) (X (X $) (X (X 3.30) (X (X a) (X (X share) (X (X ,) (X (X compared) (X (X with) (X (X $) (X (X 3.36) (X (X a) (X (X year) (X (X ago) (X (X ,) (X (X when) (X (X profit) (X (X was) (X (X $) (X (X 632) (X (X million) (X (X on) (X (X sales) (X (X of) (X (X $) (X (X 4.15) (X (X billion) (X .)))))))))))))))))))))))))))))))))))))))))))) (X (X a) (X (X Dow) (X (X spokeswoman) (X (X declined) (X (X to) (X (X comment) (X (X on) (X (X the) (X (X estimates) (X .)))))))))) (X (X at) (X (X the) (X (X investment) (X (X firm) (X (X of) (X (X Smith) (X (X Barney) (X (X ,) (X (X Harris) (X (X Upham) (X (X &) (X (X Co.) (X (X ,) (X (X the) (X (X commodity-chemical) (X (X segment) (X (X is) (X (X seen) (X (X pulling) (X (X down) (X (X overall) (X (X profit) (X (X for) (X (X 20) (X (X companies) (X (X representative) (X (X of) (X (X the) (X (X whole) (X (X industry) (X (X by) (X (X 8) (X (X %) (X (X to) (X (X 10) (X (X %) (X .))))))))))))))))))))))))))))))))))))) (X (X ``) (X (X You) (X (X will) (X (X find) (X (X the) (X (X commodities) (X (X off) (X (X more) (X (X than) (X (X the) (X (X others) (X (X and) (X (X the) (X (X diversified) (X (X companies) (X (X about) (X (X even) (X (X or) (X (X slightly) (X (X better) (X (X ,) (X (X '') (X (X says) (X (X James) (X (X Wilbur) (X (X ,) (X (X a) (X (X Smith) (X (X Barney) (X (X analyst) (X .))))))))))))))))))))))))))))))) (X (X first) (X (X Boston) (X (X Corp.) (X (X projects) (X (X that) (X (X 10) (X (X of) (X (X the) (X (X 15) (X (X companies) (X (X it) (X (X follows) (X (X will) (X (X report) (X (X lower) (X (X profit) (X .))))))))))))))))) (X (X most) (X (X of) (X (X the) (X (X 10) (X (X have) (X (X big) (X (X commodity-chemical) (X (X operations) (X .))))))))) (X (X still) (X (X ,) (X (X some) (X (X industry) (X (X giants) (X (X are) (X (X expected) (X (X to) (X (X report) (X (X continuing) (X (X gains) (X (X ,) (X (X largely) (X (X because) (X (X so) (X (X much) (X (X of) (X (X their) (X (X business) (X (X is) (X (X outside) (X (X commodity) (X (X chemicals) (X .)))))))))))))))))))))))) (X (X du) (X (X Pont) (X (X Co.) (X (X is) (X (X thought) (X (X to) (X (X have) (X (X had) (X (X steady) (X (X profit) (X (X growth) (X (X in) (X (X white) (X (X pigments) (X (X ,) (X (X fibers) (X (X and) (X (X polymers) (X .))))))))))))))))))) (X (X moreover) (X (X ,) (X (X the) (X (X Wilmington) (X (X ,) (X (X Del.) (X (X ,) (X (X company) (X (X is) (X (X helped) (X (X when) (X (X prices) (X (X weaken) (X (X on) (X (X the) (X (X commodity) (X (X chemicals) (X (X it) (X (X buys) (X (X for) (X (X its) (X (X own) (X (X production) (X (X needs) (X (X ,) (X (X such) (X (X as) (X (X ethylene) (X .))))))))))))))))))))))))))))) (X (X analysts) (X (X are) (X (X divided) (X (X over) (X (X whether) (X (X Du) (X (X Pont) (X (X will) (X (X report) (X (X much) (X (X of) (X (X a) (X (X gain) (X (X in) (X (X the) (X (X latest) (X (X quarter) (X (X from) (X (X its) (X (X Conoco) (X (X Inc.) (X (X oil) (X (X company) (X .)))))))))))))))))))))))) (X (X the) (X (X estimates) (X (X for) (X (X Du) (X (X Pont) (X (X range) (X (X from) (X (X $) (X (X 2.25) (X (X to) (X (X $) (X (X 2.45) (X (X a) (X (X share) (X .))))))))))))))) (X (X in) (X (X the) (X (X 1988) (X (X third) (X (X quarter) (X (X ,) (X (X the) (X (X company) (X (X earned) (X (X $) (X (X 461) (X (X million) (X (X ,) (X (X or) (X (X $) (X (X 1.91) (X (X a) (X (X share) (X (X ,) (X (X on) (X (X sales) (X (X of) (X (X $) (X (X 7.99) (X (X billion) (X .)))))))))))))))))))))))))) (X (X du) (X (X Pont) (X (X declined) (X (X to) (X (X comment) (X .)))))) (X (X monsanto) (X (X Co.) (X (X ,) (X (X too) (X (X ,) (X (X is) (X (X expected) (X (X to) (X (X continue) (X (X reporting) (X (X higher) (X (X profit) (X (X ,) (X (X even) (X (X though) (X (X its) (X (X sales) (X (X of) (X (X crop) (X (X chemicals) (X (X were) (X (X hurt) (X (X in) (X (X the) (X (X latest) (X (X quarter) (X (X by) (X (X drought) (X (X in) (X (X northern) (X (X Europe) (X (X and) (X (X the) (X (X western) (X (X U.S.) (X .)))))))))))))))))))))))))))))))))))) (X (X the) (X (X St.) (X (X Louis-based) (X (X company) (X (X is) (X (X expected) (X (X to) (X (X report) (X (X again) (X (X that) (X (X losses) (X (X in) (X (X its) (X (X G.D.) (X (X Searle) (X (X &) (X (X Co.) (X (X pharmaceutical) (X (X business) (X (X are) (X (X narrowing) (X .)))))))))))))))))))))) (X (X searle) (X (X continued) (X (X to) (X (X operate) (X (X in) (X (X the) (X (X red) (X (X through) (X (X the) (X (X first) (X (X half) (X (X of) (X (X the) (X (X year) (X (X ,) (X (X but) (X (X Monsanto) (X (X has) (X (X said) (X (X it) (X (X expects) (X (X Searle) (X (X to) (X (X post) (X (X a) (X (X profit) (X (X for) (X (X all) (X (X of) (X (X 1989) (X .))))))))))))))))))))))))))))))) (X (X most) (X (X estimates) (X (X for) (X (X Monsanto) (X (X run) (X (X between) (X (X $) (X (X 1.70) (X (X and) (X (X $) (X (X 2) (X (X a) (X (X share) (X .)))))))))))))) (X (X a) (X (X year) (X (X ago) (X (X ,) (X (X the) (X (X company) (X (X posted) (X (X third-quarter) (X (X profit) (X (X of) (X (X $) (X (X 116) (X (X million) (X (X ,) (X (X or) (X (X $) (X (X 1.67) (X (X a) (X (X share) (X (X ,) (X (X on) (X (X sales) (X (X of) (X (X $) (X (X 2.02) (X (X billion) (X .))))))))))))))))))))))))))) (X (X monsanto) (X (X declined) (X (X to) (X (X comment) (X .))))) (X (X but) (X (X the) (X (X commodity-chemical) (X (X producers) (X (X are) (X (X caught) (X (X on) (X (X the) (X (X downside) (X (X of) (X (X a) (X (X pricing) (X (X cycle) (X .)))))))))))))) (X (X by) (X (X some) (X (X accounts) (X (X on) (X (X Wall) (X (X Street) (X (X and) (X (X in) (X (X the) (X (X industry) (X (X ,) (X (X the) (X (X inventory) (X (X reductions) (X (X are) (X (X near) (X (X an) (X (X end) (X (X ,) (X (X which) (X (X may) (X (X presage) (X (X firmer) (X (X demand) (X .))))))))))))))))))))))))) (X (X but) (X (X doubters) (X (X say) (X (X growing) (X (X production) (X (X capacity) (X (X could) (X (X keep) (X (X pressure) (X (X on) (X (X prices) (X (X into) (X (X the) (X (X early) (X (X 1990s) (X .)))))))))))))))) (X (X in) (X (X the) (X (X latest) (X (X quarter) (X (X ,) (X (X at) (X (X least) (X (X ,) (X (X profit) (X (X is) (X (X expected) (X (X to) (X (X fall) (X (X sharply) (X .))))))))))))))) (X (X for) (X (X Himont) (X (X Inc.) (X (X ,) (X (X ``) (X (X how) (X (X far) (X (X down) (X (X it) (X (X is) (X (X ,) (X (X we) (X (X do) (X (X n't) (X (X know) (X (X ,) (X (X '') (X (X says) (X (X Leslie) (X (X Ravitz) (X (X at) (X (X Salomon) (X (X Brothers) (X .)))))))))))))))))))))))) (X (X the) (X (X projections) (X (X are) (X (X in) (X (X the) (X (X neighborhood) (X (X of) (X (X 50) (X (X cents) (X (X a) (X (X share) (X (X to) (X (X 75) (X (X cents) (X (X ,) (X (X compared) (X (X with) (X (X a) (X (X restated) (X (X $) (X (X 1.65) (X (X a) (X (X share) (X (X a) (X (X year) (X (X earlier) (X (X ,) (X (X when) (X (X profit) (X (X was) (X (X $) (X (X 107.8) (X (X million) (X (X on) (X (X sales) (X (X of) (X (X $) (X (X 435.5) (X (X million) (X .)))))))))))))))))))))))))))))))))))))))) (X (X himont) (X (X faces) (X (X lower) (X (X prices) (X (X for) (X (X its) (X (X mainstay) (X (X product) (X (X ,) (X (X polypropylene) (X (X ,) (X (X while) (X (X it) (X (X goes) (X (X forward) (X (X with) (X (X a) (X (X heavy) (X (X capital) (X (X investment) (X (X program) (X (X to) (X (X bolster) (X (X its) (X (X raw) (X (X material) (X (X supply) (X (X and) (X (X develop) (X (X new) (X (X uses) (X (X for) (X (X polypropylene) (X (X ,) (X (X whose) (X (X markets) (X (X include) (X (X the) (X (X packaging) (X (X and) (X (X automobile) (X (X industries) (X .))))))))))))))))))))))))))))))))))))))))))) (X (X the) (X (X company) (X (X ,) (X (X based) (X (X in) (X (X Wilmington) (X (X ,) (X (X Del.) (X (X ,) (X (X is) (X (X 81%-owned) (X (X by) (X (X Montedison) (X (X S.p) (X (X .) (X (X A.) (X (X ,) (X (X Milan) (X (X ,) (X (X which) (X (X has) (X (X an) (X (X offer) (X (X outstanding) (X (X for) (X (X the) (X (X Himont) (X (X shares) (X (X it) (X (X does) (X (X n't) (X (X already) (X (X own) (X .)))))))))))))))))))))))))))))))))) (X (X at) (X (X Quantum) (X (X Chemical) (X (X Corp.) (X (X ,) (X (X New) (X (X York) (X (X ,) (X (X the) (X (X trouble) (X (X is) (X (X lower) (X (X prices) (X (X for) (X (X polyethylene) (X (X ,) (X (X higher) (X (X debt) (X (X costs) (X (X and) (X (X the) (X (X idling) (X (X of) (X (X an) (X (X important) (X (X plant) (X (X due) (X (X to) (X (X an) (X (X explosion) (X .))))))))))))))))))))))))))))))) (X (X some) (X (X analysts) (X (X hedge) (X (X their) (X (X estimates) (X (X for) (X (X Quantum) (X (X ,) (X (X because) (X (X it) (X (X is) (X (X n't) (X (X known) (X (X when) (X (X the) (X (X company) (X (X will) (X (X book) (X (X certain) (X (X one-time) (X (X charges) (X .)))))))))))))))))))))) (X (X but) (X (X the) (X (X estimates) (X (X range) (X (X from) (X (X break-even) (X (X to) (X (X 35) (X (X cents) (X (X a) (X (X share) (X .)))))))))))) (X (X in) (X (X the) (X (X 1988) (X (X third) (X (X quarter) (X (X ,) (X (X Quantum) (X (X earned) (X (X $) (X (X 99.8) (X (X million) (X (X ,) (X (X or) (X (X $) (X (X 3.92) (X (X a) (X (X share) (X (X ,) (X (X on) (X (X sales) (X (X of) (X (X $) (X (X 724.4) (X (X million) (X .))))))))))))))))))))))))) (X (X another) (X (X big) (X (X polyethylene) (X (X producer) (X (X ,) (X (X Union) (X (X Carbide) (X (X Corp.) (X (X ,) (X (X is) (X (X expected) (X (X to) (X (X post) (X (X profit) (X (X of) (X (X between) (X (X $) (X (X 1) (X (X a) (X (X share) (X (X and) (X (X $) (X (X 1.25) (X (X ,) (X (X compared) (X (X with) (X (X $) (X (X 1.56) (X (X a) (X (X share) (X (X a) (X (X year) (X (X earlier) (X (X ,) (X (X when) (X (X the) (X (X company) (X (X earned) (X (X $) (X (X 213) (X (X million) (X (X on) (X (X sales) (X (X of) (X (X $) (X (X 2.11) (X (X billion) (X .)))))))))))))))))))))))))))))))))))))))))))))))) (X (X himont) (X (X ,) (X (X Quantum) (X (X and) (X (X Union) (X (X Carbide) (X (X all) (X (X declined) (X (X to) (X (X comment) (X .))))))))))) (X (X the) (X (X following) (X (X were) (X (X among) (X (X Friday) (X (X 's) (X (X offerings) (X (X and) (X (X pricings) (X (X in) (X (X the) (X (X U.S.) (X (X and) (X (X non-U.S.) (X (X capital) (X (X markets) (X (X ,) (X (X with) (X (X terms) (X (X and) (X (X syndicate) (X (X manager) (X (X ,) (X (X as) (X (X compiled) (X (X by) (X (X Dow) (X (X Jones) (X (X Capital) (X (X Markets) (X (X Report) (X :)))))))))))))))))))))))))))))))) (X (X dow) (X (X Chemical) (X (X Co.) (X --)))) (X (X $) (X (X 150) (X (X million) (X (X of) (X (X 8.55) (X (X %) (X (X senior) (X (X notes) (X (X due) (X (X Oct.) (X (X 15) (X (X ,) (X (X 2009) (X (X ,) (X (X priced) (X (X at) (X (X par) (X .)))))))))))))))))) (X (X the) (X (X issue) (X (X ,) (X (X which) (X (X is) (X (X puttable) (X (X back) (X (X to) (X (X the) (X (X company) (X (X at) (X (X par) (X (X on) (X (X Oct.) (X (X 15) (X (X ,) (X (X 1999) (X (X ,) (X (X was) (X (X priced) (X (X at) (X (X a) (X (X spread) (X (X of) (X (X 50) (X (X basis) (X (X points) (X (X above) (X (X the) (X (X Treasury) (X (X 's) (X (X 10-year) (X (X note) (X .)))))))))))))))))))))))))))))))))) (X (X rated) (X (X single-A-1) (X (X by) (X (X Moody) (X (X 's) (X (X Investors) (X (X Service) (X (X Inc.) (X (X and) (X (X single-A) (X (X by) (X (X Standard) (X (X &) (X (X Poor) (X (X 's) (X (X Corp.) (X (X ,) (X (X the) (X (X non-callable) (X (X issue) (X (X will) (X (X be) (X (X sold) (X (X through) (X (X underwriters) (X (X led) (X (X by) (X (X Merrill) (X (X Lynch) (X (X Capital) (X (X Markets) (X .)))))))))))))))))))))))))))))))) (X (X centel) (X (X Capital) (X (X Corp.) (X --)))) (X (X $) (X (X 150) (X (X million) (X (X of) (X (X 9) (X (X %) (X (X debentures) (X (X due) (X (X Oct.) (X (X 15) (X (X ,) (X (X 2019) (X (X ,) (X (X priced) (X (X at) (X (X 99.943) (X (X to) (X (X yield) (X (X 9.008) (X (X %) (X .))))))))))))))))))))) (X (X the) (X (X non-callable) (X (X issue) (X (X ,) (X (X which) (X (X can) (X (X be) (X (X put) (X (X back) (X (X to) (X (X the) (X (X company) (X (X in) (X (X 1999) (X (X ,) (X (X was) (X (X priced) (X (X at) (X (X 99) (X (X basis) (X (X points) (X (X above) (X (X the) (X (X Treasury) (X (X 's) (X (X 10-year) (X (X note) (X .)))))))))))))))))))))))))))) (X (X rated) (X (X Baa-1) (X (X by) (X (X Moody) (X (X 's) (X (X and) (X (X triple-B-plus) (X (X by) (X (X S&P) (X (X ,) (X (X the) (X (X issue) (X (X will) (X (X be) (X (X sold) (X (X through) (X (X underwriters) (X (X led) (X (X by) (X (X Morgan) (X (X Stanley) (X (X &) (X (X Co) (X .)))))))))))))))))))))))) (X (X federal) (X (X Home) (X (X Loan) (X (X Mortgage) (X (X Corp.) (X --)))))) (X (X $) (X (X 500) (X (X million) (X (X of) (X (X Remic) (X (X mortgage) (X (X securities) (X (X offered) (X (X in) (X (X 13) (X (X classes) (X (X by) (X (X Prudential-Bache) (X (X Securities) (X (X Inc) (X .)))))))))))))))) (X (X the) (X (X offering) (X (X ,) (X (X Series) (X (X 102) (X (X ,) (X (X backed) (X (X by) (X (X Freddie) (X (X Mac) (X (X 8) (X (X 1\/2) (X (X %) (X (X securities) (X (X with) (X (X a) (X (X weighted) (X (X average) (X (X remaining) (X (X term) (X (X to) (X (X maturity) (X (X of) (X (X 28.4) (X (X years) (X (X ,) (X (X was) (X (X priced) (X (X before) (X (X the) (X (X market) (X (X 's) (X (X afternoon) (X (X surge) (X .))))))))))))))))))))))))))))))))))) (X (X among) (X (X classes) (X (X for) (X (X which) (X (X details) (X (X were) (X (X available) (X (X ,) (X (X yields) (X (X ranged) (X (X from) (X (X 8.78) (X (X %) (X (X ,) (X (X or) (X (X 75) (X (X basis) (X (X points) (X (X over) (X (X two-year) (X (X Treasury) (X (X securities) (X (X ,) (X (X to) (X (X 10.05) (X (X %) (X (X ,) (X (X or) (X (X 200) (X (X basis) (X (X points) (X (X over) (X (X 10-year) (X (X Treasurys) (X .))))))))))))))))))))))))))))))))))) (X (X federal) (X (X Home) (X (X Loan) (X (X Mortgage) (X (X Corp.) (X --)))))) (X (X $) (X (X 300) (X (X million) (X (X of) (X (X Remic) (X (X mortgage) (X (X securities) (X (X offered) (X (X by) (X (X Citicorp) (X (X Securities) (X (X Markets) (X (X Inc) (X .)))))))))))))) (X (X the) (X (X offering) (X (X ,) (X (X Series) (X (X 101) (X (X ,) (X (X is) (X (X backed) (X (X by) (X (X Freddie) (X (X Mac) (X (X 9) (X (X 1\/2) (X (X %) (X (X securities) (X .)))))))))))))))) (X (X pricing) (X (X details) (X (X were) (X (X n't) (X (X immediately) (X (X available) (X .))))))) (X (X federal) (X (X Home) (X (X Loan) (X (X Mortgage) (X (X Corp.) (X --)))))) (X (X $) (X (X 200) (X (X million) (X (X of) (X (X stripped) (X (X mortgage) (X (X securities) (X (X underwritten) (X (X by) (X (X BT) (X (X Securities) (X (X Corp) (X .))))))))))))) (X (X the) (X (X agency) (X (X 's) (X (X first) (X (X strips) (X (X issue) (X (X ,) (X (X collateralized) (X (X by) (X (X Freddie) (X (X Mac) (X (X 8) (X (X %) (X (X securities) (X (X pooled) (X (X into) (X (X a) (X (X single) (X (X security) (X (X called) (X (X a) (X (X Giant) (X (X ,) (X (X will) (X (X be) (X (X divided) (X (X into) (X (X interest-only) (X (X and) (X (X principal-only) (X (X securities) (X .)))))))))))))))))))))))))))))))) (X (X the) (X (X collateral) (X (X is) (X (X being) (X (X sold) (X (X by) (X (X a) (X (X thrift) (X (X institution) (X .)))))))))) (X (X the) (X (X principal-only) (X (X securities) (X (X will) (X (X be) (X (X repackaged) (X (X by) (X (X BT) (X (X Securities) (X (X into) (X (X a) (X (X Freddie) (X (X Mac) (X (X Remic) (X (X ,) (X (X Series) (X (X 103) (X (X ,) (X (X that) (X (X will) (X (X have) (X (X six) (X (X classes) (X .)))))))))))))))))))))))) (X (X the) (X (X interest-only) (X (X securities) (X (X will) (X (X be) (X (X sold) (X (X separately) (X (X by) (X (X BT) (X (X Securities) (X .))))))))))) (X (X the) (X (X principal-only) (X (X securities) (X (X pay) (X (X the) (X (X principal) (X (X from) (X (X the) (X (X underlying) (X (X Freddie) (X (X Mac) (X (X 8) (X (X %) (X (X securities) (X (X ,) (X (X while) (X (X the) (X (X interest-only) (X (X securities) (X (X pay) (X (X only) (X (X interest) (X .))))))))))))))))))))))) (X (X freddie) (X (X Mac) (X (X said) (X (X the) (X (X principal-only) (X (X securities) (X (X were) (X (X priced) (X (X at) (X (X 58) (X (X 1\/4) (X (X to) (X (X yield) (X (X 8.45) (X (X %) (X (X ,) (X (X assuming) (X (X an) (X (X average) (X (X life) (X (X of) (X (X eight) (X (X years) (X (X and) (X (X a) (X (X prepayment) (X (X of) (X (X 160) (X (X %) (X (X of) (X (X the) (X (X PSA) (X (X model) (X .)))))))))))))))))))))))))))))))))) (X (X the) (X (X interest-only) (X (X securities) (X (X were) (X (X priced) (X (X at) (X (X 35) (X (X 1\/2) (X (X to) (X (X yield) (X (X 10.72) (X (X %) (X .))))))))))))) (X (X there) (X (X were) (X (X no) (X (X major) (X (X Eurobond) (X (X or) (X (X foreign) (X (X bond) (X (X offerings) (X (X in) (X (X Europe) (X (X Friday) (X .)))))))))))))
db303d054974645d0d370450f3495cfb70b79077
449d555969bfd7befe906877abab098c6e63a0e8
/3841/CH7/EX7.9/Ex7_9.sce
a30e90758c7b887e7b654291605124fdafa7d149
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
224
sce
Ex7_9.sce
clear //find fuel consumption when using fuel 18 //given bth=38. //calculating heat input //1 bhp 2544 hi=(2544./bth)*100. printf("\n \n heat input %.2f btu per hp",hi) F=hi/18390. printf("\n \n fuel consumption %.2f lb",F)
851e653c4cc0ab74cbf7e972a912f365ad7c1a9a
1d7cb1dbfad2558a4145c06cbe3f5fa3fc6d2c08
/Scilab/PCIeGen3/LFSRForPCIEGen3/LFSR_lowpass_plot.sce
33d3cd9dcc96c7cf7f3bb42fe1c82668d426c1f9
[]
no_license
lrayzman/SI-Scripts
5b5f6a8e4ae19ccff53b8dab7b5773e0acde710d
9ab161c6deff2a27c9da906e37aa68964fabb036
refs/heads/master
2020-09-25T16:23:23.389526
2020-02-09T02:13:46
2020-02-09T02:13:46
66,975,754
0
0
null
null
null
null
UTF-8
Scilab
false
false
273
sce
LFSR_lowpass_plot.sce
//Simulation of DC wander based on LFSR-generated bitstream // // //stacksize(128*1024*1024); clear; //Clear user variables n=11; output=zeros(1,2^n-1); fd=mopen('output_save','r') load(fd,'n', 'output'); mclose(fd) plot2d(output);
dd0805228be2314d562b97491ee5c0dc4e1be2f8
449d555969bfd7befe906877abab098c6e63a0e8
/3845/CH30/EX30.1/Ex30_1.sce
0c3e66c6e20a8b2b136bff0f8c6b9e8ac56d0445
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
570
sce
Ex30_1.sce
//Example 30.1 n_f=2;//For Balmer series n_i=4;//For second line of Balmer series R=1.097*10^7;//Rydberg constant (m^-1) lambda=1/[R*(1/n_f^2-1/n_i^2)];//Wavelength equation (m) printf('a.Wavelength corresponding to second line of Balmer series = %0.1f nm',lambda*10^9) m=1;//Order of interference theta=15;//Angle from the original beam direction (deg) d=m*lambda/sind(theta); printf('\nb.Distance between slits = %0.2e m',d) //Answer varies due to round off error //Openstax - College Physics //Download for free at http://cnx.org/content/col11406/latest
71417e48afa3e985f160d8488412f152bb62cbbe
449d555969bfd7befe906877abab098c6e63a0e8
/3020/CH4/EX4.4/ex4_4.sce
251370840d4f1ad6fadb61d27913cf192d3a7933
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
404
sce
ex4_4.sce
clc; clear all; Q = 1.5; // Power radiated by louspeaker in Joule per second r = 20; // Radius in meters I0 = 1e-12; // Standard intensity level in Watts per square meters I2 = (Q/(4*%pi*r^2)); // Intensity of the sound produced ny loudspeaker b = 10*log10(I2/I0);//The intensity level of sound produced by loudspeaker disp('dB',b,'The intensity level of sound produced by loudspeaker is ')
5be252cacc74607d2c668344501aad2f9aa30dd7
c6902e84eb0151d2c3a595a4b7db2c2293bcf2e6
/sem11/NEB100/Projeto_URA/xcos/gui.sci
aeada4022526b9fd57688d001f537a8de037ffba
[]
no_license
Ryuji357/FEIALL
6d1076ea594a32a60b8fa7e1cb165e0db05c43aa
469484f5a4ac1619eed953db86286cb17074c5aa
refs/heads/master
2022-05-12T22:55:25.924225
2022-04-16T04:23:17
2022-04-16T04:23:17
245,020,403
2
0
null
null
null
null
UTF-8
Scilab
false
false
655
sci
gui.sci
// Include an editable table into a figure: // Building a table of data: params = ["City" "Country" "Population [Mh]" "Temp.[°C]"]; towns = ["Mexico" "Paris" "Tokyo" "Singapour"]'; country = ["Mexico" "France" "Japan" "Singapour"]'; pop = string([22.41 11.77 33.41 4.24]'); temp = string([26 19 22 17]'); table = [params; [ towns country pop temp ]]; f = gcf(); clf // as = f.axes_size; // [width height] as = get(f, "axes_size"); ut = uicontrol(f, "style", "table",.. "string", table,.. "position", [5 (as(2) - 100) 300 87],.. // => @top left corner of figure "tooltipstring", "Data from majors towns");
d6a47ef7b9f6690c3b36f756e5800e8aae7f540f
449d555969bfd7befe906877abab098c6e63a0e8
/1748/CH2/EX2.18.p/problem2_18.sce
8439b04d09a03e3d02925ad644e8c5fb1cc00d0e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
576
sce
problem2_18.sce
//problem 2.18 clc; clear; close; //given data : format('v',6); P=8;//no. of poles f=50;//in Hz R2=0.04;//in ohm/phase N=645;//in rpm Ns=120*f/P;//in rpm S=(Ns-N)/Ns*100;//unitless S=S/100;//unitless //S=R2/X2;//at max torque X2=R2/S;//in ohm per phase a=R2/X2;//unitless TstartBYTmax=2*a/(a^2+1);//ratio TstartBYTmax=2*a/(a^2+1)*100;//in % disp(round(TstartBYTmax),"% of max torque is : "); S=3;//in % S=3/100;//unitless TflBYTmax=2*a*S/(a^2+S^2);//ratio TflBYTmax=2*a*S/(a^2+S^2)*100;//in % disp(round(TflBYTmax),"% of max torque at slip 3% is : ");
ec0c4e1ce3e0193b80156c527458e07b98420dd8
449d555969bfd7befe906877abab098c6e63a0e8
/331/CH9/EX9.12/Example_9_12.sce
43c1eac7ce5f492cc30bbb4b1f305f3799f5c31e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
931
sce
Example_9_12.sce
//Caption: Two-Samples Tests //One-tailed two-samples sign tests with binomial distribution //Example9.12 //Page330 //Test 1: Ho: uX = uY or p = 1/2 // H1: uX> uY or p > 1/2 clear; clc; n = 9; //Number of observations of each sample plus_signs = 6; minus_signs = 3; alpha = 0.05; //significance level X = 5;////number of plus signs more than minus signs p = 1/2; q = 1-p; [P,Q]=cdfbin("PQ",X,n,p,q); disp(Q,'The binomial propability no. of plus signs > minus signs P(X>=6)=') if (Q>alpha) then disp('Since P(Q>=6) is more than the significance level of 0.05') disp('It falls in the acceptance region and accpt Ho') else disp('Reject Null Hypothesis Ho') end //Result //The binomial propability no. of plus signs > minus signs P(X>=6)= // // 0.2539063 // // Since P(Q>=6) is more than the significance level of 0.05 // // It falls in the acceptance region and accpt Ho
e3fdcc0c083d48fcf7896c61a38fffeaa567ba2e
449d555969bfd7befe906877abab098c6e63a0e8
/2252/CH17/EX17.6/Ex17_6.sce
262a8164de6504845f59c472d8f871612fc4f090
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
566
sce
Ex17_6.sce
n=60//no. of slots on armature c=6//conductors per slot Z=n*c//total no. of conductors A=2//no. of parallel paths in armature winding N=750//speed of rotation P=4//no. of poles Eg=230//emf generated on open circuit phi=60*Eg*A/(P*N*Z) mprintf("Useful fux per pole=%f Wb\n",phi) Eg=115//emf to be generated at no load A=P*N*Z*phi/(60*Eg)//required no. of parallel paths in armature winding mprintf("As the machine has equal number of poles and parallel paths in armature winding, the armature will be lap connected to generate 115 V at the same speed")
48c01faf9e3088897a3a6e1726b1c75b6afd33fe
b9602336613b26d0b9c22a09d219c0ed8e158b4e
/Examples/Examples_MatFunc/vectorise.sce
c31f81c69fb134eaa45c546361dfad3b2f8fdce5
[ "BSD-2-Clause" ]
permissive
CEG-MCA-Scilab-Hackathon/Scilab_Armadillo_Toolbox
d0a366f5f058ee45d3c4be7a41e08ed419d4b7cd
70c97cda4e0dd54df0a638e9b99f380c09ffa37e
refs/heads/master
2022-12-11T01:28:28.742041
2020-08-26T12:24:27
2020-08-26T12:24:27
290,481,428
0
0
null
null
null
null
UTF-8
Scilab
false
false
197
sce
vectorise.sce
// // Function Name: vectorise // // Returns the vectorise array of input matrix // // Calculating the vectorise. inputMat = [ 1, 2, 3; 4, 5, 6; 7, 8, 9;] result = armaMatFunc("vectorise",inputMat)
ca55699b0033a375cd9066c315a759ab1ef67685
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/blog/ngram/5.18_9.tst
d37cd7700aa0e6beaec3b835277e8e9136ae5df0
[]
no_license
mandar15/NLP_Project
3142cda82d49ba0ea30b580c46bdd0e0348fe3ec
1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2
refs/heads/master
2020-05-20T13:36:05.842840
2013-07-31T06:53:59
2013-07-31T06:53:59
6,534,406
0
1
null
null
null
null
UTF-8
Scilab
false
false
556,570
tst
5.18_9.tst
18 188:2 269:1 603:1 646:1 767:1 782:1 1248:2 1280:1 1281:1 1316:1 1647:1 1842:2 2043:1 2322:1 2361:1 2393:1 2432:2 2450:1 2557:2 2653:1 2687:1 2720:1 2728:1 2880:1 3107:1 3317:1 3479:1 4066:1 4089:1 4133:1 4185:1 4186:1 4754:1 4851:1 4922:1 5310:1 5648:1 5651:1 5882:1 6020:1 6127:1 6363:1 6630:1 6645:1 6672:1 6815:1 7239:3 7429:1 7460:1 7945:1 8033:1 8351:1 8360:1 8386:1 9220:3 9725:1 9743:1 9932:1 10178:1 10372:1 10450:2 10678:1 10860:2 11178:1 11608:1 11710:3 11863:1 11943:1 12489:1 12646:1 13055:1 13105:1 13387:1 13674:1 14250:1 14301:2 14328:1 14749:1 14757:1 14847:1 14915:1 15026:1 15154:1 15530:1 15585:1 15604:2 15606:1 16019:1 16158:1 16169:1 16256:2 16259:1 16732:1 16919:1 16963:1 16982:1 17267:1 17291:1 17514:1 17559:1 18120:2 18472:1 18759:1 18783:1 18934:1 18988:1 19284:1 19401:1 19504:2 19521:1 19802:1 19908:2 19980:2 20268:2 20293:1 20328:59 20662:1 20977:2 21072:1 21156:1 21378:1 21425:1 21523:1 21862:1 21905:1 21972:1 22339:1 22381:1 22446:1 22450:2 22456:1 22512:1 22655:2 22827:1 22870:1 22988:1 23303:1 23363:1 23476:1 23511:1 23590:2 23826:1 24078:1 24163:1 24233:1 24263:1 24383:1 24407:1 24450:1 24613:1 24620:1 24701:2 24782:1 24795:1 24862:1 24981:1 25019:1 25091:1 25115:2 25266:1 25398:1 25472:1 25525:1 25630:1 25766:1 25798:2 25919:1 26147:1 26235:1 26389:1 26552:1 26809:1 26821:1 27097:1 27104:1 27209:2 27253:1 27297:1 27466:1 27604:1 27685:1 27690:1 27817:1 27839:1 28262:1 28488:1 28540:3 28728:1 28858:3 28911:1 28933:2 29034:1 29126:1 29146:1 29349:1 29396:1 29413:1 29457:2 29935:1 30162:1 30396:2 30468:1 30760:1 31427:1 31478:1 31505:1 31615:1 18 123:1 188:4 269:2 603:1 646:1 756:1 767:1 782:1 1014:1 1248:4 1280:2 1281:1 1316:2 1465:1 1506:1 1647:1 1720:1 1842:4 1981:1 2043:2 2133:1 2137:1 2322:1 2329:1 2361:2 2371:1 2393:1 2432:3 2450:2 2557:4 2653:1 2687:2 2720:2 2728:2 2847:1 2880:1 3107:1 3218:1 3230:1 3317:2 3479:1 4066:1 4089:1 4133:1 4185:2 4186:1 4754:2 4851:2 4922:2 5310:1 5581:1 5648:1 5651:2 5783:1 5882:1 6020:2 6127:1 6363:1 6613:1 6630:2 6645:1 6672:2 6815:1 6826:1 6832:1 6931:1 6938:1 7084:1 7239:5 7268:1 7429:1 7460:1 7945:1 8033:1 8329:1 8351:1 8360:2 8386:2 8569:1 8841:1 9134:1 9220:5 9285:1 9312:1 9725:1 9743:2 9932:1 10178:1 10206:1 10372:2 10450:4 10678:1 10828:1 10860:3 10922:1 11178:1 11185:1 11608:1 11710:5 11863:1 11943:1 12319:1 12489:1 12646:1 13034:1 13055:1 13105:2 13387:2 13550:1 13674:2 14250:1 14301:4 14328:2 14467:1 14749:1 14757:1 14847:2 14915:1 14987:1 15026:1 15154:2 15530:1 15585:1 15604:3 15606:2 16019:2 16158:2 16169:1 16256:3 16259:2 16732:1 16804:2 16919:1 16963:2 16982:1 17098:1 17267:2 17291:1 17514:2 17559:1 17836:1 17991:1 18120:4 18435:2 18472:2 18632:1 18759:1 18783:1 18934:2 18988:2 19284:2 19401:2 19504:4 19521:1 19802:1 19847:1 19908:4 19980:3 20268:3 20293:2 20328:143 20471:1 20662:1 20977:4 21072:1 21156:1 21378:3 21425:2 21511:1 21523:1 21862:1 21905:1 21972:1 22235:1 22339:2 22381:2 22446:1 22450:4 22456:2 22512:1 22655:3 22810:1 22827:1 22870:1 22988:1 23303:1 23363:1 23476:2 23511:2 23590:4 23826:2 24078:1 24115:1 24163:1 24164:1 24233:2 24263:1 24383:2 24407:1 24450:2 24613:2 24620:2 24701:3 24782:1 24795:2 24862:2 24981:1 25019:2 25056:1 25091:1 25115:4 25266:1 25398:2 25410:1 25472:2 25525:2 25630:1 25766:2 25798:4 25919:2 26147:2 26235:2 26389:2 26444:1 26552:1 26809:2 26821:2 27097:1 27104:2 27209:4 27253:1 27297:2 27352:1 27466:1 27604:1 27605:1 27667:1 27685:2 27690:2 27817:2 27839:1 28262:1 28488:1 28540:5 28575:1 28728:1 28858:5 28911:1 28933:3 29034:1 29126:1 29146:1 29349:2 29396:2 29413:1 29457:4 29551:1 29935:1 30137:1 30162:1 30396:4 30468:1 30760:2 31427:2 31446:1 31478:2 31505:2 31615:2 18 123:1 188:4 269:2 323:1 603:1 646:1 656:1 756:1 767:1 782:1 1014:1 1248:4 1280:2 1281:1 1316:2 1453:1 1454:1 1465:1 1500:1 1506:1 1556:1 1647:1 1720:1 1842:4 1981:1 2014:1 2043:2 2133:1 2137:1 2147:1 2192:1 2242:1 2300:1 2315:1 2322:1 2329:1 2361:2 2371:1 2393:1 2432:4 2450:2 2506:1 2557:4 2653:1 2687:2 2717:1 2720:2 2728:2 2827:1 2847:1 2880:1 2952:1 3066:1 3107:1 3218:1 3230:1 3317:2 3330:1 3388:1 3442:1 3479:1 4066:1 4089:1 4133:1 4185:2 4186:1 4456:1 4754:2 4851:2 4922:2 4946:1 5108:1 5121:1 5310:1 5581:1 5648:1 5651:2 5783:1 5882:1 6020:2 6127:1 6363:1 6555:1 6603:1 6613:1 6630:2 6645:1 6672:2 6763:1 6815:2 6826:1 6832:1 6923:1 6931:1 6938:1 7084:1 7239:5 7268:1 7302:1 7429:1 7460:1 7658:1 7945:2 8030:1 8033:1 8329:1 8351:1 8359:1 8360:2 8386:2 8569:1 8766:1 8841:1 8976:1 9134:1 9220:5 9285:1 9312:1 9491:1 9652:1 9725:1 9743:2 9932:1 10178:1 10206:1 10372:2 10434:1 10450:4 10678:1 10828:1 10860:4 10922:1 11178:1 11185:1 11608:1 11710:5 11863:1 11896:1 11943:1 12072:1 12145:1 12319:1 12327:1 12489:1 12574:1 12646:1 12706:1 12778:1 13034:1 13055:1 13105:2 13387:2 13550:1 13674:2 13736:1 14001:1 14250:1 14301:4 14328:2 14467:1 14662:1 14749:1 14757:1 14847:2 14915:2 14987:1 15026:1 15154:2 15530:1 15585:1 15604:4 15606:2 15710:1 15715:1 15871:1 16019:2 16153:1 16158:2 16169:1 16195:1 16196:1 16256:3 16259:2 16732:1 16804:3 16838:1 16869:1 16919:1 16963:2 16982:1 17098:1 17267:2 17291:1 17514:2 17559:1 17836:1 17991:1 18120:4 18369:1 18435:3 18472:2 18632:1 18759:1 18783:1 18789:1 18833:1 18934:2 18988:2 19065:1 19077:1 19284:2 19401:2 19504:4 19511:1 19521:1 19802:1 19847:1 19908:4 19980:4 20268:4 20293:2 20328:274 20471:1 20662:1 20977:4 21072:1 21156:1 21262:1 21378:4 21425:2 21511:1 21523:1 21862:1 21875:1 21905:1 21936:1 21972:1 22235:1 22339:2 22381:2 22446:1 22450:4 22456:2 22512:1 22655:3 22810:1 22815:1 22827:1 22870:1 22988:1 23276:1 23280:1 23303:1 23363:1 23476:2 23511:2 23590:4 23826:2 24078:1 24115:1 24163:1 24164:1 24233:2 24263:1 24276:1 24383:2 24407:1 24450:2 24613:2 24620:2 24701:3 24782:1 24795:2 24862:2 24981:1 25019:2 25056:1 25091:1 25115:4 25192:1 25266:1 25398:2 25410:1 25472:2 25525:2 25630:1 25766:2 25781:1 25798:4 25919:2 26147:2 26235:2 26248:1 26389:2 26444:1 26552:1 26611:1 26781:1 26809:2 26821:2 27097:1 27104:2 27209:4 27253:1 27297:2 27352:1 27466:1 27575:1 27604:1 27605:1 27662:1 27667:1 27685:2 27690:2 27768:1 27817:2 27839:1 27851:1 28072:1 28262:1 28488:1 28540:5 28575:1 28728:1 28858:5 28911:1 28933:4 29034:1 29126:1 29146:1 29349:2 29396:2 29413:1 29457:4 29551:1 29763:1 29935:1 30137:1 30162:1 30184:1 30241:1 30396:4 30468:1 30760:2 31427:2 31446:1 31478:2 31505:2 31615:2 18 123:1 188:4 269:2 323:1 358:1 603:1 646:1 656:1 694:1 756:1 767:1 782:1 950:1 1014:1 1248:4 1280:2 1281:1 1283:1 1316:2 1351:1 1453:1 1454:1 1465:1 1500:2 1506:1 1520:1 1556:1 1647:1 1720:1 1789:1 1842:4 1981:1 2014:1 2043:2 2133:1 2137:1 2147:1 2192:1 2242:1 2300:2 2310:1 2315:1 2322:1 2329:1 2361:2 2371:1 2393:1 2412:1 2432:5 2450:2 2506:2 2557:4 2653:1 2687:2 2717:1 2720:2 2728:2 2827:1 2847:1 2880:1 2952:1 3066:2 3107:1 3182:1 3218:1 3230:1 3317:2 3330:1 3388:1 3442:1 3479:1 4058:1 4065:1 4066:1 4078:1 4089:1 4133:1 4185:2 4186:1 4307:1 4456:1 4717:1 4754:2 4757:1 4851:2 4922:2 4946:1 4992:1 5108:1 5121:1 5212:1 5310:1 5581:1 5648:1 5651:2 5746:1 5783:1 5882:1 5912:1 6020:2 6127:1 6227:1 6242:1 6363:1 6555:1 6603:1 6613:1 6630:2 6645:1 6672:2 6763:1 6815:2 6826:1 6829:1 6832:1 6923:1 6931:1 6938:1 7084:1 7239:5 7268:1 7302:1 7388:1 7429:1 7460:1 7468:1 7658:1 7870:1 7945:2 7996:1 8030:1 8033:1 8329:1 8351:1 8359:1 8360:2 8386:2 8569:1 8766:1 8841:1 8889:1 8950:1 8976:2 8984:1 8986:1 9134:1 9220:5 9285:1 9312:1 9491:1 9652:1 9685:1 9715:1 9725:1 9743:2 9932:1 10178:1 10206:1 10372:3 10434:1 10450:4 10678:1 10705:1 10784:1 10828:1 10860:5 10922:1 11034:1 11178:1 11185:1 11362:1 11608:1 11661:1 11710:5 11863:1 11896:1 11943:1 12026:1 12072:1 12145:1 12319:1 12327:1 12489:1 12574:1 12646:1 12706:1 12716:1 12745:1 12778:1 13034:1 13055:1 13086:1 13091:1 13098:1 13105:2 13387:2 13550:1 13674:2 13736:1 14001:2 14250:1 14301:4 14328:2 14426:1 14467:1 14493:1 14523:1 14552:1 14557:1 14662:1 14749:1 14752:1 14757:1 14847:2 14915:2 14936:1 14987:1 15026:1 15154:2 15338:1 15530:1 15535:1 15585:1 15604:5 15606:2 15663:1 15710:1 15715:1 15852:1 15871:1 16019:2 16153:1 16158:2 16169:1 16195:1 16196:1 16256:3 16259:2 16461:1 16539:1 16732:1 16804:3 16838:1 16869:1 16919:1 16963:2 16982:1 17098:1 17267:2 17291:1 17461:1 17514:2 17559:1 17828:1 17836:1 17848:1 17991:1 18120:4 18369:1 18435:3 18472:2 18632:1 18648:1 18759:1 18783:1 18789:1 18833:1 18934:2 18984:1 18988:2 19036:1 19065:1 19077:1 19124:1 19266:1 19284:2 19401:2 19418:1 19450:1 19472:1 19504:4 19511:1 19521:1 19571:1 19589:1 19802:2 19847:1 19908:4 19980:5 20083:1 20268:5 20293:2 20328:401 20471:1 20662:1 20820:1 20977:4 21072:1 21156:1 21160:1 21262:1 21378:4 21425:2 21511:1 21523:1 21777:1 21862:1 21875:1 21905:1 21936:1 21972:1 22062:1 22235:1 22339:2 22381:2 22446:1 22450:4 22456:2 22512:1 22655:3 22810:1 22815:1 22827:1 22870:1 22987:1 22988:1 23084:1 23261:1 23276:1 23280:1 23303:1 23363:1 23462:1 23476:2 23511:2 23590:4 23723:1 23826:2 24009:1 24055:1 24078:1 24115:1 24163:1 24164:1 24233:2 24263:1 24276:1 24382:1 24383:2 24407:1 24450:2 24603:1 24613:2 24620:2 24701:3 24727:1 24782:1 24795:2 24862:2 24945:1 24981:1 25019:2 25056:1 25091:2 25115:4 25148:1 25192:1 25266:1 25280:1 25376:1 25391:1 25398:2 25410:1 25421:1 25470:1 25472:2 25525:2 25577:1 25630:1 25766:2 25781:1 25798:4 25919:2 26125:1 26147:2 26235:2 26248:1 26280:1 26288:1 26293:1 26389:2 26444:1 26552:1 26611:1 26642:1 26781:1 26809:2 26821:2 27097:1 27104:2 27113:1 27209:4 27253:1 27297:2 27302:1 27352:1 27466:1 27575:1 27604:1 27605:1 27662:1 27667:1 27685:2 27690:2 27718:1 27768:1 27817:2 27839:1 27851:1 28005:1 28072:1 28262:1 28307:1 28474:1 28488:1 28540:5 28575:1 28728:1 28858:5 28911:1 28933:5 28977:1 29034:1 29126:1 29146:1 29239:1 29314:1 29349:2 29396:2 29413:1 29429:1 29457:4 29551:1 29763:1 29866:1 29935:1 30137:1 30162:1 30184:1 30241:2 30394:1 30396:4 30459:1 30468:1 30646:1 30760:2 30795:1 30902:1 31037:1 31184:1 31341:1 31427:2 31432:1 31446:1 31462:1 31478:2 31505:2 31615:2 18 6:1 123:1 188:4 237:1 269:2 283:1 323:1 358:1 603:1 618:1 632:1 646:1 656:1 694:1 756:1 767:1 782:1 924:1 950:1 970:1 1014:1 1202:1 1248:4 1280:2 1281:1 1283:1 1316:2 1351:1 1453:1 1454:1 1465:1 1500:2 1506:1 1520:1 1556:2 1636:1 1647:1 1720:1 1785:1 1789:2 1842:4 1981:1 1993:1 2014:1 2043:2 2133:1 2137:1 2140:1 2147:1 2192:1 2242:1 2263:1 2300:2 2310:1 2315:1 2319:1 2322:1 2329:1 2361:2 2371:1 2393:2 2412:1 2432:7 2450:2 2506:2 2517:1 2557:4 2653:1 2662:1 2687:2 2717:1 2720:2 2728:2 2827:2 2847:1 2880:1 2952:2 3063:1 3066:2 3107:1 3182:1 3218:1 3230:1 3317:2 3330:1 3388:1 3442:1 3479:1 3949:1 3973:1 4058:1 4065:1 4066:1 4078:1 4089:2 4133:1 4185:2 4186:1 4307:1 4456:1 4717:1 4754:2 4757:1 4851:2 4922:2 4946:1 4992:1 5108:1 5121:1 5212:1 5268:1 5310:1 5455:1 5581:1 5648:1 5651:2 5719:1 5746:2 5783:1 5882:1 5912:1 6020:2 6127:1 6227:1 6242:1 6363:1 6555:1 6603:1 6613:1 6630:2 6645:1 6672:2 6763:1 6815:2 6826:1 6829:1 6832:1 6851:1 6923:1 6931:1 6938:1 7084:1 7239:5 7268:1 7302:1 7388:1 7421:1 7428:1 7429:1 7460:1 7468:1 7658:1 7870:1 7945:2 7996:1 8030:1 8033:1 8058:1 8289:1 8307:1 8329:1 8351:2 8359:1 8360:2 8378:1 8386:3 8569:1 8766:1 8841:1 8879:1 8889:1 8950:2 8976:2 8982:1 8984:1 8986:1 9134:1 9183:1 9220:5 9285:1 9296:1 9312:1 9417:1 9491:2 9652:1 9658:1 9685:1 9715:1 9725:1 9743:2 9932:1 10178:1 10206:1 10351:1 10372:3 10434:1 10450:4 10492:1 10678:1 10705:1 10784:1 10828:1 10860:7 10922:1 11034:1 11178:1 11185:1 11362:2 11467:1 11503:1 11574:1 11608:1 11661:2 11710:5 11863:2 11887:1 11896:1 11943:1 12026:1 12072:1 12145:1 12319:1 12327:1 12489:1 12574:1 12630:1 12646:1 12704:1 12706:2 12716:1 12745:1 12778:1 13034:1 13055:2 13086:1 13091:1 13098:1 13105:2 13209:1 13337:1 13387:2 13550:1 13674:2 13736:1 13762:1 14001:2 14082:1 14250:1 14301:4 14326:1 14328:2 14426:2 14467:1 14493:1 14523:1 14552:1 14557:1 14582:1 14662:1 14749:1 14752:1 14757:1 14847:2 14915:2 14936:1 14987:1 15026:1 15154:2 15338:1 15530:1 15535:1 15585:1 15604:7 15606:2 15663:1 15710:2 15715:1 15843:1 15852:1 15871:1 15951:1 16019:2 16153:1 16158:2 16169:1 16195:1 16196:1 16256:3 16259:2 16461:1 16539:2 16594:1 16732:1 16804:4 16838:1 16869:1 16919:1 16963:2 16982:1 17098:1 17145:1 17163:1 17236:1 17267:2 17291:1 17461:1 17514:2 17559:1 17561:1 17718:1 17828:1 17836:1 17848:1 17991:1 18114:1 18120:4 18369:1 18435:4 18472:2 18632:1 18648:1 18759:1 18783:1 18789:1 18833:1 18934:2 18984:1 18988:2 19021:1 19036:1 19054:1 19065:1 19072:1 19077:1 19124:1 19226:1 19266:1 19284:2 19401:2 19418:1 19443:1 19450:1 19472:2 19504:4 19511:1 19521:1 19571:1 19589:1 19671:1 19802:4 19847:1 19908:4 19980:7 20083:1 20268:7 20293:2 20328:506 20471:1 20531:1 20582:1 20662:1 20820:1 20915:1 20977:4 21021:1 21027:1 21044:1 21072:1 21156:1 21160:1 21262:1 21378:6 21425:2 21436:1 21464:1 21511:1 21523:1 21777:1 21798:1 21862:1 21868:1 21875:1 21879:1 21905:1 21936:1 21972:1 22062:1 22235:1 22287:1 22339:2 22381:2 22446:1 22450:4 22456:2 22512:1 22533:1 22655:3 22810:1 22815:1 22827:1 22870:1 22987:1 22988:1 23084:1 23169:1 23261:1 23276:1 23280:1 23303:1 23363:1 23462:1 23476:2 23511:2 23535:1 23571:1 23590:4 23723:1 23826:2 23973:1 24009:1 24023:1 24055:1 24078:1 24115:1 24163:1 24164:1 24233:2 24263:1 24276:1 24382:1 24383:2 24407:1 24450:2 24603:1 24613:2 24620:2 24701:3 24716:1 24727:1 24782:1 24795:2 24862:2 24945:1 24981:1 25019:2 25056:1 25091:3 25115:4 25148:2 25192:1 25266:1 25272:1 25280:2 25376:1 25391:1 25398:2 25410:1 25421:1 25470:1 25472:2 25525:2 25577:1 25630:1 25766:2 25781:1 25798:4 25919:2 26125:1 26147:2 26235:2 26248:1 26280:1 26288:2 26293:1 26389:2 26444:1 26552:1 26611:1 26631:1 26642:1 26781:1 26809:2 26821:2 27097:1 27104:2 27113:1 27163:1 27209:4 27253:1 27297:2 27302:1 27315:1 27352:1 27390:1 27466:1 27575:1 27604:1 27605:1 27662:1 27667:1 27685:2 27690:2 27718:2 27768:1 27817:2 27839:1 27851:1 28005:1 28072:1 28189:1 28217:1 28262:1 28307:1 28419:1 28474:1 28488:1 28540:5 28575:1 28728:1 28783:1 28792:1 28858:5 28911:1 28933:7 28977:1 29034:1 29126:1 29146:1 29239:1 29240:1 29314:1 29349:2 29387:1 29396:2 29413:1 29429:1 29457:4 29551:1 29602:1 29650:1 29684:1 29763:1 29866:1 29931:1 29935:1 30137:2 30162:1 30173:1 30184:1 30241:2 30279:1 30330:1 30334:1 30394:1 30396:4 30459:1 30468:1 30561:1 30586:1 30646:1 30760:2 30795:2 30902:1 30962:1 31037:1 31098:1 31184:2 31341:1 31427:2 31432:1 31446:1 31462:1 31478:2 31505:2 31615:2 18 6:1 14:1 123:1 188:4 214:1 237:1 269:2 283:1 323:1 358:1 548:1 603:1 618:1 628:1 632:1 646:1 656:1 694:1 704:1 756:1 767:2 782:1 795:1 924:2 950:1 970:1 1014:1 1202:1 1248:4 1279:1 1280:2 1281:1 1283:1 1316:2 1343:1 1351:1 1453:1 1454:1 1465:1 1500:2 1506:1 1520:1 1556:2 1636:1 1647:1 1706:1 1720:1 1785:1 1789:3 1842:4 1981:1 1985:1 1993:1 2014:1 2043:2 2073:1 2079:1 2133:1 2137:1 2140:2 2147:1 2192:1 2242:1 2263:1 2300:2 2310:1 2314:1 2315:1 2319:1 2322:1 2329:1 2361:2 2371:1 2374:1 2393:2 2412:1 2414:1 2432:7 2450:2 2506:3 2517:1 2543:1 2557:4 2649:1 2653:1 2662:1 2687:2 2701:1 2717:1 2720:2 2728:2 2827:2 2828:1 2847:1 2880:1 2952:2 3063:1 3066:2 3068:1 3107:1 3182:1 3218:1 3230:1 3317:2 3330:1 3388:1 3442:1 3479:1 3494:1 3545:1 3928:1 3949:2 3973:1 4010:1 4058:1 4065:1 4066:1 4078:1 4089:2 4133:1 4185:2 4186:1 4255:1 4260:1 4307:1 4456:1 4717:1 4754:2 4757:1 4803:1 4851:2 4917:1 4922:2 4946:1 4992:1 5002:1 5012:1 5080:1 5108:1 5121:1 5212:1 5268:2 5310:1 5314:1 5455:1 5474:1 5481:1 5581:2 5648:1 5651:2 5719:1 5746:2 5783:1 5882:1 5894:1 5912:1 5925:1 6000:1 6006:1 6020:2 6127:1 6227:1 6242:1 6363:1 6397:1 6555:1 6603:1 6612:1 6613:1 6630:2 6645:1 6672:2 6763:1 6815:2 6826:1 6829:1 6832:2 6851:1 6923:1 6931:1 6938:1 6942:1 7084:1 7239:5 7268:1 7302:1 7388:1 7421:1 7428:1 7429:1 7460:1 7463:1 7468:1 7532:1 7575:1 7651:1 7658:1 7870:1 7945:2 7979:1 7996:1 8030:1 8033:1 8058:2 8289:1 8307:1 8329:1 8351:2 8359:1 8360:2 8378:1 8386:4 8560:1 8569:1 8766:1 8841:1 8879:1 8889:2 8950:2 8976:2 8982:1 8984:1 8986:1 9134:1 9183:2 9220:5 9285:1 9296:1 9299:1 9300:1 9312:1 9417:1 9491:2 9652:1 9658:1 9685:1 9715:1 9725:1 9743:2 9910:1 9932:1 10178:1 10206:1 10351:1 10372:3 10434:1 10450:4 10492:1 10678:1 10705:1 10757:1 10784:1 10828:1 10860:7 10922:1 11034:1 11178:1 11185:1 11362:2 11467:2 11503:1 11574:1 11608:1 11661:2 11710:5 11863:2 11866:1 11886:1 11887:1 11896:1 11943:1 12026:1 12048:1 12072:1 12145:1 12319:1 12327:1 12489:1 12574:1 12630:1 12646:1 12704:1 12706:2 12716:1 12745:1 12778:1 13034:1 13055:2 13086:1 13091:1 13098:1 13105:2 13191:1 13209:1 13337:1 13387:2 13550:1 13674:2 13736:1 13762:1 13845:1 13855:1 14001:2 14082:1 14103:1 14236:1 14250:1 14301:4 14326:1 14328:2 14404:1 14426:2 14467:1 14482:1 14493:1 14523:1 14552:1 14557:1 14582:1 14662:1 14677:1 14749:1 14752:1 14757:1 14837:1 14847:2 14915:2 14936:1 14987:1 15026:1 15154:2 15210:1 15338:1 15512:1 15530:1 15535:1 15553:1 15585:1 15604:7 15606:2 15659:1 15663:1 15710:2 15715:1 15764:1 15843:1 15852:1 15871:1 15951:1 16019:2 16153:1 16158:2 16169:1 16195:1 16196:1 16256:4 16259:2 16461:1 16539:2 16594:1 16732:1 16804:4 16838:1 16869:1 16890:1 16919:1 16963:2 16982:1 17098:1 17107:1 17145:1 17163:1 17236:1 17267:2 17291:1 17302:1 17345:1 17373:1 17461:1 17482:1 17514:2 17559:1 17561:1 17718:1 17828:1 17836:1 17848:1 17991:1 18114:1 18120:4 18344:1 18369:1 18435:4 18472:2 18632:1 18648:1 18743:1 18759:1 18783:1 18789:1 18833:1 18934:2 18984:1 18988:2 19004:1 19008:1 19021:1 19035:1 19036:1 19054:1 19065:1 19072:1 19077:1 19124:1 19226:1 19266:1 19284:2 19401:2 19418:1 19443:1 19450:1 19472:2 19504:4 19511:1 19521:1 19571:1 19589:1 19671:1 19802:4 19847:1 19875:1 19908:4 19980:7 20083:1 20179:1 20268:7 20293:2 20328:660 20407:1 20471:1 20531:1 20582:1 20662:1 20820:1 20915:1 20977:4 21021:1 21027:1 21044:1 21049:1 21072:1 21146:1 21156:1 21160:1 21262:1 21276:1 21350:1 21378:7 21425:3 21436:1 21464:1 21511:1 21523:1 21580:1 21777:1 21798:1 21832:1 21862:1 21868:1 21875:1 21879:1 21905:1 21936:1 21972:1 22010:1 22062:1 22068:1 22149:1 22235:1 22287:1 22339:2 22381:2 22446:1 22450:4 22456:2 22512:1 22533:1 22604:1 22655:4 22810:1 22815:1 22827:1 22870:1 22902:1 22987:1 22988:1 22992:1 23084:1 23169:1 23261:1 23276:1 23280:1 23303:1 23363:1 23462:1 23476:2 23511:2 23535:1 23571:1 23573:1 23590:4 23723:1 23826:2 23973:1 24009:1 24023:1 24055:1 24078:1 24115:1 24163:1 24164:1 24233:2 24263:2 24276:1 24283:1 24327:1 24360:1 24382:1 24383:2 24407:1 24450:2 24495:1 24586:1 24603:1 24613:2 24618:1 24620:2 24627:1 24663:1 24701:4 24716:1 24727:1 24772:1 24777:1 24782:1 24787:1 24795:2 24862:2 24945:1 24981:1 25019:2 25044:1 25056:1 25091:3 25115:4 25148:3 25192:1 25215:1 25253:1 25266:1 25271:1 25272:1 25280:2 25376:1 25391:1 25398:2 25410:1 25421:1 25470:1 25472:2 25525:2 25577:1 25630:1 25655:1 25766:2 25781:1 25798:4 25835:1 25919:2 26125:1 26147:2 26154:1 26235:2 26248:1 26280:1 26288:2 26293:1 26389:2 26438:1 26444:1 26552:1 26608:1 26611:1 26631:1 26642:1 26781:1 26809:2 26821:2 27052:1 27097:1 27104:2 27113:1 27163:1 27209:4 27253:1 27297:2 27302:1 27315:1 27352:1 27390:1 27466:1 27575:1 27604:1 27605:1 27662:1 27667:1 27685:2 27690:2 27718:2 27768:1 27817:2 27839:1 27851:1 27892:1 28005:1 28040:1 28072:1 28084:1 28128:1 28160:1 28189:1 28217:1 28262:1 28307:1 28419:1 28474:1 28488:1 28540:5 28575:1 28728:1 28783:1 28792:1 28858:5 28911:1 28916:1 28933:7 28977:1 29034:1 29078:1 29126:1 29146:1 29239:1 29240:1 29272:1 29292:1 29314:1 29349:2 29387:1 29396:2 29413:1 29429:1 29457:4 29551:1 29602:1 29650:1 29675:1 29684:1 29763:1 29855:1 29866:1 29901:1 29930:1 29931:1 29935:1 30003:1 30123:1 30137:4 30162:1 30173:1 30183:1 30184:1 30241:2 30277:1 30279:1 30330:1 30334:1 30394:1 30396:4 30447:1 30459:1 30468:1 30561:1 30586:1 30646:1 30760:2 30795:2 30815:1 30902:1 30962:1 31037:1 31098:1 31184:2 31341:1 31427:2 31432:1 31446:1 31462:1 31478:2 31505:2 31507:1 31615:2 18 6:1 14:1 123:1 188:4 214:1 216:1 237:1 269:2 283:1 323:1 358:1 538:1 548:1 603:1 618:1 628:1 632:1 646:1 656:1 694:1 704:1 756:1 767:2 782:1 795:1 924:2 949:1 950:1 970:1 1014:1 1130:1 1202:1 1248:4 1279:1 1280:2 1281:1 1283:1 1295:1 1316:2 1343:1 1351:1 1434:1 1453:1 1454:1 1465:1 1500:2 1506:1 1520:1 1556:2 1633:1 1636:1 1647:1 1706:1 1720:1 1785:1 1789:3 1842:4 1885:1 1981:1 1985:1 1993:1 2014:1 2043:2 2073:1 2079:1 2131:1 2133:1 2137:1 2140:3 2147:1 2192:1 2242:1 2263:1 2273:1 2300:2 2310:1 2314:1 2315:1 2319:1 2322:1 2329:1 2361:2 2371:1 2374:1 2375:1 2393:2 2412:1 2414:1 2432:8 2450:2 2506:3 2517:1 2543:1 2557:4 2649:1 2653:1 2662:1 2687:2 2699:1 2701:1 2717:1 2720:2 2728:2 2827:2 2828:1 2847:1 2880:1 2952:2 3063:2 3066:2 3068:1 3107:1 3182:1 3218:1 3226:1 3230:1 3317:2 3330:1 3388:1 3442:1 3479:1 3494:1 3545:1 3928:1 3949:2 3973:1 4010:1 4058:1 4065:1 4066:1 4078:1 4089:2 4133:1 4185:2 4186:1 4255:1 4260:1 4307:1 4348:1 4431:1 4456:1 4531:1 4717:1 4754:2 4757:1 4803:1 4851:2 4917:1 4922:2 4946:1 4992:1 5002:1 5012:1 5080:1 5108:1 5121:1 5136:1 5212:1 5268:2 5310:4 5314:1 5455:1 5474:1 5481:1 5567:1 5581:2 5648:1 5651:2 5719:1 5746:2 5783:1 5882:1 5894:1 5912:1 5925:1 6000:1 6006:1 6020:2 6127:1 6227:1 6242:1 6363:1 6397:1 6555:1 6590:1 6603:1 6612:1 6613:2 6630:2 6645:1 6672:2 6763:1 6815:2 6826:1 6829:1 6832:2 6851:1 6923:1 6931:1 6938:1 6942:1 7084:1 7239:5 7268:1 7302:1 7388:1 7421:1 7428:1 7429:1 7460:1 7463:1 7468:1 7532:1 7561:1 7575:1 7584:1 7651:1 7658:1 7750:1 7779:1 7870:1 7945:2 7979:1 7996:1 8030:1 8033:1 8058:3 8179:1 8289:1 8307:1 8329:1 8333:2 8351:2 8359:1 8360:2 8364:1 8378:1 8386:5 8452:1 8560:1 8569:1 8766:1 8841:1 8879:1 8889:2 8921:1 8950:2 8976:2 8982:1 8984:1 8986:1 9134:1 9183:3 9220:5 9285:1 9296:1 9299:1 9300:1 9304:1 9312:1 9417:1 9491:2 9652:1 9658:1 9675:1 9685:1 9715:1 9725:1 9743:2 9815:1 9850:1 9910:1 9932:1 10048:1 10178:1 10206:1 10214:1 10257:1 10351:1 10372:3 10434:1 10450:4 10492:1 10608:1 10678:1 10705:1 10757:1 10784:1 10828:1 10860:8 10922:1 10989:1 11034:1 11178:1 11185:1 11203:1 11209:1 11257:1 11295:1 11304:2 11362:2 11467:3 11503:1 11515:1 11557:1 11574:2 11608:1 11655:1 11661:2 11710:5 11863:2 11866:1 11886:1 11887:1 11896:1 11943:1 12026:1 12048:1 12072:1 12088:1 12145:1 12319:1 12327:1 12420:1 12489:1 12574:1 12595:1 12630:1 12646:2 12665:1 12680:1 12704:1 12706:2 12716:1 12745:1 12778:1 13034:1 13055:2 13086:1 13091:1 13098:1 13105:2 13191:1 13209:1 13337:1 13387:2 13550:1 13674:2 13736:1 13762:2 13845:1 13855:1 13993:1 14001:2 14082:1 14103:1 14204:1 14236:1 14250:1 14301:4 14314:1 14326:1 14328:2 14404:1 14426:2 14467:1 14482:2 14493:1 14523:1 14552:1 14557:1 14582:1 14662:1 14677:1 14749:1 14752:1 14757:1 14837:1 14847:2 14915:2 14936:1 14987:1 15026:1 15035:1 15078:1 15154:2 15210:1 15338:1 15512:1 15528:1 15530:1 15535:1 15553:1 15585:1 15604:8 15606:2 15659:1 15663:1 15710:2 15715:1 15764:1 15843:1 15852:1 15871:1 15951:1 16006:1 16019:2 16153:1 16158:2 16169:1 16195:1 16196:1 16256:4 16259:2 16461:1 16524:1 16539:2 16594:1 16732:1 16804:4 16838:1 16869:1 16890:1 16919:1 16963:2 16982:1 16995:1 17098:1 17107:1 17145:1 17163:1 17200:1 17236:1 17267:2 17291:1 17302:2 17345:1 17373:1 17461:1 17482:1 17514:2 17559:1 17561:1 17584:1 17717:1 17718:1 17828:1 17836:1 17848:1 17882:1 17991:1 18114:1 18120:4 18247:1 18344:1 18369:1 18373:1 18435:4 18472:2 18632:1 18648:2 18728:2 18743:1 18759:1 18783:1 18789:1 18833:1 18910:1 18934:2 18984:1 18988:2 19004:1 19008:1 19021:2 19035:1 19036:1 19054:1 19065:1 19072:1 19077:1 19124:1 19176:1 19226:1 19266:1 19284:2 19387:1 19401:2 19418:1 19443:1 19450:1 19460:1 19472:2 19504:4 19511:1 19521:1 19522:1 19571:1 19589:1 19671:1 19802:4 19847:1 19875:1 19908:4 19980:8 20083:1 20179:1 20268:8 20271:1 20293:2 20328:746 20407:1 20471:1 20529:1 20531:1 20565:1 20578:1 20582:1 20662:1 20820:1 20915:1 20977:4 21021:1 21027:1 21044:1 21049:1 21072:1 21079:1 21140:1 21146:2 21156:1 21160:1 21237:1 21262:1 21276:1 21299:1 21350:1 21378:7 21391:1 21425:3 21436:1 21464:1 21511:1 21523:1 21580:1 21761:1 21777:1 21798:1 21832:1 21862:1 21868:1 21875:1 21879:1 21905:1 21936:1 21972:1 22010:1 22036:1 22062:1 22068:1 22149:1 22235:2 22287:1 22325:1 22339:2 22381:2 22446:1 22450:4 22456:2 22512:1 22513:1 22533:1 22577:1 22604:1 22655:4 22786:1 22810:1 22815:1 22827:1 22838:1 22870:1 22902:1 22987:1 22988:1 22992:1 23084:2 23169:1 23261:1 23276:1 23280:1 23303:1 23349:1 23363:1 23422:1 23462:1 23476:2 23511:2 23535:1 23571:1 23573:1 23590:4 23662:1 23723:1 23763:1 23803:1 23826:2 23836:1 23958:1 23973:1 24009:1 24023:1 24055:1 24057:1 24078:1 24115:1 24159:1 24163:1 24164:1 24183:1 24233:2 24263:2 24276:1 24283:1 24327:1 24358:1 24360:1 24382:1 24383:2 24407:1 24450:2 24495:1 24586:1 24603:1 24613:2 24618:1 24620:2 24627:1 24663:1 24701:4 24716:1 24727:1 24772:1 24777:1 24782:1 24787:1 24795:2 24862:2 24945:1 24981:1 25019:2 25033:1 25044:1 25056:1 25091:3 25115:4 25148:3 25192:1 25215:1 25253:1 25266:1 25271:1 25272:1 25280:2 25352:1 25376:1 25391:1 25398:2 25410:1 25421:1 25470:1 25472:2 25525:2 25556:1 25577:1 25630:1 25655:1 25766:2 25781:1 25798:4 25835:1 25844:1 25907:1 25919:2 25995:1 26125:1 26147:2 26154:1 26235:2 26248:1 26280:1 26288:2 26293:1 26305:1 26389:2 26438:1 26444:1 26552:1 26608:1 26611:1 26630:1 26631:1 26642:1 26781:1 26809:2 26821:2 26915:1 27037:1 27052:1 27097:1 27104:2 27113:1 27138:1 27163:1 27209:4 27216:1 27253:1 27297:2 27302:1 27315:1 27352:1 27390:1 27466:1 27575:1 27604:1 27605:1 27662:1 27667:1 27685:2 27690:2 27718:2 27737:1 27768:1 27817:2 27822:1 27839:1 27851:1 27892:1 28005:1 28040:1 28072:1 28084:1 28128:1 28160:1 28189:1 28217:1 28262:1 28307:1 28419:1 28474:1 28488:1 28540:5 28575:1 28728:1 28755:1 28783:1 28792:1 28858:5 28911:1 28916:1 28933:8 28977:1 29034:1 29078:1 29126:1 29146:1 29239:1 29240:1 29272:1 29292:1 29314:1 29349:2 29387:1 29396:2 29413:1 29429:1 29457:4 29519:1 29551:1 29557:1 29602:1 29650:1 29652:1 29664:1 29675:1 29684:1 29763:1 29855:1 29866:1 29901:1 29930:1 29931:1 29935:1 30003:1 30123:1 30137:5 30145:1 30162:1 30173:1 30180:1 30183:1 30184:1 30241:2 30263:1 30277:1 30279:1 30330:1 30334:1 30394:1 30396:4 30438:1 30447:1 30459:1 30468:1 30561:1 30586:1 30646:1 30760:2 30795:2 30815:1 30898:1 30902:1 30962:1 31037:2 31098:2 31184:2 31341:1 31378:1 31407:1 31427:2 31432:1 31446:1 31462:1 31478:2 31497:1 31505:2 31507:1 31615:2 18 6:1 14:1 55:1 123:1 188:4 214:1 216:1 237:1 269:2 273:1 283:1 323:2 358:1 538:1 548:1 603:1 618:1 628:1 632:1 646:1 656:1 694:1 704:1 748:1 756:1 767:2 782:1 795:1 924:2 949:1 950:1 970:1 1014:1 1130:1 1202:1 1248:4 1279:1 1280:2 1281:1 1283:2 1295:1 1316:2 1343:1 1351:1 1434:1 1447:1 1453:1 1454:1 1465:1 1500:2 1506:1 1520:1 1556:2 1633:1 1636:1 1647:1 1706:1 1720:1 1723:1 1785:1 1789:3 1842:4 1885:1 1981:1 1985:1 1993:1 2014:1 2043:2 2073:1 2079:1 2131:1 2133:1 2137:1 2140:3 2147:1 2169:1 2192:1 2242:1 2263:1 2273:1 2290:1 2300:2 2310:1 2314:1 2315:1 2319:2 2322:1 2329:1 2361:2 2371:1 2374:1 2375:1 2393:2 2412:1 2414:1 2432:9 2450:2 2506:4 2517:1 2541:1 2543:1 2557:4 2649:1 2653:1 2662:1 2687:2 2699:1 2701:1 2717:1 2718:1 2720:2 2728:2 2827:2 2828:1 2847:1 2880:1 2952:2 2964:1 3063:2 3066:3 3068:1 3107:1 3119:1 3182:1 3218:1 3226:1 3230:1 3317:2 3330:2 3388:1 3442:1 3447:1 3479:1 3494:1 3528:1 3545:1 3928:1 3949:2 3973:1 4010:1 4019:1 4058:1 4065:1 4066:1 4078:1 4089:2 4133:1 4185:2 4186:1 4197:1 4255:1 4260:1 4307:1 4313:1 4328:1 4348:1 4431:1 4456:1 4531:1 4560:1 4717:1 4754:2 4757:1 4803:1 4851:2 4917:1 4922:2 4946:2 4969:1 4992:1 5002:1 5012:1 5080:1 5108:1 5121:1 5136:1 5204:1 5212:1 5268:2 5310:4 5314:1 5423:1 5455:1 5474:1 5481:1 5567:1 5581:2 5622:1 5648:1 5651:2 5719:1 5746:2 5783:1 5800:1 5882:1 5894:1 5912:1 5919:1 5925:1 5975:1 6000:1 6006:1 6020:2 6049:1 6127:1 6227:1 6242:1 6363:2 6397:1 6555:1 6590:1 6603:1 6612:1 6613:2 6630:2 6645:1 6672:2 6763:2 6815:3 6826:1 6829:1 6832:2 6851:1 6923:1 6931:1 6932:1 6938:1 6942:1 7084:1 7093:1 7239:5 7268:1 7302:1 7388:1 7421:1 7428:1 7429:1 7460:1 7463:1 7468:1 7532:1 7561:1 7575:1 7584:1 7651:1 7658:1 7694:1 7750:1 7779:1 7870:1 7945:2 7979:1 7996:1 8030:1 8033:2 8058:3 8179:1 8289:1 8307:1 8329:1 8333:2 8351:2 8359:1 8360:2 8364:1 8372:1 8378:1 8386:5 8410:1 8452:1 8560:1 8569:1 8710:1 8766:1 8819:1 8841:1 8879:1 8889:2 8921:2 8950:2 8976:2 8982:1 8984:1 8986:1 9134:1 9183:3 9220:5 9285:1 9296:1 9299:1 9300:1 9304:1 9312:1 9417:1 9491:2 9652:1 9658:1 9675:1 9685:1 9715:1 9725:1 9743:2 9785:1 9815:2 9850:1 9910:1 9932:1 10048:1 10178:1 10206:1 10214:1 10257:1 10351:1 10372:3 10434:1 10450:4 10492:1 10516:1 10608:1 10655:1 10678:1 10705:1 10751:1 10757:1 10784:1 10822:1 10828:1 10860:9 10922:1 10971:1 10989:1 11034:1 11178:1 11185:1 11203:1 11209:1 11257:1 11295:2 11304:2 11362:2 11404:1 11467:3 11486:1 11503:1 11515:1 11557:1 11574:2 11608:1 11655:1 11661:2 11710:5 11863:2 11866:1 11883:1 11886:2 11887:1 11888:1 11893:1 11896:1 11943:1 12026:1 12042:1 12048:1 12072:1 12088:1 12145:1 12220:1 12319:1 12327:1 12373:1 12420:1 12489:1 12574:1 12595:1 12630:1 12646:2 12665:1 12680:1 12704:1 12706:2 12716:1 12739:1 12745:1 12778:1 12983:1 13034:1 13055:2 13086:1 13091:1 13098:1 13105:2 13191:1 13209:1 13337:1 13369:1 13387:2 13550:1 13674:2 13736:1 13762:2 13794:1 13845:1 13855:1 13993:1 14001:2 14082:1 14103:1 14204:1 14236:1 14250:1 14301:4 14314:1 14326:1 14328:2 14404:1 14426:2 14467:1 14482:2 14493:1 14523:1 14552:1 14557:1 14582:1 14662:1 14677:1 14749:1 14752:1 14757:1 14837:1 14847:2 14890:1 14915:3 14936:1 14987:1 15026:1 15035:1 15078:1 15154:2 15210:1 15338:1 15455:1 15512:1 15528:1 15530:1 15535:1 15553:1 15585:1 15604:9 15606:2 15659:1 15663:1 15710:2 15715:1 15764:1 15843:1 15852:1 15871:1 15925:1 15951:1 16006:1 16019:2 16153:1 16158:2 16169:1 16195:1 16196:1 16201:1 16255:1 16256:4 16259:2 16332:1 16461:1 16524:1 16539:2 16594:1 16709:1 16732:1 16804:4 16838:1 16869:1 16890:1 16919:1 16963:2 16982:1 16995:1 17098:1 17107:1 17145:1 17163:1 17200:1 17236:1 17267:2 17291:1 17302:2 17345:1 17373:1 17461:2 17482:1 17514:2 17559:1 17561:1 17584:1 17610:1 17700:1 17717:1 17718:1 17802:1 17828:1 17836:1 17848:1 17882:1 17991:1 18045:1 18114:1 18120:4 18174:1 18247:1 18344:1 18369:1 18373:1 18425:1 18435:4 18472:2 18632:1 18648:2 18728:2 18743:1 18759:1 18783:2 18789:1 18833:1 18910:1 18934:2 18984:1 18988:2 19004:1 19008:1 19021:2 19035:1 19036:1 19054:1 19065:1 19072:1 19077:1 19124:1 19176:1 19226:1 19266:1 19284:2 19297:1 19372:1 19387:1 19401:2 19418:1 19443:1 19450:1 19460:1 19472:2 19504:4 19511:1 19521:1 19522:1 19571:1 19589:1 19670:1 19671:1 19757:1 19802:4 19847:1 19875:1 19908:4 19980:9 20083:1 20129:1 20179:1 20268:9 20271:1 20293:2 20328:842 20407:1 20471:1 20529:1 20531:1 20557:1 20565:1 20578:1 20582:1 20662:1 20820:1 20828:1 20915:1 20977:4 21021:1 21027:1 21044:1 21049:1 21072:1 21079:1 21140:1 21146:2 21156:1 21160:1 21237:1 21262:2 21276:1 21299:1 21308:1 21309:1 21350:1 21378:7 21391:1 21425:3 21436:1 21464:1 21511:1 21523:1 21524:1 21580:1 21590:1 21753:1 21761:1 21777:1 21798:1 21832:1 21862:1 21868:1 21875:1 21879:1 21905:1 21936:1 21972:1 22010:1 22036:1 22045:1 22062:1 22068:1 22117:1 22149:1 22235:2 22287:1 22325:1 22339:2 22381:2 22446:1 22450:4 22456:2 22512:1 22513:1 22533:1 22577:1 22604:1 22622:1 22655:5 22716:1 22786:1 22810:1 22815:1 22827:1 22838:1 22870:1 22902:1 22987:1 22988:2 22992:1 23078:1 23084:3 23147:1 23169:1 23248:1 23261:1 23276:1 23280:1 23303:1 23346:1 23349:1 23363:1 23422:1 23462:1 23476:2 23511:2 23535:1 23571:1 23573:1 23590:4 23662:1 23723:1 23763:1 23803:1 23826:2 23836:1 23958:1 23973:1 24009:1 24023:1 24055:1 24057:1 24078:1 24115:1 24159:1 24163:1 24164:1 24183:1 24233:2 24254:1 24263:2 24276:1 24283:1 24319:1 24327:1 24358:1 24360:1 24382:1 24383:2 24407:1 24450:2 24495:1 24572:1 24583:1 24586:1 24603:1 24613:2 24618:1 24620:2 24627:1 24663:1 24701:4 24716:1 24727:1 24772:1 24777:1 24782:1 24787:1 24795:2 24862:2 24945:1 24981:1 25019:2 25033:1 25044:1 25056:2 25091:3 25115:4 25148:3 25192:1 25202:1 25215:1 25253:1 25266:1 25271:1 25272:1 25280:2 25352:1 25376:1 25391:1 25398:2 25410:1 25421:1 25470:1 25472:2 25525:2 25556:1 25577:1 25630:2 25655:1 25766:2 25781:1 25798:4 25835:1 25844:1 25907:1 25919:2 25927:1 25995:1 26125:2 26147:2 26154:1 26235:2 26248:1 26280:1 26288:2 26293:1 26305:1 26389:2 26438:1 26444:1 26552:1 26563:1 26589:1 26607:1 26608:1 26611:1 26630:1 26631:1 26642:1 26781:2 26809:2 26821:2 26915:1 27037:1 27052:1 27097:1 27104:2 27113:1 27138:1 27163:1 27209:4 27216:1 27247:1 27253:1 27297:2 27302:1 27315:1 27352:1 27390:1 27466:1 27575:1 27604:1 27605:1 27662:1 27667:1 27685:2 27690:2 27718:2 27737:1 27768:1 27817:2 27822:1 27839:1 27851:2 27892:1 28005:1 28040:1 28072:1 28084:1 28128:1 28160:1 28189:1 28217:1 28262:1 28307:1 28419:1 28474:1 28488:1 28540:5 28561:1 28575:1 28728:1 28755:1 28764:1 28783:1 28792:1 28843:1 28858:5 28911:1 28916:1 28933:9 28961:1 28977:1 29024:1 29034:2 29078:1 29126:1 29146:1 29239:1 29240:1 29268:1 29272:1 29292:1 29314:1 29349:2 29387:1 29396:2 29413:1 29429:1 29457:4 29519:1 29551:1 29557:1 29560:1 29602:1 29650:1 29652:2 29664:1 29675:1 29684:1 29762:1 29763:1 29855:1 29866:1 29901:1 29930:1 29931:1 29935:1 30003:1 30036:1 30123:1 30137:5 30145:1 30162:1 30173:1 30180:1 30183:1 30184:1 30241:2 30253:1 30263:1 30277:1 30279:1 30330:1 30334:1 30394:1 30396:4 30438:1 30447:1 30459:1 30468:1 30551:1 30561:1 30580:1 30586:1 30646:1 30760:2 30795:2 30815:1 30854:1 30898:1 30902:1 30962:1 31032:1 31037:2 31098:2 31184:2 31258:1 31341:1 31378:1 31407:1 31427:2 31432:1 31446:1 31462:1 31478:2 31497:1 31505:2 31507:1 31550:1 31615:2 18 6:1 14:1 55:1 123:1 188:4 214:1 216:1 237:2 269:2 273:1 283:1 323:2 358:1 538:1 548:1 603:1 618:1 628:1 632:1 646:1 656:1 683:1 694:1 704:1 748:1 756:1 767:2 782:1 795:1 924:3 949:1 950:1 970:1 1014:1 1130:1 1167:1 1202:1 1248:4 1279:1 1280:2 1281:1 1283:2 1295:1 1316:2 1343:1 1351:1 1434:1 1447:1 1453:1 1454:1 1461:1 1465:1 1500:2 1506:1 1520:1 1556:2 1562:1 1633:2 1636:1 1647:1 1706:1 1720:1 1723:1 1785:1 1789:3 1842:4 1885:1 1960:1 1981:1 1985:1 1993:2 2014:1 2043:2 2073:1 2079:1 2131:1 2133:1 2137:1 2140:3 2147:1 2169:1 2183:1 2192:1 2242:1 2263:1 2273:1 2290:1 2300:3 2310:1 2314:1 2315:1 2319:2 2322:1 2329:1 2361:2 2369:1 2371:1 2374:1 2375:1 2381:1 2393:2 2397:2 2412:1 2414:2 2432:9 2450:2 2506:4 2517:1 2541:1 2543:1 2557:4 2621:1 2649:1 2653:1 2662:1 2687:2 2699:1 2701:1 2717:1 2718:1 2720:2 2728:2 2737:1 2820:1 2827:2 2828:1 2847:1 2880:1 2896:1 2952:2 2964:1 3063:2 3066:3 3068:1 3107:1 3119:1 3182:1 3218:1 3226:1 3230:1 3317:2 3330:3 3388:1 3442:1 3447:1 3479:1 3494:1 3528:1 3545:1 3719:1 3928:1 3949:2 3973:1 4010:1 4019:1 4058:1 4065:1 4066:1 4078:1 4086:1 4089:2 4133:1 4185:2 4186:1 4197:1 4255:1 4260:1 4289:1 4307:2 4313:1 4328:1 4348:1 4354:1 4376:1 4419:1 4431:1 4456:1 4531:1 4560:1 4717:1 4754:2 4757:1 4803:1 4851:2 4917:1 4922:2 4946:2 4969:1 4992:1 5002:1 5012:1 5080:1 5108:1 5121:1 5136:1 5154:1 5204:1 5212:1 5245:1 5268:2 5310:5 5314:1 5335:1 5423:1 5440:1 5455:1 5474:1 5481:1 5567:1 5581:2 5622:1 5648:1 5651:2 5719:1 5746:2 5779:1 5783:1 5790:1 5800:1 5859:2 5882:1 5894:1 5912:1 5919:1 5925:1 5975:1 6000:1 6006:1 6020:2 6049:1 6127:1 6227:1 6242:1 6294:1 6363:2 6397:1 6555:1 6590:2 6603:1 6612:1 6613:2 6630:2 6645:1 6672:2 6721:1 6763:2 6815:3 6826:2 6829:1 6832:2 6851:1 6923:1 6931:1 6932:1 6938:1 6942:1 7084:1 7093:1 7113:2 7239:5 7268:1 7302:1 7388:1 7421:1 7428:2 7429:1 7460:1 7463:1 7468:1 7532:1 7560:2 7561:1 7575:1 7584:1 7651:1 7658:1 7694:1 7750:1 7779:1 7870:1 7945:2 7979:1 7996:1 8030:1 8033:2 8058:3 8179:1 8258:1 8289:1 8307:1 8329:1 8333:2 8351:2 8359:1 8360:2 8364:1 8372:1 8378:1 8386:8 8410:1 8452:1 8560:1 8569:1 8592:1 8710:1 8766:1 8819:1 8841:1 8879:1 8889:2 8921:3 8950:2 8976:2 8982:1 8984:1 8986:1 9134:1 9183:3 9220:5 9285:1 9296:1 9299:1 9300:1 9304:1 9312:1 9417:1 9491:2 9514:2 9652:1 9658:1 9675:1 9685:1 9715:1 9725:1 9743:2 9785:1 9815:2 9850:1 9910:1 9932:1 10048:1 10178:1 10206:1 10214:1 10251:1 10257:1 10351:1 10372:3 10434:1 10450:4 10492:1 10516:1 10608:1 10655:1 10678:1 10705:1 10751:1 10757:1 10777:1 10784:1 10800:1 10822:1 10828:1 10860:9 10922:1 10971:1 10989:1 11034:1 11114:2 11178:1 11185:1 11203:1 11209:1 11257:1 11295:2 11304:2 11362:2 11404:1 11467:3 11486:1 11503:1 11515:1 11557:2 11574:2 11591:1 11608:1 11655:1 11661:2 11710:5 11730:1 11863:2 11866:1 11883:1 11886:2 11887:1 11888:1 11893:1 11896:1 11943:1 12026:1 12042:1 12048:1 12072:1 12088:1 12145:1 12220:1 12319:1 12327:1 12373:1 12420:1 12489:1 12574:1 12583:1 12595:1 12630:1 12646:2 12665:1 12677:1 12680:1 12704:1 12706:2 12716:1 12730:1 12735:1 12739:1 12745:1 12778:1 12838:1 12884:1 12983:1 13034:1 13055:2 13086:1 13091:1 13098:1 13105:2 13191:1 13209:1 13232:1 13337:1 13369:1 13387:2 13550:1 13674:2 13703:1 13736:1 13762:2 13794:1 13845:1 13855:1 13987:1 13993:1 14001:2 14082:1 14103:1 14204:1 14236:1 14250:1 14274:1 14301:4 14314:1 14326:1 14328:2 14395:1 14404:1 14426:2 14467:1 14482:2 14493:1 14523:1 14552:1 14557:1 14582:1 14662:1 14677:1 14749:1 14752:1 14757:1 14804:1 14837:1 14847:2 14890:1 14915:3 14936:1 14987:1 15026:1 15035:1 15078:1 15114:1 15154:2 15210:1 15338:1 15438:2 15455:1 15512:1 15528:1 15530:1 15535:1 15553:1 15585:1 15604:9 15606:2 15659:1 15663:1 15710:2 15715:1 15764:1 15843:1 15852:1 15871:1 15925:1 15951:1 16006:1 16019:2 16130:1 16153:1 16158:2 16169:1 16195:1 16196:1 16201:2 16255:1 16256:4 16259:2 16332:1 16335:1 16375:1 16461:1 16506:1 16524:1 16539:2 16594:1 16709:1 16732:1 16804:5 16817:1 16825:1 16838:1 16869:1 16890:1 16919:1 16963:2 16982:1 16995:1 17098:1 17107:1 17127:1 17145:1 17163:1 17200:1 17236:1 17267:2 17291:1 17302:2 17345:1 17373:1 17461:2 17482:1 17514:2 17521:1 17559:1 17561:1 17584:1 17604:1 17610:1 17700:1 17717:1 17718:1 17802:1 17828:1 17835:1 17836:1 17848:1 17882:1 17991:1 18045:1 18114:1 18120:4 18174:1 18247:1 18344:1 18369:1 18373:1 18425:1 18435:5 18457:1 18472:2 18632:1 18648:2 18728:2 18743:1 18759:1 18783:2 18789:1 18833:1 18910:1 18934:2 18984:2 18988:2 19004:1 19008:1 19021:2 19035:1 19036:1 19054:1 19065:1 19072:1 19077:1 19113:1 19124:1 19132:1 19176:1 19226:1 19234:1 19266:1 19284:2 19297:1 19372:1 19387:1 19401:2 19418:1 19443:1 19450:1 19460:1 19472:2 19504:4 19511:1 19521:1 19522:1 19558:1 19571:1 19589:1 19670:1 19671:1 19757:1 19802:4 19847:1 19875:1 19908:4 19980:9 20083:1 20110:1 20129:1 20179:1 20268:9 20271:1 20293:2 20328:969 20407:1 20471:1 20497:2 20529:1 20531:1 20557:1 20565:1 20578:1 20582:1 20596:1 20662:1 20820:1 20828:1 20915:1 20977:4 21021:1 21027:1 21044:1 21049:1 21072:1 21079:1 21140:1 21146:2 21156:1 21160:2 21237:2 21262:3 21276:1 21298:1 21299:1 21308:1 21309:1 21350:1 21378:8 21391:1 21425:3 21436:2 21464:1 21511:1 21523:1 21524:2 21580:1 21590:1 21747:1 21753:1 21761:1 21777:1 21798:2 21832:1 21862:1 21868:1 21875:1 21879:1 21905:1 21936:1 21972:1 22010:1 22036:1 22045:1 22062:1 22068:1 22117:1 22149:1 22235:2 22287:1 22288:1 22325:1 22339:2 22381:2 22446:1 22450:4 22456:2 22512:1 22513:1 22533:1 22577:1 22604:1 22622:1 22635:1 22655:5 22716:1 22786:1 22810:1 22815:1 22827:1 22838:1 22870:1 22902:1 22939:1 22987:1 22988:2 22992:1 23078:1 23084:3 23116:1 23147:1 23169:1 23248:1 23257:1 23261:2 23276:1 23280:1 23303:1 23322:1 23346:1 23349:1 23363:1 23392:1 23422:1 23462:2 23476:2 23511:2 23535:1 23571:1 23573:1 23590:4 23662:1 23723:1 23744:1 23763:1 23803:1 23826:2 23836:1 23921:2 23958:1 23973:1 24009:1 24023:1 24055:1 24057:1 24078:1 24115:1 24159:1 24163:1 24164:1 24174:1 24183:1 24233:2 24254:1 24263:2 24276:1 24283:1 24319:1 24327:1 24358:1 24360:1 24382:1 24383:2 24407:1 24450:2 24475:1 24495:1 24572:1 24583:1 24586:1 24603:1 24613:2 24618:1 24620:2 24627:1 24633:1 24663:1 24701:4 24716:1 24727:1 24772:1 24777:1 24782:1 24787:1 24795:2 24862:2 24945:1 24981:1 25019:2 25033:1 25044:1 25056:3 25091:3 25115:4 25148:3 25191:1 25192:1 25202:1 25215:1 25253:1 25266:1 25271:1 25272:1 25280:2 25323:1 25352:1 25376:1 25391:1 25398:2 25410:1 25421:1 25450:1 25470:1 25472:2 25476:1 25525:2 25556:1 25577:1 25630:2 25655:1 25766:2 25781:1 25798:4 25835:1 25844:1 25907:1 25919:2 25927:1 25995:1 26058:1 26125:2 26133:1 26139:1 26147:2 26154:1 26235:2 26248:1 26280:1 26288:2 26293:1 26305:2 26389:2 26438:1 26444:1 26552:1 26563:1 26589:1 26592:1 26607:1 26608:1 26611:1 26630:1 26631:1 26642:1 26769:1 26781:2 26809:2 26821:2 26915:1 27037:1 27052:1 27088:1 27097:1 27104:2 27113:1 27138:1 27163:1 27209:4 27216:1 27247:1 27253:1 27297:2 27302:1 27315:1 27352:1 27390:1 27426:1 27466:1 27575:1 27582:1 27604:1 27605:1 27662:1 27667:1 27685:2 27690:2 27718:2 27737:1 27768:1 27799:1 27817:2 27822:1 27839:1 27851:3 27892:1 28005:1 28040:1 28056:1 28072:1 28084:1 28128:1 28160:1 28189:1 28217:1 28262:2 28307:1 28419:1 28474:1 28488:1 28540:5 28561:1 28575:1 28658:1 28728:1 28744:1 28755:2 28764:1 28778:2 28783:1 28792:1 28843:1 28858:5 28911:1 28916:1 28933:9 28961:1 28977:1 29024:1 29034:2 29078:1 29090:1 29126:1 29146:1 29239:1 29240:1 29268:1 29272:1 29292:1 29314:1 29349:2 29387:1 29396:2 29413:1 29429:1 29457:4 29495:2 29519:1 29551:1 29557:1 29560:1 29602:1 29650:1 29652:2 29664:1 29675:1 29684:1 29762:1 29763:1 29816:2 29855:1 29866:1 29901:1 29930:1 29931:1 29935:1 30003:1 30036:1 30084:1 30123:1 30137:5 30145:1 30162:1 30173:1 30180:1 30183:1 30184:1 30225:1 30241:2 30253:1 30263:1 30277:1 30279:1 30330:1 30334:1 30394:1 30396:4 30438:1 30447:1 30449:1 30459:1 30468:1 30551:1 30561:1 30580:1 30586:1 30646:1 30760:2 30795:2 30815:1 30854:1 30872:1 30898:1 30902:1 30952:1 30962:1 30998:1 31032:1 31037:2 31098:2 31184:2 31258:1 31341:1 31355:1 31378:1 31407:1 31427:2 31432:1 31446:1 31462:1 31478:2 31497:1 31505:2 31507:1 31550:1 31615:2 18 6:1 14:1 55:1 123:1 188:4 210:1 214:1 216:1 237:2 269:2 273:1 283:1 323:2 358:1 538:1 548:1 603:1 618:1 628:1 632:1 646:1 656:1 683:1 694:1 704:4 735:1 748:1 756:1 767:2 782:1 795:1 924:3 949:1 950:2 970:1 973:1 1014:1 1130:1 1167:1 1202:1 1248:4 1279:1 1280:2 1281:1 1283:2 1295:1 1316:2 1342:1 1343:1 1351:1 1434:1 1447:1 1453:1 1454:1 1461:1 1465:1 1500:2 1506:1 1520:1 1556:2 1558:1 1562:1 1633:3 1636:1 1647:1 1664:1 1706:1 1720:1 1723:1 1785:1 1789:3 1842:4 1885:1 1960:1 1966:1 1981:1 1985:1 1993:2 2014:1 2043:2 2073:1 2079:1 2131:1 2133:1 2137:1 2140:3 2147:1 2169:1 2183:1 2192:1 2242:1 2263:1 2273:1 2290:1 2300:3 2310:1 2314:1 2315:1 2319:2 2322:1 2329:1 2361:2 2369:1 2371:1 2374:1 2375:1 2381:1 2382:1 2393:2 2397:2 2412:1 2414:2 2432:9 2450:2 2506:4 2517:1 2541:1 2543:1 2557:4 2621:1 2649:1 2653:1 2662:1 2687:2 2699:1 2701:1 2717:1 2718:1 2720:2 2728:2 2737:1 2820:1 2827:2 2828:1 2847:1 2880:1 2896:1 2952:2 2964:1 3063:2 3066:3 3068:1 3107:1 3119:1 3127:1 3164:1 3182:1 3218:1 3226:1 3230:1 3317:2 3330:3 3388:1 3442:1 3447:1 3479:1 3490:1 3494:1 3495:1 3528:1 3545:1 3719:1 3798:1 3928:1 3949:2 3973:1 4010:1 4019:1 4020:1 4058:1 4065:2 4066:1 4078:1 4086:1 4089:2 4133:1 4173:1 4185:2 4186:1 4197:1 4255:1 4260:1 4289:1 4307:2 4313:1 4328:1 4348:1 4354:1 4376:1 4419:1 4431:1 4456:1 4492:1 4496:1 4531:1 4560:1 4717:2 4754:2 4757:1 4803:1 4851:2 4917:1 4922:2 4933:1 4946:2 4968:1 4969:1 4992:1 5002:1 5012:1 5046:1 5080:1 5108:1 5121:1 5136:1 5154:1 5204:1 5212:1 5245:1 5268:2 5310:5 5314:1 5335:1 5423:1 5440:1 5455:1 5474:1 5481:1 5567:1 5571:1 5581:2 5622:1 5648:1 5651:2 5719:2 5746:2 5779:1 5783:1 5790:1 5800:1 5859:3 5882:1 5894:1 5912:1 5919:1 5925:1 5975:1 6000:1 6006:1 6014:1 6020:2 6049:1 6127:1 6227:1 6242:1 6294:1 6363:2 6397:1 6555:1 6590:2 6603:1 6612:1 6613:2 6630:2 6645:1 6672:2 6721:1 6763:3 6815:3 6826:2 6829:1 6832:2 6851:1 6923:1 6931:1 6932:1 6938:1 6942:1 7084:1 7093:1 7113:3 7239:5 7268:1 7302:1 7388:1 7421:1 7428:2 7429:1 7460:1 7463:1 7468:1 7532:1 7560:2 7561:1 7575:1 7584:1 7651:1 7658:1 7694:1 7750:1 7779:1 7870:2 7945:3 7979:1 7996:1 8030:1 8033:2 8058:3 8179:1 8258:1 8289:1 8307:1 8329:1 8333:2 8351:2 8359:1 8360:2 8364:1 8372:1 8378:1 8386:9 8410:1 8452:1 8560:1 8569:1 8592:1 8710:1 8766:1 8819:1 8841:1 8879:1 8889:2 8921:3 8950:2 8976:2 8982:1 8984:2 8986:1 9134:1 9183:3 9220:5 9285:1 9296:1 9299:1 9300:1 9304:1 9312:1 9417:1 9491:2 9514:2 9652:1 9658:1 9675:1 9685:1 9715:1 9725:1 9743:2 9785:1 9799:1 9815:2 9850:1 9910:1 9932:1 10048:1 10178:1 10206:1 10214:1 10251:1 10257:1 10351:1 10372:3 10392:1 10434:1 10450:4 10492:1 10503:1 10516:1 10552:1 10608:1 10655:1 10678:1 10705:1 10716:1 10751:1 10757:1 10777:1 10784:1 10800:2 10822:1 10828:1 10860:9 10922:1 10971:1 10989:1 11034:1 11114:2 11178:1 11185:1 11203:1 11209:1 11257:1 11295:2 11304:2 11306:1 11362:2 11404:1 11467:3 11486:1 11503:1 11515:1 11557:2 11574:2 11591:2 11608:1 11655:1 11661:2 11663:1 11710:5 11730:1 11798:1 11863:2 11866:1 11883:1 11886:2 11887:1 11888:1 11893:1 11896:1 11943:1 12026:1 12042:1 12048:1 12072:1 12088:1 12097:1 12145:1 12220:1 12258:1 12319:1 12327:1 12373:1 12420:1 12489:1 12564:1 12574:1 12583:1 12595:1 12630:1 12646:2 12665:1 12677:1 12680:1 12704:1 12706:2 12716:2 12730:1 12735:1 12739:2 12745:1 12778:1 12838:1 12884:1 12890:1 12983:1 13034:1 13055:2 13086:1 13091:1 13098:1 13105:2 13191:1 13209:1 13232:1 13337:1 13369:1 13387:2 13550:1 13674:2 13703:1 13736:1 13762:2 13794:1 13845:1 13855:1 13987:1 13993:1 14001:2 14082:1 14103:1 14204:1 14236:1 14250:1 14274:1 14301:4 14314:1 14326:1 14328:2 14395:1 14404:1 14426:2 14467:1 14474:1 14482:2 14493:1 14523:1 14552:1 14557:1 14582:1 14662:1 14677:1 14749:1 14752:1 14757:1 14804:1 14837:1 14847:2 14890:1 14915:3 14936:2 14987:1 15026:1 15035:1 15078:1 15114:1 15154:2 15210:1 15338:1 15438:3 15455:1 15512:1 15528:1 15530:1 15535:1 15553:1 15585:1 15604:9 15606:2 15659:1 15663:1 15710:2 15715:1 15763:1 15764:1 15843:1 15852:1 15871:1 15925:1 15951:1 16006:1 16019:2 16130:1 16153:1 16158:2 16169:1 16195:1 16196:1 16201:2 16255:1 16256:4 16259:2 16332:1 16335:1 16375:1 16461:1 16506:1 16524:1 16539:3 16594:1 16699:2 16709:1 16732:1 16804:5 16817:1 16825:1 16838:1 16869:1 16890:1 16919:1 16963:2 16982:1 16995:1 17098:1 17107:1 17127:1 17145:1 17163:1 17196:1 17200:2 17236:1 17267:2 17291:1 17302:2 17345:1 17373:1 17461:3 17482:1 17514:2 17521:2 17559:1 17561:1 17584:1 17604:1 17610:1 17658:1 17700:1 17717:1 17718:1 17802:1 17828:1 17835:2 17836:1 17848:2 17867:1 17882:1 17991:1 18045:1 18114:1 18120:4 18174:1 18247:1 18286:1 18344:1 18369:1 18373:1 18425:1 18435:5 18457:1 18472:2 18632:1 18648:2 18728:2 18743:1 18746:1 18759:1 18783:2 18789:1 18833:1 18910:1 18934:2 18951:1 18974:1 18984:2 18988:2 19004:1 19008:1 19021:2 19035:1 19036:1 19054:2 19057:2 19065:1 19072:1 19077:1 19113:1 19124:1 19132:1 19176:1 19226:1 19234:1 19266:2 19284:2 19297:1 19372:1 19387:1 19401:2 19418:1 19443:1 19450:1 19460:1 19472:2 19504:4 19511:1 19521:1 19522:1 19558:1 19571:1 19589:1 19670:1 19671:1 19757:1 19802:4 19847:1 19875:1 19908:4 19980:9 20083:2 20110:1 20129:1 20179:1 20268:9 20271:1 20293:2 20328:1097 20407:1 20439:1 20468:1 20471:1 20497:2 20521:1 20529:1 20531:1 20557:1 20565:1 20578:1 20582:1 20596:1 20662:1 20820:1 20825:1 20828:1 20915:1 20977:4 21021:1 21027:1 21044:1 21049:1 21072:1 21079:1 21132:1 21140:1 21146:2 21156:1 21160:3 21237:3 21262:3 21276:1 21298:1 21299:1 21308:1 21309:1 21350:1 21378:8 21391:1 21425:3 21436:2 21464:1 21511:1 21523:1 21524:2 21580:1 21590:1 21747:1 21753:1 21761:1 21777:1 21798:2 21832:1 21862:1 21868:1 21875:1 21879:1 21905:1 21936:1 21972:1 22010:1 22036:1 22045:1 22062:1 22068:1 22117:1 22149:1 22235:2 22272:1 22287:1 22288:1 22325:1 22339:2 22381:2 22411:1 22446:1 22450:4 22456:2 22512:1 22513:1 22533:1 22577:1 22604:1 22622:1 22635:1 22655:5 22716:1 22786:1 22810:1 22815:1 22827:1 22838:1 22870:1 22902:1 22939:1 22987:1 22988:2 22992:1 23019:1 23078:1 23084:3 23116:1 23147:1 23169:1 23248:1 23257:1 23261:2 23276:1 23280:1 23303:1 23322:1 23346:1 23349:1 23363:1 23392:1 23422:1 23462:3 23476:2 23511:2 23535:1 23571:1 23573:1 23583:1 23590:4 23615:1 23662:1 23723:2 23744:1 23763:1 23803:1 23826:2 23836:1 23870:1 23921:3 23958:1 23973:1 24009:1 24023:1 24055:1 24057:1 24078:1 24115:1 24159:1 24163:1 24164:1 24174:1 24183:1 24233:2 24254:1 24263:2 24276:1 24283:1 24319:1 24327:1 24358:1 24360:1 24382:1 24383:2 24407:1 24450:2 24475:1 24495:1 24572:1 24583:1 24586:1 24603:1 24613:2 24618:1 24620:2 24627:1 24633:1 24663:1 24701:4 24716:1 24727:1 24772:1 24777:1 24782:1 24787:1 24795:2 24862:2 24945:1 24981:1 25019:2 25033:1 25044:1 25056:3 25091:3 25105:1 25115:4 25148:3 25191:1 25192:1 25202:1 25215:1 25253:1 25266:1 25271:1 25272:1 25280:2 25323:1 25352:1 25353:1 25376:1 25391:1 25398:2 25410:1 25421:2 25450:1 25470:1 25472:2 25476:1 25525:2 25556:1 25577:1 25630:2 25655:1 25766:2 25781:1 25788:1 25798:4 25835:1 25844:1 25907:1 25919:2 25927:1 25995:1 26058:1 26123:1 26125:2 26133:1 26139:1 26147:2 26154:1 26235:2 26248:1 26280:1 26288:2 26293:1 26305:3 26389:2 26438:1 26444:1 26552:1 26563:1 26589:1 26592:1 26607:1 26608:1 26611:1 26630:1 26631:1 26642:1 26769:1 26781:3 26809:2 26821:2 26863:1 26915:1 27037:1 27052:1 27088:2 27097:1 27104:2 27113:1 27138:1 27163:1 27164:1 27209:4 27216:1 27247:1 27253:1 27273:1 27297:2 27302:1 27315:1 27352:1 27390:1 27426:1 27466:1 27575:1 27582:1 27604:1 27605:1 27620:1 27662:1 27667:1 27685:2 27690:2 27718:2 27737:1 27768:1 27799:1 27817:2 27822:1 27839:1 27851:3 27892:1 27950:1 28005:1 28040:1 28056:1 28072:1 28084:1 28128:1 28139:1 28160:1 28189:1 28217:1 28262:2 28275:1 28307:1 28419:1 28474:1 28488:1 28540:5 28561:1 28575:1 28658:1 28728:1 28744:1 28755:2 28764:1 28778:3 28783:1 28792:1 28843:1 28858:5 28911:1 28916:1 28933:9 28961:1 28977:1 29024:1 29034:2 29078:1 29090:1 29126:1 29146:1 29239:2 29240:1 29268:1 29272:1 29292:1 29314:1 29339:1 29349:2 29387:1 29396:2 29413:1 29429:1 29457:4 29495:2 29519:1 29551:1 29557:3 29560:1 29602:1 29650:1 29652:2 29664:1 29675:1 29684:1 29762:1 29763:1 29775:1 29816:3 29855:1 29866:1 29901:1 29902:1 29930:1 29931:1 29935:1 29988:1 30003:1 30036:1 30084:1 30123:1 30137:5 30145:1 30162:1 30173:1 30180:1 30183:1 30184:1 30225:1 30241:2 30253:1 30263:1 30277:1 30279:1 30330:1 30334:1 30394:1 30396:4 30438:1 30447:1 30449:1 30459:1 30468:1 30551:1 30561:2 30580:1 30586:1 30646:1 30760:2 30795:2 30815:1 30854:2 30872:1 30898:1 30902:1 30952:1 30962:1 30998:1 31032:1 31037:2 31098:2 31115:1 31184:2 31215:1 31258:1 31341:1 31355:2 31378:1 31407:1 31427:2 31432:1 31446:1 31462:1 31478:2 31481:1 31497:1 31505:2 31507:1 31550:1 31615:2 18 6:1 14:1 55:1 123:1 188:4 210:1 214:1 216:1 219:1 237:2 269:2 273:1 283:1 323:2 358:1 389:1 538:1 548:1 600:1 603:1 618:1 628:1 632:1 646:1 656:1 683:1 694:1 704:4 715:1 735:1 748:1 756:1 767:2 782:1 795:1 924:3 937:1 949:1 950:2 970:1 973:1 1014:1 1130:1 1167:1 1202:1 1248:4 1279:1 1280:2 1281:1 1283:2 1295:1 1316:2 1342:1 1343:1 1351:1 1434:1 1447:1 1453:1 1454:1 1461:1 1465:1 1500:2 1506:1 1520:1 1556:2 1558:1 1562:1 1633:3 1636:1 1647:1 1664:1 1706:1 1720:1 1723:1 1785:1 1789:3 1842:4 1885:1 1960:1 1966:1 1981:1 1985:1 1993:2 2014:1 2043:2 2073:1 2079:1 2131:1 2133:1 2137:1 2140:4 2147:1 2169:1 2183:1 2192:1 2242:1 2263:1 2273:1 2290:1 2300:3 2310:1 2314:1 2315:1 2319:2 2322:1 2328:1 2329:1 2361:2 2362:1 2369:1 2371:1 2374:1 2375:1 2381:1 2382:1 2393:2 2397:3 2412:1 2414:2 2432:10 2450:2 2506:4 2517:1 2541:1 2543:1 2557:4 2621:1 2649:1 2653:1 2662:1 2687:2 2699:1 2701:1 2717:1 2718:1 2720:2 2728:2 2737:1 2820:1 2827:2 2828:1 2847:1 2880:1 2896:1 2952:3 2964:1 3063:2 3066:3 3068:1 3107:1 3119:2 3127:1 3164:1 3182:1 3218:1 3226:1 3230:1 3317:2 3330:3 3388:1 3442:1 3447:1 3479:1 3490:1 3494:1 3495:1 3528:1 3537:2 3545:1 3563:1 3600:1 3719:1 3728:1 3798:1 3928:2 3949:2 3973:2 4010:1 4019:1 4020:1 4058:1 4065:2 4066:1 4078:1 4086:1 4089:2 4115:1 4128:1 4133:1 4173:1 4185:2 4186:1 4197:1 4255:1 4260:1 4289:1 4307:2 4313:1 4328:1 4348:1 4354:1 4376:1 4419:1 4431:1 4456:1 4492:1 4496:1 4531:1 4560:1 4677:1 4717:2 4754:2 4757:1 4803:1 4851:2 4917:1 4922:2 4933:1 4946:2 4968:1 4969:1 4992:1 5002:1 5009:1 5012:1 5046:1 5080:1 5108:1 5121:1 5136:1 5154:1 5204:1 5212:1 5245:1 5268:3 5310:6 5314:1 5335:1 5370:1 5423:1 5440:1 5455:1 5474:1 5481:1 5567:1 5571:1 5581:2 5622:1 5648:1 5651:2 5719:2 5746:2 5779:1 5783:1 5790:1 5800:1 5859:3 5882:1 5894:1 5912:1 5919:1 5925:1 5975:1 6000:1 6006:1 6008:1 6014:1 6020:2 6049:1 6110:1 6127:1 6227:1 6242:1 6294:1 6363:2 6378:1 6397:1 6555:1 6590:2 6603:1 6612:1 6613:2 6630:2 6645:1 6672:2 6721:1 6763:3 6815:3 6826:2 6828:1 6829:1 6832:2 6851:1 6883:1 6916:1 6917:1 6923:1 6931:1 6932:1 6938:1 6942:1 7084:1 7093:1 7113:3 7239:5 7268:1 7302:2 7388:1 7421:1 7428:2 7429:1 7460:1 7463:1 7468:1 7532:1 7560:2 7561:1 7575:1 7584:1 7651:1 7658:1 7694:1 7750:1 7779:1 7870:2 7945:3 7979:1 7996:1 8030:1 8033:2 8058:4 8179:1 8241:1 8258:1 8289:2 8307:1 8329:1 8332:1 8333:3 8351:2 8352:1 8359:1 8360:2 8364:1 8372:1 8378:1 8386:9 8410:2 8452:1 8560:1 8569:1 8592:1 8710:1 8766:1 8819:1 8841:1 8879:1 8889:2 8921:4 8950:2 8976:3 8982:1 8984:2 8986:1 9020:1 9134:1 9183:4 9220:5 9285:1 9296:1 9299:1 9300:1 9304:1 9312:1 9381:1 9390:1 9417:1 9491:2 9514:2 9652:1 9658:1 9675:1 9685:1 9713:1 9715:1 9725:1 9734:2 9743:2 9785:1 9799:1 9815:2 9850:1 9859:1 9910:2 9932:1 10048:1 10178:1 10206:1 10214:1 10251:1 10257:1 10351:1 10372:3 10392:1 10434:2 10450:4 10492:1 10503:1 10516:1 10552:1 10608:1 10655:1 10678:1 10705:1 10716:1 10751:1 10757:1 10777:1 10784:1 10800:2 10822:1 10828:1 10860:10 10922:1 10971:1 10989:1 11034:1 11114:2 11178:1 11185:1 11203:1 11209:1 11257:1 11295:2 11304:2 11306:1 11362:2 11388:1 11404:1 11467:4 11486:1 11503:1 11515:1 11557:2 11574:2 11591:2 11608:1 11655:1 11661:2 11663:1 11710:5 11730:1 11798:1 11840:1 11863:2 11866:1 11883:1 11886:2 11887:1 11888:1 11893:1 11896:1 11943:1 12026:1 12042:1 12048:1 12071:1 12072:1 12088:1 12097:1 12145:1 12220:1 12258:1 12319:1 12327:1 12373:1 12420:1 12489:1 12551:1 12564:1 12574:1 12583:1 12595:1 12630:1 12646:2 12648:1 12665:1 12677:1 12680:1 12704:1 12706:3 12716:2 12730:1 12735:1 12739:2 12745:1 12778:1 12838:1 12884:1 12890:1 12983:1 13034:1 13055:2 13081:1 13086:1 13091:1 13098:1 13105:2 13188:1 13191:1 13209:1 13232:1 13337:1 13369:1 13387:2 13550:1 13674:2 13703:1 13736:1 13762:2 13794:1 13845:1 13855:1 13987:1 13993:1 14001:3 14061:1 14082:1 14103:1 14204:1 14236:1 14250:1 14274:1 14301:4 14314:1 14326:1 14328:2 14395:1 14404:1 14426:2 14467:1 14474:1 14482:2 14483:1 14493:1 14514:1 14523:1 14552:1 14557:2 14582:1 14662:1 14677:1 14749:1 14752:1 14757:1 14804:1 14837:1 14847:2 14890:1 14915:3 14936:2 14987:1 15026:1 15035:1 15078:1 15114:1 15154:2 15210:1 15219:1 15338:1 15438:3 15455:1 15512:1 15528:1 15530:1 15535:1 15553:1 15558:1 15585:1 15604:10 15606:2 15659:1 15663:1 15710:2 15715:1 15744:1 15763:1 15764:1 15843:1 15852:1 15871:1 15925:1 15951:1 16006:1 16019:2 16130:1 16153:1 16158:2 16169:1 16195:1 16196:1 16201:2 16255:1 16256:5 16259:2 16332:1 16335:1 16375:2 16461:1 16469:1 16506:1 16524:1 16539:3 16594:1 16699:2 16709:1 16722:1 16732:1 16804:5 16817:1 16825:1 16838:1 16869:1 16890:1 16919:1 16963:2 16982:1 16995:1 17098:1 17107:1 17127:1 17145:1 17163:2 17196:1 17200:2 17236:1 17267:2 17291:1 17302:2 17345:2 17373:1 17461:3 17482:1 17514:2 17521:2 17559:1 17561:1 17584:1 17604:2 17610:1 17658:1 17700:1 17717:1 17718:1 17802:1 17828:1 17835:2 17836:1 17848:2 17867:1 17882:1 17991:1 18045:1 18076:1 18114:1 18120:4 18174:1 18247:1 18286:1 18344:1 18369:1 18373:1 18425:1 18435:5 18457:2 18472:2 18632:1 18648:2 18728:2 18743:1 18746:1 18759:1 18783:2 18789:1 18833:1 18910:1 18928:1 18934:2 18951:1 18974:1 18984:2 18988:2 19004:1 19008:1 19021:2 19035:1 19036:1 19054:2 19057:2 19065:1 19072:2 19077:1 19113:2 19124:1 19132:1 19176:1 19226:1 19234:1 19266:2 19284:2 19297:1 19372:1 19387:1 19401:2 19418:1 19443:1 19450:1 19460:1 19472:2 19504:4 19511:1 19521:1 19522:1 19558:1 19571:1 19589:1 19670:1 19671:1 19757:1 19802:5 19812:1 19847:1 19875:1 19908:4 19959:1 19980:10 20070:1 20083:2 20110:1 20129:1 20179:1 20268:10 20271:1 20293:2 20328:1202 20407:1 20439:1 20468:1 20471:1 20497:2 20521:1 20529:1 20531:1 20557:1 20565:1 20578:1 20582:1 20596:1 20662:1 20820:1 20825:1 20828:1 20915:1 20977:4 21021:2 21027:1 21044:1 21049:1 21072:1 21079:1 21132:1 21140:1 21146:2 21156:1 21160:3 21237:3 21262:3 21276:1 21298:2 21299:1 21308:1 21309:1 21350:1 21359:1 21378:8 21391:1 21425:3 21436:2 21464:1 21511:1 21523:1 21524:2 21551:1 21580:1 21590:1 21747:1 21753:1 21761:1 21777:1 21798:2 21832:1 21862:1 21868:1 21875:1 21879:1 21905:1 21936:1 21971:1 21972:1 22010:1 22036:1 22045:1 22062:1 22068:1 22084:1 22116:1 22117:1 22149:1 22235:2 22272:1 22287:1 22288:1 22325:1 22339:2 22345:1 22381:2 22411:1 22446:1 22450:4 22456:2 22512:1 22513:1 22533:1 22577:1 22604:1 22622:1 22630:1 22635:1 22655:5 22704:1 22716:1 22786:1 22810:1 22815:1 22827:1 22838:1 22870:1 22902:1 22939:1 22987:1 22988:2 22992:1 23019:1 23078:1 23084:3 23116:1 23147:1 23169:1 23178:1 23242:1 23248:1 23257:1 23261:2 23276:1 23280:1 23303:1 23322:1 23346:1 23349:1 23363:1 23392:1 23422:1 23462:3 23476:2 23511:2 23535:2 23571:1 23572:1 23573:1 23583:1 23590:4 23615:1 23662:1 23723:2 23744:1 23763:1 23803:1 23826:2 23836:1 23863:1 23870:1 23899:1 23921:3 23958:1 23973:1 24009:1 24023:1 24026:2 24055:1 24057:1 24078:1 24115:1 24159:1 24163:1 24164:1 24174:1 24183:1 24233:2 24254:1 24263:2 24276:2 24283:1 24301:1 24319:1 24327:1 24358:1 24360:1 24382:1 24383:2 24407:1 24450:2 24475:1 24495:1 24572:1 24583:1 24586:2 24603:1 24613:2 24618:1 24620:2 24627:1 24633:1 24657:1 24663:1 24701:4 24716:1 24727:1 24772:1 24777:1 24782:1 24787:1 24795:2 24862:2 24945:1 24981:1 25019:2 25033:1 25044:1 25056:3 25091:4 25105:1 25115:4 25148:3 25174:1 25191:1 25192:1 25202:1 25215:1 25253:1 25266:1 25271:1 25272:1 25280:2 25323:2 25332:1 25352:1 25353:1 25376:1 25391:1 25398:2 25410:1 25421:2 25450:1 25470:1 25472:2 25476:1 25525:2 25556:1 25577:1 25630:2 25655:1 25694:1 25766:2 25781:1 25788:1 25798:4 25835:1 25844:1 25907:1 25919:2 25927:1 25995:1 26058:1 26089:1 26123:1 26125:2 26133:1 26139:1 26147:2 26154:1 26235:2 26248:1 26263:1 26280:1 26288:2 26293:1 26305:3 26389:2 26438:1 26444:1 26552:1 26563:1 26589:1 26592:1 26595:1 26607:1 26608:1 26611:1 26630:1 26631:1 26642:1 26769:1 26781:3 26809:2 26821:2 26863:1 26915:1 26929:1 27037:1 27052:1 27088:3 27097:1 27104:2 27113:1 27138:1 27163:1 27164:1 27209:4 27216:1 27247:1 27253:1 27273:1 27297:2 27302:1 27315:1 27352:1 27390:1 27426:2 27466:1 27472:1 27559:1 27575:1 27582:1 27604:1 27605:1 27620:1 27662:1 27667:1 27685:2 27690:2 27718:2 27737:1 27768:1 27799:1 27817:2 27822:1 27839:1 27851:3 27892:1 27950:1 28005:1 28040:1 28056:1 28072:1 28084:1 28122:1 28128:1 28139:1 28160:1 28189:1 28217:2 28262:2 28275:1 28307:1 28419:1 28474:1 28488:1 28540:5 28561:1 28575:1 28658:1 28728:1 28744:1 28755:4 28764:1 28778:3 28783:2 28792:1 28823:1 28843:1 28858:5 28911:1 28916:1 28933:10 28961:1 28977:1 29024:1 29034:2 29078:1 29090:1 29126:1 29146:1 29239:2 29240:1 29268:1 29272:1 29292:1 29314:1 29339:1 29349:2 29387:1 29396:2 29413:1 29429:1 29457:4 29495:2 29519:1 29551:1 29557:3 29560:1 29602:1 29650:1 29652:2 29664:1 29675:1 29684:1 29762:1 29763:1 29775:1 29816:3 29855:1 29866:1 29901:1 29902:1 29930:1 29931:1 29935:1 29988:1 30003:1 30036:1 30084:1 30123:1 30137:5 30145:1 30162:1 30173:1 30180:1 30183:1 30184:1 30225:1 30241:3 30253:1 30263:1 30277:1 30279:1 30330:1 30334:1 30394:1 30396:4 30438:1 30447:1 30449:1 30459:1 30468:1 30551:1 30561:2 30580:1 30586:1 30646:1 30760:2 30795:2 30815:2 30854:2 30872:1 30898:1 30902:1 30952:1 30962:1 30998:1 31032:1 31037:2 31098:2 31115:1 31184:2 31210:1 31215:1 31258:1 31331:1 31341:1 31355:2 31378:1 31407:1 31427:2 31432:1 31446:1 31462:1 31478:2 31481:1 31497:1 31505:2 31507:1 31550:1 31615:2 18 6:1 14:1 55:1 123:1 188:4 210:1 214:1 216:1 219:1 237:2 269:2 273:1 283:1 323:2 358:1 389:1 538:1 548:1 600:1 603:1 618:1 628:1 632:1 646:1 656:1 683:1 694:1 704:5 715:1 735:1 748:2 756:1 767:2 782:1 795:1 898:1 924:3 937:1 949:1 950:2 970:1 973:1 1014:2 1130:1 1167:1 1202:1 1248:4 1279:1 1280:2 1281:1 1283:2 1295:1 1316:2 1342:1 1343:1 1351:2 1434:1 1447:1 1453:1 1454:1 1461:1 1465:1 1500:2 1506:1 1520:1 1556:2 1558:1 1562:1 1633:3 1636:1 1647:1 1664:1 1706:1 1720:1 1723:1 1785:1 1789:3 1842:4 1885:1 1960:1 1966:1 1979:1 1981:1 1985:1 1993:2 2014:1 2043:2 2073:1 2079:1 2131:1 2133:1 2137:1 2140:4 2147:1 2169:1 2183:1 2192:1 2242:1 2263:1 2273:1 2290:1 2300:3 2303:1 2310:1 2314:1 2315:1 2319:2 2322:1 2328:1 2329:1 2342:1 2361:2 2362:1 2369:1 2371:1 2374:1 2375:1 2381:1 2382:1 2393:2 2397:3 2403:1 2412:1 2414:2 2432:11 2450:2 2506:4 2517:1 2541:1 2543:1 2557:4 2608:1 2621:1 2649:1 2653:1 2662:1 2687:2 2699:1 2701:1 2717:1 2718:1 2720:2 2728:2 2737:1 2820:1 2827:2 2828:1 2847:1 2880:1 2896:1 2952:3 2964:1 3050:1 3063:2 3066:3 3068:1 3107:1 3119:2 3126:1 3127:1 3164:1 3182:1 3218:1 3226:1 3230:1 3317:2 3330:3 3388:1 3442:1 3447:1 3479:1 3490:1 3494:1 3495:1 3528:1 3537:2 3545:1 3563:1 3600:1 3719:1 3728:1 3798:1 3928:2 3949:2 3973:2 4010:1 4019:1 4020:1 4058:1 4065:2 4066:1 4078:1 4086:1 4089:2 4115:2 4128:1 4133:1 4173:1 4185:2 4186:1 4197:1 4255:1 4260:1 4289:1 4307:2 4313:1 4328:1 4348:1 4354:1 4376:1 4390:1 4419:1 4431:1 4456:1 4492:1 4496:1 4531:1 4560:1 4677:1 4717:2 4754:2 4757:1 4779:1 4803:1 4851:2 4917:1 4922:2 4933:1 4946:2 4968:1 4969:2 4992:1 5002:1 5009:1 5012:1 5046:1 5080:1 5108:1 5121:1 5136:1 5154:1 5204:1 5212:1 5245:1 5268:3 5310:7 5314:1 5335:1 5370:1 5423:1 5440:1 5455:1 5474:1 5481:1 5567:1 5571:1 5581:2 5622:1 5648:1 5651:2 5719:2 5746:2 5779:1 5783:1 5785:1 5790:2 5800:1 5859:4 5882:1 5894:1 5912:1 5919:1 5925:1 5975:1 6000:1 6006:1 6008:1 6014:1 6020:2 6049:1 6053:1 6110:1 6127:1 6227:1 6242:1 6294:1 6363:2 6378:2 6397:1 6555:1 6557:1 6590:2 6603:1 6612:1 6613:2 6630:2 6645:1 6672:2 6721:1 6763:4 6815:3 6826:2 6828:1 6829:1 6832:3 6851:1 6875:1 6883:1 6916:1 6917:1 6923:1 6931:1 6932:1 6938:1 6942:1 7084:1 7093:2 7113:4 7239:5 7268:1 7302:3 7333:1 7388:1 7421:2 7428:2 7429:1 7460:1 7463:1 7468:1 7532:1 7560:2 7561:1 7575:1 7584:1 7651:1 7658:1 7694:1 7750:1 7779:1 7870:2 7945:4 7979:1 7996:1 8030:1 8033:2 8058:4 8104:1 8179:1 8185:1 8241:1 8258:2 8289:2 8307:2 8329:2 8332:1 8333:3 8351:2 8352:2 8359:1 8360:2 8364:1 8372:1 8378:1 8386:10 8410:2 8452:1 8560:1 8569:1 8592:1 8595:1 8710:1 8761:1 8766:1 8819:1 8841:1 8879:1 8889:2 8921:4 8950:2 8976:3 8982:1 8984:2 8986:1 9020:1 9117:1 9134:1 9183:4 9220:5 9285:1 9296:1 9299:1 9300:1 9304:1 9312:1 9381:1 9390:1 9417:1 9491:2 9514:2 9652:1 9658:1 9675:1 9685:1 9701:1 9713:1 9715:1 9725:2 9734:2 9743:2 9785:1 9799:1 9815:2 9850:1 9859:1 9910:2 9932:1 10048:1 10116:1 10178:1 10206:1 10214:1 10251:1 10257:1 10351:1 10372:3 10392:1 10434:2 10450:4 10492:1 10503:1 10516:1 10552:1 10608:1 10655:1 10678:1 10705:1 10716:1 10751:1 10757:1 10777:1 10784:1 10800:2 10822:1 10828:2 10830:1 10860:11 10922:1 10971:1 10989:1 11034:1 11114:2 11130:1 11178:1 11185:1 11203:1 11209:1 11257:1 11295:2 11304:2 11306:1 11362:2 11388:1 11404:1 11467:4 11486:1 11503:1 11515:1 11520:1 11557:2 11574:2 11591:2 11608:1 11655:1 11661:2 11663:1 11710:5 11730:1 11798:1 11820:1 11840:2 11854:1 11863:2 11866:1 11883:1 11886:2 11887:1 11888:1 11893:1 11896:1 11943:1 12026:1 12042:3 12048:1 12071:1 12072:1 12088:1 12097:1 12145:1 12220:1 12258:1 12319:1 12327:1 12373:1 12420:1 12475:1 12489:1 12551:1 12564:1 12574:1 12583:1 12595:1 12630:1 12646:2 12648:1 12665:1 12677:2 12680:1 12686:1 12704:1 12706:3 12716:2 12730:1 12735:1 12739:2 12745:1 12778:1 12838:1 12884:1 12890:1 12983:1 13034:1 13055:2 13081:2 13086:1 13091:1 13098:1 13105:2 13188:1 13191:1 13209:1 13232:1 13337:1 13369:1 13387:2 13550:1 13616:1 13674:2 13703:1 13736:1 13762:2 13794:1 13845:1 13855:1 13987:1 13993:1 14001:3 14061:1 14082:1 14103:1 14204:1 14236:1 14250:1 14274:1 14301:4 14314:1 14326:1 14328:2 14355:1 14395:1 14404:1 14426:2 14467:1 14474:1 14482:2 14483:1 14493:1 14514:1 14523:1 14524:1 14552:1 14557:2 14582:1 14662:1 14677:1 14749:1 14752:1 14757:1 14804:1 14837:1 14847:2 14890:1 14915:3 14936:2 14987:1 15026:1 15035:1 15059:1 15078:1 15114:1 15154:2 15210:1 15219:1 15338:1 15438:4 15455:1 15503:1 15512:1 15528:1 15530:1 15535:1 15553:1 15558:1 15585:1 15604:11 15606:2 15659:1 15660:1 15663:1 15710:2 15715:1 15744:1 15763:1 15764:1 15843:1 15852:1 15871:1 15925:1 15951:1 16006:1 16019:2 16130:1 16153:1 16158:2 16169:1 16195:1 16196:1 16201:2 16255:1 16256:5 16259:2 16332:1 16335:1 16375:2 16461:1 16469:1 16506:1 16524:1 16539:3 16594:1 16699:2 16709:1 16722:1 16732:1 16804:5 16817:1 16825:1 16838:1 16869:1 16890:1 16919:1 16963:2 16982:1 16995:1 17098:1 17107:1 17127:1 17145:1 17163:2 17196:1 17200:2 17236:1 17248:1 17267:2 17291:1 17302:2 17345:2 17373:1 17461:3 17482:1 17514:2 17521:2 17559:1 17561:1 17584:1 17604:2 17610:1 17658:1 17700:1 17717:1 17718:1 17802:1 17828:1 17835:2 17836:1 17848:2 17867:1 17882:1 17991:1 18028:1 18045:1 18076:1 18114:1 18120:4 18174:1 18247:1 18286:1 18344:1 18369:1 18373:1 18425:1 18435:5 18457:2 18472:2 18632:1 18648:2 18728:2 18743:1 18746:1 18759:1 18783:2 18789:1 18833:1 18910:1 18928:1 18934:2 18951:1 18964:1 18974:1 18984:2 18988:2 19004:1 19008:1 19021:2 19035:1 19036:1 19054:2 19057:3 19065:1 19072:2 19077:1 19113:2 19118:2 19124:1 19132:1 19176:1 19226:1 19234:1 19266:2 19284:2 19297:2 19372:1 19387:1 19401:2 19418:1 19443:1 19450:1 19460:1 19472:2 19504:4 19511:1 19521:1 19522:1 19558:2 19571:1 19589:1 19636:1 19670:1 19671:1 19757:1 19802:6 19812:1 19847:1 19875:1 19908:4 19959:1 19980:11 20070:1 20083:2 20110:1 20129:2 20179:1 20268:11 20271:1 20293:2 20328:1340 20407:1 20439:1 20468:1 20471:1 20497:3 20521:1 20529:1 20531:1 20557:1 20565:1 20578:1 20582:1 20596:1 20662:1 20820:1 20825:1 20828:1 20915:1 20977:4 21021:2 21027:1 21044:1 21049:1 21072:1 21079:1 21095:1 21132:1 21140:1 21146:2 21156:1 21160:3 21226:1 21237:3 21262:3 21276:1 21298:2 21299:2 21308:1 21309:1 21350:1 21359:1 21378:8 21391:1 21417:1 21425:3 21436:2 21464:1 21511:1 21523:1 21524:2 21551:1 21580:1 21590:1 21676:1 21747:1 21753:1 21761:1 21777:1 21798:2 21832:1 21862:1 21868:1 21875:1 21879:1 21905:1 21936:1 21971:2 21972:1 21978:1 22010:1 22036:1 22045:1 22062:1 22068:1 22084:1 22116:1 22117:1 22149:1 22235:2 22272:1 22287:1 22288:1 22325:1 22337:1 22339:2 22345:2 22381:2 22411:1 22446:1 22450:4 22456:2 22512:1 22513:1 22533:1 22577:1 22604:1 22622:1 22630:1 22635:1 22655:6 22704:1 22716:1 22786:1 22810:1 22812:1 22815:1 22827:1 22838:1 22870:1 22902:1 22939:1 22987:1 22988:2 22992:1 23019:1 23078:1 23084:3 23116:1 23147:1 23169:1 23178:1 23242:1 23248:1 23257:1 23261:2 23276:1 23280:1 23303:1 23322:1 23346:1 23349:1 23363:1 23392:1 23422:1 23462:3 23476:2 23511:2 23535:2 23571:1 23572:1 23573:1 23583:1 23590:4 23615:1 23662:1 23723:2 23744:1 23763:1 23803:1 23826:2 23836:1 23863:1 23870:1 23878:1 23899:1 23921:4 23954:1 23958:1 23973:1 24009:1 24023:1 24026:2 24055:1 24057:1 24078:1 24115:1 24159:1 24163:1 24164:1 24174:1 24183:1 24225:1 24233:2 24254:1 24263:2 24273:1 24276:2 24283:1 24301:1 24319:1 24327:1 24358:1 24360:1 24382:1 24383:2 24407:1 24450:2 24475:1 24495:1 24572:1 24583:1 24586:3 24603:1 24613:2 24618:1 24620:2 24627:1 24633:1 24651:1 24657:1 24663:1 24701:4 24716:1 24727:1 24772:1 24777:1 24782:1 24787:1 24795:2 24862:2 24945:1 24981:1 25019:2 25032:1 25033:1 25044:1 25056:3 25091:5 25097:1 25105:1 25115:4 25148:3 25174:1 25191:1 25192:1 25202:1 25215:1 25253:1 25266:1 25271:1 25272:1 25280:2 25323:2 25332:1 25352:1 25353:1 25376:1 25391:1 25392:1 25398:2 25410:1 25421:2 25450:1 25470:1 25472:2 25476:1 25525:2 25556:1 25577:1 25630:2 25655:1 25689:1 25694:1 25766:2 25781:1 25788:1 25798:4 25835:1 25844:1 25907:1 25919:2 25927:1 25995:1 26058:1 26089:1 26123:1 26125:2 26133:1 26139:1 26147:2 26154:1 26225:1 26235:2 26248:1 26263:1 26280:1 26288:2 26293:1 26305:3 26389:2 26438:1 26444:1 26552:1 26563:1 26589:1 26592:1 26595:1 26607:1 26608:1 26611:1 26630:1 26631:1 26642:1 26769:1 26781:5 26809:2 26821:2 26863:1 26915:1 26929:1 27037:1 27039:1 27052:1 27088:3 27097:1 27104:2 27113:1 27138:1 27145:1 27163:1 27164:1 27209:4 27216:1 27247:1 27253:1 27273:1 27297:2 27302:1 27315:1 27338:1 27352:1 27390:1 27426:2 27466:1 27472:2 27559:1 27575:1 27582:1 27604:1 27605:1 27620:2 27662:1 27667:1 27685:2 27690:2 27718:2 27737:1 27768:1 27785:1 27799:1 27817:2 27822:1 27839:1 27851:4 27892:1 27950:1 28005:1 28040:1 28056:1 28072:1 28084:2 28122:1 28128:1 28139:1 28149:1 28160:1 28189:1 28217:2 28262:2 28275:1 28307:1 28419:1 28474:1 28488:1 28540:5 28561:1 28575:1 28658:2 28728:1 28744:1 28755:5 28764:1 28778:4 28783:2 28792:1 28809:1 28823:1 28843:1 28858:5 28911:1 28916:1 28933:11 28961:1 28977:1 28984:1 29024:1 29034:2 29078:1 29090:1 29126:1 29146:1 29239:2 29240:1 29268:1 29272:1 29292:1 29314:1 29339:1 29349:2 29387:1 29396:2 29413:1 29429:1 29457:4 29495:2 29519:1 29546:1 29551:1 29557:3 29560:1 29602:1 29650:1 29652:2 29664:1 29675:1 29684:1 29759:1 29762:1 29763:1 29775:1 29816:4 29855:1 29866:1 29901:1 29902:1 29930:1 29931:1 29935:1 29988:1 30003:1 30036:1 30084:1 30123:1 30137:5 30145:1 30162:1 30173:1 30180:2 30183:1 30184:1 30225:1 30241:3 30253:1 30263:1 30277:1 30279:1 30284:1 30330:2 30334:1 30394:1 30396:4 30438:1 30447:1 30449:2 30459:1 30468:1 30551:1 30561:2 30580:1 30586:1 30646:1 30760:2 30795:2 30815:2 30854:2 30868:1 30871:1 30872:1 30898:1 30902:1 30952:1 30962:1 30998:1 31032:1 31037:2 31098:2 31115:1 31184:2 31210:1 31215:1 31258:1 31331:1 31341:1 31355:2 31378:1 31383:1 31407:1 31427:2 31432:1 31446:1 31462:1 31478:2 31481:1 31497:1 31505:2 31507:1 31510:1 31550:1 31615:2 18 6:1 14:1 55:1 123:1 188:4 210:1 214:1 216:1 219:1 237:2 269:2 273:1 283:1 302:1 323:2 339:1 358:1 389:1 538:1 548:1 600:1 603:1 618:1 628:1 632:1 646:1 656:2 683:1 694:1 704:5 715:1 735:1 748:3 756:1 767:2 782:1 795:1 890:1 898:1 924:3 937:1 949:1 950:2 970:1 973:1 1014:2 1130:1 1167:1 1202:1 1248:4 1279:1 1280:2 1281:1 1283:2 1295:1 1316:2 1342:1 1343:1 1351:2 1434:1 1447:1 1453:1 1454:2 1461:1 1465:1 1500:2 1506:1 1520:1 1556:2 1558:1 1562:1 1615:1 1633:3 1636:1 1647:1 1664:1 1706:1 1720:1 1723:1 1785:1 1789:3 1842:4 1885:1 1960:1 1966:1 1979:2 1981:1 1985:1 1993:2 2014:1 2043:2 2073:1 2079:1 2093:1 2131:1 2133:1 2137:1 2140:4 2147:1 2169:1 2183:1 2192:1 2242:1 2263:1 2273:1 2290:1 2300:3 2303:1 2310:1 2314:1 2315:1 2319:2 2322:1 2328:1 2329:1 2342:1 2361:2 2362:1 2369:1 2371:1 2374:1 2375:1 2377:1 2381:1 2382:1 2393:2 2397:3 2403:2 2412:1 2414:2 2432:12 2450:2 2506:4 2517:1 2541:1 2543:1 2547:1 2557:4 2608:1 2621:1 2649:1 2653:1 2662:1 2687:2 2699:1 2701:1 2717:1 2718:1 2720:2 2728:2 2737:1 2820:1 2827:2 2828:1 2847:1 2880:1 2896:1 2952:3 2964:2 3050:2 3063:2 3066:3 3068:1 3088:1 3107:1 3119:3 3126:1 3127:1 3164:1 3182:1 3218:1 3226:1 3230:1 3317:2 3330:5 3388:3 3442:1 3447:1 3479:1 3490:1 3494:1 3495:1 3528:1 3537:2 3545:1 3563:1 3581:1 3600:1 3619:1 3719:1 3728:1 3798:1 3860:1 3928:2 3949:2 3973:2 4010:1 4019:1 4020:1 4058:1 4065:2 4066:1 4078:1 4086:1 4089:2 4115:2 4128:1 4133:1 4173:1 4176:1 4185:2 4186:1 4197:1 4255:1 4260:1 4289:1 4307:2 4313:1 4328:1 4348:1 4354:1 4376:1 4390:1 4419:1 4431:1 4456:1 4492:1 4496:1 4531:1 4549:1 4560:1 4631:1 4677:1 4717:2 4754:2 4757:1 4779:1 4803:1 4851:2 4917:1 4922:2 4933:1 4946:2 4968:1 4969:3 4992:1 5002:1 5009:1 5012:1 5046:1 5080:1 5098:1 5108:1 5121:1 5136:1 5154:1 5204:1 5212:1 5245:1 5268:3 5310:9 5314:1 5335:1 5370:1 5423:1 5440:1 5455:1 5474:1 5481:1 5567:1 5571:1 5581:2 5622:1 5648:2 5651:2 5719:2 5746:2 5779:1 5783:1 5785:1 5790:2 5800:1 5859:4 5882:1 5887:1 5894:1 5900:1 5912:1 5919:1 5925:1 5975:1 6000:1 6006:1 6008:1 6014:1 6020:2 6049:1 6053:2 6110:1 6127:1 6227:1 6242:1 6294:1 6363:2 6378:2 6397:1 6555:1 6557:1 6590:2 6603:2 6612:1 6613:2 6630:2 6645:1 6672:2 6721:1 6763:4 6815:3 6826:2 6828:1 6829:1 6832:3 6851:1 6875:1 6883:1 6916:1 6917:1 6923:1 6931:1 6932:1 6938:1 6942:1 7084:1 7093:3 7113:4 7180:1 7197:1 7230:1 7239:5 7268:1 7302:4 7333:1 7388:1 7421:2 7428:2 7429:1 7434:1 7460:1 7463:1 7468:1 7532:1 7560:2 7561:1 7575:1 7584:1 7651:1 7658:1 7694:1 7750:1 7779:1 7870:2 7945:4 7979:1 7996:1 8006:1 8030:1 8033:2 8058:4 8104:1 8179:1 8185:1 8241:1 8258:2 8289:2 8307:3 8329:2 8332:1 8333:3 8351:2 8352:2 8359:1 8360:2 8364:1 8372:1 8378:1 8386:12 8410:3 8441:1 8452:1 8560:1 8569:1 8592:1 8595:2 8710:1 8761:1 8766:2 8819:2 8841:1 8879:1 8889:2 8921:4 8950:2 8976:4 8982:1 8984:2 8986:1 9020:1 9100:1 9117:1 9134:1 9183:4 9220:5 9285:1 9296:1 9299:1 9300:1 9304:1 9312:1 9381:1 9390:1 9417:1 9491:2 9514:2 9648:1 9652:2 9658:1 9675:1 9685:1 9701:1 9713:1 9715:1 9725:2 9734:2 9743:2 9785:1 9799:1 9815:2 9850:1 9859:1 9910:2 9920:1 9932:1 10048:1 10116:1 10178:1 10206:1 10211:1 10214:1 10251:1 10257:1 10351:1 10372:3 10392:1 10434:2 10450:4 10492:1 10503:1 10516:1 10552:1 10608:1 10655:1 10678:1 10705:1 10716:1 10751:1 10757:1 10777:1 10784:1 10800:2 10822:1 10828:2 10830:1 10860:12 10922:1 10971:1 10989:1 11034:1 11113:1 11114:2 11130:1 11178:1 11185:1 11203:1 11209:1 11221:1 11257:1 11295:2 11304:2 11306:1 11362:2 11388:1 11404:1 11467:4 11486:1 11503:1 11515:1 11520:1 11553:1 11557:2 11574:2 11591:2 11608:1 11655:1 11661:2 11663:1 11710:5 11730:1 11798:1 11820:1 11840:2 11854:1 11863:2 11866:1 11883:1 11886:2 11887:1 11888:1 11893:1 11896:1 11943:1 12025:1 12026:1 12042:4 12048:1 12071:1 12072:1 12088:1 12097:1 12145:1 12220:1 12258:1 12319:1 12327:1 12373:1 12420:1 12475:1 12489:1 12551:1 12564:1 12574:1 12583:1 12595:1 12630:1 12646:2 12648:1 12653:1 12665:1 12677:3 12680:1 12686:2 12704:1 12706:3 12716:2 12730:1 12735:1 12739:2 12745:1 12778:1 12838:1 12884:1 12890:1 12983:1 13034:1 13055:2 13081:2 13086:1 13091:1 13098:1 13105:2 13188:1 13191:1 13209:2 13232:1 13337:1 13351:1 13369:1 13387:2 13550:1 13616:1 13674:2 13703:1 13736:1 13762:2 13794:1 13825:1 13834:1 13845:1 13855:1 13987:1 13993:1 14001:3 14061:2 14082:1 14103:1 14204:1 14236:1 14250:2 14274:1 14301:4 14314:1 14326:1 14328:2 14355:1 14393:1 14395:1 14404:1 14426:2 14467:1 14474:1 14482:2 14483:1 14493:1 14514:1 14523:1 14524:1 14552:1 14557:2 14582:1 14662:2 14677:1 14749:1 14752:1 14757:1 14804:1 14837:1 14847:2 14890:1 14915:3 14936:2 14987:1 15026:1 15035:1 15059:1 15078:1 15114:1 15154:2 15210:1 15219:1 15338:1 15375:1 15438:4 15455:1 15503:1 15512:1 15528:1 15530:1 15535:1 15553:1 15558:1 15585:1 15604:12 15606:2 15659:1 15660:1 15663:1 15710:2 15715:1 15744:1 15763:1 15764:1 15843:1 15852:1 15871:1 15925:1 15951:1 16006:1 16019:2 16130:1 16153:1 16158:2 16169:1 16175:1 16195:1 16196:1 16201:2 16236:1 16255:1 16256:5 16259:2 16332:1 16335:1 16351:1 16375:2 16461:1 16469:1 16506:1 16524:1 16539:3 16594:1 16699:2 16709:1 16722:1 16732:1 16804:6 16806:1 16817:1 16825:1 16838:1 16869:1 16890:1 16919:1 16963:2 16982:1 16995:1 17038:1 17098:1 17107:1 17127:1 17145:1 17163:2 17196:1 17200:2 17204:1 17236:1 17248:1 17267:2 17291:1 17302:2 17345:2 17373:1 17461:3 17482:1 17488:1 17514:2 17521:2 17559:1 17561:1 17584:1 17604:2 17610:1 17658:1 17700:1 17717:1 17718:1 17802:1 17828:1 17835:2 17836:1 17848:2 17867:1 17882:1 17991:1 18028:1 18045:1 18076:1 18108:1 18114:1 18120:4 18174:1 18247:1 18286:1 18344:1 18369:1 18373:1 18425:1 18435:6 18457:2 18472:2 18632:1 18648:2 18728:2 18743:1 18746:1 18759:1 18783:2 18789:1 18833:1 18879:1 18910:1 18928:1 18934:2 18951:1 18964:2 18974:1 18984:2 18988:2 19004:1 19008:1 19021:2 19035:1 19036:1 19054:2 19057:3 19065:1 19072:2 19077:2 19113:2 19118:2 19124:1 19132:1 19155:1 19176:1 19226:1 19234:1 19266:2 19284:2 19297:2 19372:1 19387:1 19401:2 19418:1 19428:1 19443:1 19450:1 19460:1 19472:2 19504:4 19511:1 19521:1 19522:1 19558:2 19571:2 19589:1 19636:1 19664:1 19670:1 19671:1 19757:1 19802:6 19812:1 19847:1 19875:1 19908:4 19959:1 19980:12 20029:1 20070:1 20083:2 20110:1 20129:3 20179:1 20268:12 20271:1 20293:2 20328:1499 20407:1 20439:1 20468:1 20471:1 20497:3 20521:1 20529:1 20531:1 20557:1 20565:1 20578:1 20582:1 20585:1 20596:1 20662:1 20820:1 20825:1 20828:1 20915:1 20977:4 21021:2 21027:1 21044:1 21049:1 21072:1 21079:1 21095:1 21132:1 21140:1 21146:2 21156:1 21160:3 21192:1 21226:1 21237:3 21262:6 21276:1 21298:2 21299:2 21308:1 21309:1 21350:1 21359:1 21378:9 21391:1 21417:1 21425:3 21436:2 21442:1 21464:1 21476:1 21511:1 21523:1 21524:2 21551:1 21580:1 21590:1 21652:1 21676:1 21747:1 21753:1 21761:1 21777:1 21798:2 21832:1 21862:1 21868:1 21875:2 21879:1 21894:1 21905:1 21936:1 21971:2 21972:1 21978:1 22010:1 22036:1 22045:1 22062:1 22068:1 22084:2 22116:1 22117:1 22149:1 22235:2 22272:1 22287:1 22288:1 22325:1 22337:1 22339:2 22345:2 22367:1 22381:2 22411:1 22446:1 22450:4 22456:2 22482:1 22512:1 22513:1 22533:1 22577:1 22585:1 22604:1 22617:1 22622:1 22630:1 22635:1 22643:1 22655:6 22704:1 22716:1 22736:1 22786:1 22810:1 22812:1 22815:2 22827:1 22838:1 22870:1 22902:1 22939:1 22987:1 22988:2 22992:1 23019:1 23034:1 23078:1 23084:4 23116:1 23147:1 23169:1 23178:1 23242:1 23248:1 23257:1 23261:2 23276:1 23280:1 23303:1 23322:1 23346:1 23349:1 23363:1 23392:1 23422:1 23462:3 23476:2 23511:2 23535:2 23571:1 23572:1 23573:1 23583:1 23590:4 23615:1 23662:1 23723:2 23744:1 23763:1 23803:1 23826:2 23836:1 23863:1 23870:1 23878:1 23899:1 23921:4 23954:1 23958:1 23973:1 24009:1 24023:1 24026:2 24055:1 24057:1 24078:1 24115:1 24159:1 24163:1 24164:1 24174:1 24183:1 24225:1 24233:2 24254:1 24263:2 24273:2 24276:2 24283:1 24301:1 24319:1 24327:1 24358:1 24360:1 24382:1 24383:2 24407:2 24438:1 24450:2 24475:1 24495:2 24572:1 24583:1 24586:3 24603:1 24613:2 24618:1 24620:2 24627:1 24633:1 24651:1 24657:1 24663:1 24701:4 24716:1 24727:1 24772:1 24777:1 24782:1 24787:1 24795:2 24862:2 24863:1 24945:1 24981:1 25019:2 25032:1 25033:1 25044:1 25056:3 25091:5 25097:1 25105:1 25115:4 25148:3 25174:1 25191:1 25192:1 25202:1 25214:1 25215:1 25253:1 25266:1 25271:1 25272:1 25280:2 25323:2 25332:2 25352:1 25353:1 25361:1 25376:1 25391:1 25392:1 25398:2 25410:1 25421:2 25450:1 25470:1 25472:2 25476:1 25525:2 25556:1 25577:1 25630:2 25655:1 25689:1 25694:1 25766:2 25781:1 25788:1 25798:4 25835:1 25844:1 25907:1 25919:2 25927:1 25928:1 25995:1 26058:1 26089:1 26123:1 26125:3 26133:1 26136:1 26139:1 26143:1 26147:2 26154:1 26164:1 26213:1 26225:1 26235:2 26248:2 26263:1 26280:1 26288:2 26293:1 26305:4 26389:2 26438:1 26444:1 26552:1 26563:1 26589:1 26592:1 26595:1 26607:1 26608:1 26611:2 26630:1 26631:1 26642:1 26653:1 26769:1 26781:5 26809:2 26821:2 26863:1 26901:1 26915:1 26929:1 27033:1 27034:1 27037:1 27039:1 27052:1 27088:3 27097:1 27104:2 27113:1 27138:1 27145:1 27163:1 27164:1 27209:4 27216:1 27247:1 27253:1 27273:1 27297:3 27302:2 27315:1 27338:1 27352:1 27390:1 27422:1 27426:2 27466:1 27472:2 27559:1 27575:1 27582:2 27604:1 27605:1 27620:2 27662:1 27667:1 27685:2 27690:2 27718:2 27737:1 27768:1 27785:1 27799:1 27817:3 27822:1 27839:1 27851:6 27892:1 27950:1 28005:1 28040:1 28056:1 28072:1 28084:2 28122:1 28128:1 28139:1 28149:1 28160:1 28189:1 28217:2 28262:2 28275:1 28307:1 28419:1 28474:1 28488:1 28540:5 28561:1 28575:1 28658:2 28728:1 28744:1 28755:5 28764:1 28778:4 28783:2 28792:1 28809:1 28823:1 28843:1 28858:5 28911:1 28916:1 28933:12 28961:1 28977:1 28984:2 29024:1 29034:2 29039:1 29078:1 29090:1 29126:1 29146:1 29239:2 29240:1 29268:1 29272:1 29292:1 29314:1 29339:1 29349:2 29387:2 29396:2 29413:1 29429:1 29457:4 29495:2 29519:1 29546:1 29551:1 29557:3 29560:1 29602:1 29650:1 29652:2 29664:1 29675:1 29684:1 29730:1 29759:1 29762:1 29763:1 29775:1 29795:1 29816:4 29855:1 29866:1 29901:1 29902:1 29930:1 29931:1 29935:1 29988:1 29990:1 30003:1 30036:1 30056:1 30084:2 30123:1 30137:5 30145:1 30162:2 30173:1 30180:2 30183:1 30184:2 30225:1 30241:3 30253:1 30263:1 30277:1 30279:1 30284:1 30330:3 30334:1 30385:1 30394:1 30396:4 30438:1 30447:1 30449:2 30459:1 30462:1 30468:1 30508:1 30551:1 30561:2 30580:1 30586:1 30592:1 30646:1 30760:2 30795:2 30815:2 30854:2 30868:1 30871:1 30872:1 30898:1 30902:1 30952:1 30962:1 30998:1 31032:1 31037:2 31098:2 31115:1 31184:2 31210:1 31215:1 31258:1 31331:1 31341:1 31355:2 31378:1 31383:1 31407:1 31427:2 31432:1 31446:1 31462:1 31478:2 31481:1 31497:1 31505:2 31507:1 31510:1 31550:1 31615:2 18 6:1 14:1 18:1 55:1 123:1 188:4 210:2 214:1 216:1 219:1 237:2 269:2 273:1 283:1 302:1 323:2 339:1 358:1 389:1 449:1 538:1 548:1 600:2 603:1 618:1 628:1 632:1 646:1 656:2 683:1 694:1 704:5 715:1 735:1 748:3 756:1 767:2 782:1 795:1 890:1 898:1 924:3 937:1 949:1 950:2 970:1 973:1 1014:2 1130:1 1167:1 1202:1 1248:4 1279:1 1280:2 1281:1 1283:2 1295:1 1316:2 1342:1 1343:1 1351:2 1434:1 1447:1 1453:1 1454:2 1461:1 1465:1 1500:2 1506:1 1520:1 1556:2 1558:1 1562:1 1615:1 1633:4 1636:1 1647:1 1664:1 1706:1 1720:1 1723:1 1785:1 1789:3 1842:4 1885:1 1960:1 1966:1 1979:2 1981:1 1985:1 1993:2 2014:1 2043:2 2073:1 2079:1 2093:1 2131:1 2133:1 2137:1 2140:4 2147:1 2169:1 2183:1 2192:1 2242:1 2263:1 2273:1 2290:1 2300:3 2303:1 2310:1 2312:1 2314:1 2315:1 2319:2 2322:1 2328:1 2329:1 2342:1 2361:2 2362:1 2365:1 2369:1 2371:1 2374:1 2375:1 2377:1 2381:1 2382:1 2393:2 2397:3 2403:2 2412:1 2414:2 2432:13 2450:2 2506:4 2517:1 2541:1 2543:1 2547:1 2557:4 2608:1 2621:1 2649:1 2653:1 2662:1 2687:2 2699:1 2701:1 2717:1 2718:1 2720:2 2728:2 2737:1 2820:1 2827:2 2828:1 2847:1 2880:1 2896:1 2952:3 2964:2 3050:2 3063:3 3066:3 3068:1 3088:1 3107:1 3119:3 3126:1 3127:1 3143:1 3164:1 3182:1 3218:1 3226:1 3230:1 3317:2 3330:6 3388:3 3442:1 3447:1 3467:1 3479:1 3490:1 3494:1 3495:1 3528:1 3537:2 3545:1 3563:1 3581:1 3600:1 3619:1 3719:1 3728:1 3798:1 3860:1 3928:2 3949:2 3973:2 4010:1 4019:1 4020:1 4058:1 4065:2 4066:1 4078:1 4086:1 4089:2 4115:2 4128:1 4129:1 4133:1 4173:1 4176:1 4185:2 4186:1 4197:1 4255:1 4260:1 4281:1 4289:1 4307:2 4313:1 4328:1 4348:1 4354:2 4376:1 4390:1 4419:1 4422:1 4431:1 4456:1 4492:1 4496:1 4531:1 4549:1 4560:1 4631:1 4677:1 4717:2 4754:2 4757:1 4779:1 4789:1 4803:1 4851:2 4917:1 4922:2 4933:1 4946:2 4968:1 4969:3 4992:1 5002:1 5009:1 5012:1 5046:1 5080:1 5098:1 5108:1 5121:1 5136:1 5154:1 5204:1 5212:1 5245:1 5268:3 5310:9 5314:1 5335:1 5370:1 5423:1 5440:1 5455:1 5474:1 5481:1 5567:1 5571:1 5581:2 5622:1 5648:2 5651:2 5683:1 5719:2 5746:2 5779:1 5783:1 5785:1 5790:2 5800:1 5859:4 5882:1 5887:1 5894:1 5900:1 5912:1 5919:1 5925:1 5975:1 6000:1 6006:1 6008:1 6014:1 6020:2 6049:1 6053:2 6110:1 6127:1 6227:1 6242:1 6294:1 6363:2 6378:2 6397:1 6555:1 6557:1 6590:2 6603:2 6612:1 6613:2 6630:2 6645:1 6672:2 6721:1 6763:4 6815:4 6826:2 6828:1 6829:1 6832:3 6851:1 6875:1 6883:1 6916:1 6917:1 6923:1 6931:1 6932:1 6938:1 6942:1 7084:1 7093:3 7113:4 7180:1 7197:1 7230:1 7239:5 7268:1 7302:4 7319:1 7333:1 7388:1 7421:2 7428:2 7429:1 7434:1 7460:1 7463:1 7468:1 7532:1 7560:2 7561:1 7575:1 7584:1 7651:1 7658:1 7694:1 7750:2 7779:1 7818:1 7870:2 7906:1 7945:4 7979:1 7996:1 8006:1 8030:1 8033:2 8058:4 8104:1 8179:1 8185:1 8241:1 8258:2 8289:2 8307:3 8329:2 8332:1 8333:3 8351:2 8352:2 8359:1 8360:2 8364:1 8372:1 8377:1 8378:1 8386:12 8410:3 8441:1 8452:1 8560:1 8569:1 8592:1 8595:2 8710:1 8761:1 8766:2 8819:2 8841:1 8879:1 8889:2 8921:4 8950:2 8976:4 8982:2 8984:2 8986:1 9020:1 9021:1 9100:1 9117:1 9134:1 9183:4 9220:5 9285:1 9296:1 9299:1 9300:1 9304:1 9312:1 9317:1 9381:1 9390:1 9417:1 9491:2 9514:2 9648:1 9652:2 9658:1 9675:1 9685:1 9701:1 9713:1 9715:1 9725:2 9734:2 9743:2 9785:1 9799:1 9815:2 9850:1 9856:1 9859:1 9910:2 9920:1 9932:1 10048:1 10116:1 10178:1 10206:1 10211:1 10214:1 10251:1 10257:1 10351:1 10372:3 10385:1 10392:1 10416:1 10434:2 10450:4 10492:1 10503:1 10516:1 10552:1 10608:1 10655:1 10659:1 10678:2 10705:1 10716:1 10751:1 10757:1 10777:1 10784:1 10800:2 10822:1 10828:3 10830:1 10860:13 10922:1 10971:1 10989:1 11034:1 11113:1 11114:2 11130:1 11178:1 11185:1 11203:1 11209:1 11221:1 11257:1 11295:2 11304:2 11306:1 11313:1 11362:2 11383:1 11388:1 11404:1 11467:4 11486:1 11503:1 11515:1 11520:1 11553:1 11557:2 11574:2 11591:2 11608:1 11655:1 11661:2 11663:1 11710:5 11730:1 11798:1 11820:1 11840:2 11854:1 11863:2 11866:1 11883:1 11886:2 11887:1 11888:1 11893:1 11896:1 11943:1 12025:1 12026:1 12042:4 12048:1 12071:1 12072:1 12088:1 12097:1 12145:1 12220:1 12258:1 12319:1 12327:1 12373:1 12420:1 12475:1 12489:1 12551:1 12564:1 12574:1 12583:1 12595:1 12630:1 12646:2 12648:1 12653:1 12665:1 12677:3 12680:1 12686:2 12704:1 12706:3 12716:2 12730:1 12735:1 12739:3 12745:1 12778:1 12810:1 12838:1 12884:1 12890:1 12983:1 13034:1 13055:2 13081:2 13086:1 13091:1 13098:1 13105:2 13188:1 13191:1 13209:2 13232:1 13270:1 13337:1 13351:1 13369:1 13387:2 13392:1 13550:1 13616:1 13637:1 13674:2 13698:1 13703:1 13736:1 13762:3 13794:1 13797:1 13825:1 13834:1 13845:1 13855:1 13987:1 13989:1 13993:1 14001:4 14061:2 14082:1 14103:1 14204:1 14236:1 14250:2 14274:1 14301:4 14314:1 14326:1 14328:2 14355:1 14393:1 14395:1 14404:1 14426:2 14450:1 14467:1 14474:1 14482:2 14483:1 14493:1 14514:1 14523:1 14524:1 14552:1 14557:2 14582:1 14662:2 14677:1 14749:1 14752:1 14757:1 14804:1 14837:1 14847:2 14890:1 14915:4 14936:2 14987:1 14990:1 15026:1 15035:1 15059:1 15078:1 15114:1 15154:2 15195:1 15210:1 15213:1 15219:1 15338:1 15375:1 15438:4 15455:1 15503:1 15512:1 15528:1 15530:2 15535:1 15551:1 15553:1 15558:1 15585:1 15604:13 15606:2 15659:1 15660:1 15663:1 15710:2 15715:1 15744:1 15763:1 15764:1 15843:1 15852:1 15871:1 15925:1 15951:1 16006:1 16019:2 16130:1 16132:1 16153:1 16158:2 16169:1 16175:1 16195:1 16196:2 16201:2 16236:1 16255:1 16256:5 16259:2 16332:1 16335:1 16351:1 16375:3 16461:1 16469:1 16506:1 16524:1 16539:3 16594:1 16699:2 16709:1 16722:1 16732:1 16780:1 16804:7 16806:1 16817:1 16825:1 16838:1 16869:1 16890:1 16919:1 16963:2 16982:1 16995:1 17038:1 17098:1 17107:1 17127:1 17145:1 17163:2 17196:1 17200:2 17204:1 17236:1 17248:1 17267:2 17291:1 17302:2 17345:2 17361:1 17373:1 17461:3 17482:1 17488:1 17514:2 17521:2 17559:1 17561:1 17584:1 17604:2 17610:1 17658:1 17700:1 17717:1 17718:1 17802:1 17828:1 17835:2 17836:1 17848:2 17867:1 17882:1 17991:1 18028:1 18045:1 18076:1 18108:1 18114:1 18120:4 18174:1 18247:1 18286:1 18344:1 18369:1 18373:1 18425:1 18435:7 18457:2 18472:2 18632:1 18648:2 18728:2 18743:1 18746:1 18759:1 18783:2 18789:1 18833:1 18879:1 18910:1 18911:1 18928:1 18934:2 18951:1 18964:2 18974:1 18984:2 18988:2 19004:1 19008:1 19021:2 19035:1 19036:1 19054:2 19057:3 19065:1 19072:2 19077:2 19113:2 19118:3 19124:1 19132:1 19155:1 19176:1 19226:1 19234:1 19266:2 19284:2 19297:2 19372:1 19387:1 19401:2 19418:1 19428:1 19443:1 19446:1 19450:1 19460:1 19472:2 19504:4 19511:1 19516:1 19521:1 19522:1 19558:2 19571:2 19589:1 19636:1 19664:1 19670:1 19671:1 19676:1 19757:1 19802:6 19812:1 19847:1 19875:1 19883:1 19908:4 19959:1 19980:13 20029:1 20070:1 20083:2 20110:1 20129:3 20179:1 20268:13 20271:1 20293:2 20328:1610 20407:1 20439:1 20468:1 20471:1 20497:3 20521:1 20529:1 20531:1 20557:1 20565:2 20578:2 20582:1 20585:1 20596:1 20662:1 20741:1 20820:1 20825:1 20828:1 20915:1 20977:4 21021:2 21027:1 21044:1 21049:1 21072:1 21079:1 21095:1 21132:1 21140:1 21146:2 21156:1 21160:3 21192:1 21226:1 21237:4 21262:6 21276:1 21298:3 21299:2 21308:1 21309:1 21326:1 21350:1 21359:1 21378:10 21391:1 21417:1 21425:3 21436:2 21442:1 21464:1 21476:1 21511:1 21523:1 21524:2 21551:1 21580:1 21590:1 21635:1 21652:1 21676:1 21747:1 21753:1 21761:1 21777:1 21798:2 21832:1 21862:1 21868:1 21875:2 21879:1 21894:1 21905:1 21936:1 21971:2 21972:1 21978:1 22010:1 22036:1 22045:1 22062:1 22066:1 22068:1 22084:2 22116:1 22117:1 22149:1 22235:2 22240:1 22272:1 22287:1 22288:1 22325:1 22337:1 22339:2 22345:2 22367:1 22381:2 22411:1 22446:1 22450:4 22456:2 22482:1 22512:1 22513:1 22533:1 22538:1 22577:1 22585:1 22604:1 22617:1 22622:1 22630:1 22635:1 22643:1 22655:6 22703:1 22704:1 22716:1 22736:1 22786:1 22810:1 22812:1 22815:2 22819:1 22827:1 22838:1 22870:1 22902:1 22904:1 22939:1 22987:1 22988:2 22992:1 23010:1 23019:1 23034:1 23078:1 23084:4 23116:1 23147:1 23169:1 23178:1 23242:1 23248:1 23257:1 23261:2 23276:2 23280:1 23303:1 23322:1 23346:1 23349:1 23363:1 23392:1 23422:1 23462:3 23476:2 23511:2 23535:2 23571:1 23572:1 23573:1 23583:1 23590:4 23615:1 23657:1 23662:1 23723:2 23744:1 23763:1 23803:1 23826:2 23836:1 23863:1 23870:1 23878:1 23899:1 23921:4 23954:1 23958:1 23965:1 23973:1 24008:1 24009:1 24023:1 24026:2 24055:1 24057:1 24078:1 24115:1 24159:1 24163:1 24164:1 24174:1 24183:1 24225:1 24233:2 24254:1 24263:2 24273:2 24276:2 24283:1 24301:1 24319:1 24327:1 24358:1 24360:1 24382:1 24383:2 24386:1 24407:2 24438:1 24450:2 24455:1 24475:1 24495:2 24534:1 24572:1 24583:1 24586:3 24590:1 24603:1 24613:2 24618:1 24620:2 24627:1 24633:1 24651:1 24657:1 24663:1 24701:4 24716:1 24727:1 24772:1 24777:1 24782:1 24786:1 24787:1 24795:2 24862:2 24863:1 24945:1 24981:1 25019:2 25032:1 25033:1 25044:1 25056:3 25091:5 25097:1 25105:1 25115:4 25148:3 25174:1 25191:1 25192:1 25202:1 25214:1 25215:1 25253:1 25266:1 25271:1 25272:1 25280:2 25323:2 25332:2 25352:1 25353:1 25361:1 25376:1 25391:1 25392:1 25398:2 25410:1 25421:2 25450:1 25470:1 25472:2 25476:1 25525:2 25556:1 25577:1 25630:2 25655:1 25689:1 25694:1 25709:1 25766:2 25781:1 25788:1 25798:4 25835:1 25844:1 25907:1 25919:2 25927:1 25928:1 25995:1 26058:1 26089:1 26123:1 26125:3 26128:1 26133:1 26135:1 26136:1 26139:1 26143:1 26147:2 26154:1 26164:1 26213:1 26225:1 26235:2 26248:2 26263:1 26280:1 26281:1 26288:2 26293:1 26305:5 26389:2 26438:1 26444:1 26552:1 26563:1 26589:1 26592:1 26595:1 26607:1 26608:1 26611:2 26630:1 26631:1 26642:1 26653:1 26769:1 26781:5 26809:2 26821:2 26863:1 26901:1 26915:1 26929:1 27033:1 27034:1 27037:1 27039:1 27052:1 27088:3 27097:1 27104:2 27113:1 27138:1 27145:1 27163:1 27164:1 27209:4 27216:1 27247:1 27253:1 27273:1 27297:3 27302:2 27315:1 27338:1 27352:1 27390:1 27422:1 27426:3 27466:1 27472:2 27515:1 27559:1 27575:1 27582:2 27604:1 27605:1 27620:2 27662:1 27667:1 27685:2 27690:2 27718:2 27737:1 27768:1 27785:1 27799:1 27817:3 27822:1 27839:1 27851:7 27892:1 27945:1 27950:1 28005:1 28040:1 28056:1 28072:1 28084:2 28122:1 28128:1 28139:1 28149:1 28160:1 28189:1 28217:2 28262:2 28275:1 28307:1 28419:1 28428:1 28474:1 28488:1 28540:5 28561:1 28575:1 28658:2 28728:1 28744:1 28755:5 28764:1 28778:4 28783:2 28792:1 28809:1 28823:1 28843:1 28858:5 28911:1 28916:1 28933:13 28947:1 28961:1 28977:1 28984:2 29024:1 29034:2 29039:1 29078:1 29090:1 29126:1 29146:1 29239:2 29240:1 29268:1 29272:1 29292:1 29314:1 29339:1 29349:2 29357:1 29387:2 29396:2 29413:1 29429:1 29457:4 29495:2 29519:1 29546:1 29551:1 29557:3 29560:1 29602:1 29650:1 29652:2 29664:1 29675:1 29684:1 29730:1 29759:1 29762:1 29763:1 29775:1 29795:1 29816:4 29855:1 29866:1 29901:1 29902:1 29930:1 29931:1 29935:1 29988:1 29990:1 30003:1 30036:1 30056:1 30084:2 30113:1 30123:1 30137:6 30145:1 30162:3 30173:1 30180:2 30183:1 30184:2 30225:1 30241:3 30253:1 30263:1 30277:1 30279:1 30280:1 30284:1 30330:3 30334:1 30335:1 30362:1 30385:1 30394:1 30396:4 30438:1 30447:1 30449:2 30459:1 30462:1 30468:1 30508:1 30551:1 30561:2 30580:1 30586:1 30592:1 30646:1 30760:2 30795:2 30815:2 30854:3 30868:1 30871:1 30872:1 30897:1 30898:1 30902:1 30952:1 30962:1 30998:1 31032:1 31037:2 31098:2 31115:1 31184:2 31210:1 31215:1 31258:1 31331:1 31341:1 31355:3 31378:1 31383:1 31407:1 31427:2 31432:1 31446:1 31462:1 31478:2 31481:1 31489:1 31497:1 31505:2 31507:1 31510:1 31550:1 31615:2 18 6:1 14:1 18:1 55:1 123:1 188:4 210:2 214:1 216:1 219:1 237:2 269:2 273:1 283:1 302:1 323:2 339:1 358:1 383:1 389:1 449:1 538:1 548:1 570:1 600:2 603:1 618:1 628:1 632:1 646:1 656:2 683:1 694:1 704:5 715:1 735:1 748:3 756:1 767:2 768:1 782:1 795:1 890:1 898:1 923:1 924:3 937:1 949:1 950:2 970:1 973:1 1014:2 1130:1 1148:1 1167:1 1202:1 1248:4 1279:1 1280:2 1281:1 1283:2 1295:1 1316:2 1342:1 1343:1 1351:2 1434:1 1437:1 1447:1 1453:1 1454:2 1461:1 1465:1 1500:2 1506:1 1520:1 1554:1 1556:2 1558:1 1562:1 1615:2 1619:1 1633:4 1636:1 1647:1 1664:1 1706:1 1720:1 1723:1 1785:1 1789:3 1842:4 1885:1 1960:1 1966:1 1979:2 1981:1 1985:1 1993:2 2014:1 2043:2 2073:1 2079:1 2093:1 2131:1 2133:1 2137:1 2140:4 2143:1 2147:1 2169:1 2183:1 2192:1 2242:1 2253:1 2263:1 2273:1 2290:1 2300:3 2303:1 2310:1 2312:1 2314:1 2315:1 2319:2 2322:1 2326:1 2328:1 2329:1 2342:1 2361:2 2362:1 2365:1 2369:1 2371:1 2374:1 2375:1 2377:1 2381:1 2382:1 2388:1 2393:2 2397:3 2403:2 2412:1 2414:2 2432:14 2442:1 2450:2 2506:4 2517:1 2541:1 2543:1 2547:1 2557:4 2608:1 2621:1 2649:1 2653:1 2662:1 2687:2 2699:1 2701:1 2717:1 2718:1 2720:2 2728:2 2737:1 2820:1 2827:2 2828:1 2847:1 2880:1 2896:1 2952:4 2964:2 3050:2 3063:3 3066:3 3068:1 3088:1 3107:1 3119:4 3126:1 3127:1 3143:2 3164:1 3182:1 3218:1 3226:1 3230:1 3317:2 3330:6 3388:4 3439:1 3442:1 3447:1 3467:1 3479:1 3490:1 3494:1 3495:1 3528:1 3537:2 3545:1 3563:1 3581:1 3600:1 3619:1 3719:1 3728:1 3798:1 3860:1 3928:2 3949:2 3973:2 4010:1 4019:1 4020:1 4056:1 4058:1 4065:2 4066:1 4077:1 4078:1 4086:1 4089:2 4115:2 4128:1 4129:2 4133:1 4173:1 4176:1 4185:2 4186:1 4197:1 4255:1 4260:1 4281:1 4289:1 4307:2 4313:1 4328:1 4348:1 4354:2 4376:1 4390:1 4419:1 4422:1 4431:1 4456:1 4492:1 4496:1 4531:1 4549:1 4560:1 4631:2 4634:1 4677:1 4717:2 4754:2 4757:1 4779:1 4789:1 4803:1 4851:2 4917:1 4922:2 4933:1 4946:2 4968:1 4969:3 4992:1 5002:1 5009:1 5012:1 5046:1 5080:1 5098:2 5108:1 5121:1 5136:1 5154:1 5204:1 5212:1 5245:1 5268:3 5282:1 5310:9 5314:1 5325:1 5335:1 5370:1 5423:1 5440:1 5455:1 5474:1 5481:1 5567:1 5571:1 5581:2 5582:1 5622:1 5648:2 5651:2 5683:1 5719:3 5746:2 5779:1 5783:1 5785:1 5790:2 5800:1 5831:1 5859:5 5882:1 5887:1 5894:1 5900:1 5912:1 5919:1 5925:1 5975:1 6000:1 6006:1 6008:1 6014:1 6020:2 6049:1 6053:2 6110:1 6127:1 6227:1 6242:1 6294:1 6363:2 6378:2 6397:1 6555:1 6557:1 6590:2 6603:2 6612:1 6613:2 6630:2 6645:1 6672:2 6721:1 6763:4 6815:4 6826:2 6828:1 6829:1 6832:3 6851:1 6875:1 6883:1 6916:1 6917:1 6923:1 6931:1 6932:2 6938:1 6942:1 7071:1 7084:1 7093:3 7113:5 7180:1 7197:1 7230:1 7239:5 7268:1 7302:4 7319:1 7333:1 7388:1 7421:2 7428:2 7429:1 7434:1 7460:1 7463:1 7468:1 7532:1 7560:2 7561:1 7575:1 7584:1 7651:1 7658:1 7694:1 7706:1 7750:2 7779:1 7818:1 7870:2 7906:1 7945:4 7979:1 7996:1 8006:1 8030:1 8033:2 8058:4 8104:1 8126:1 8179:1 8185:1 8241:1 8258:2 8289:2 8307:3 8329:2 8332:1 8333:3 8351:2 8352:2 8359:2 8360:2 8364:1 8372:1 8377:1 8378:1 8386:12 8410:4 8441:1 8452:1 8560:1 8569:1 8592:1 8595:2 8710:1 8761:1 8766:2 8781:1 8819:2 8841:1 8879:1 8889:2 8921:4 8950:2 8976:4 8982:2 8984:2 8986:1 9020:1 9021:1 9100:1 9117:1 9134:1 9183:4 9220:5 9285:1 9296:1 9299:1 9300:1 9304:1 9312:1 9317:1 9381:1 9390:1 9417:1 9491:2 9514:2 9648:1 9652:2 9658:1 9675:1 9685:1 9701:1 9713:1 9715:1 9725:2 9734:2 9743:2 9785:1 9799:1 9815:2 9850:1 9856:1 9859:1 9910:2 9920:1 9932:1 10048:1 10116:2 10178:1 10206:1 10211:1 10214:1 10251:1 10257:1 10351:1 10372:3 10385:1 10392:1 10416:1 10434:2 10450:4 10492:1 10503:1 10516:1 10545:1 10552:1 10608:1 10655:1 10659:1 10678:2 10705:1 10716:1 10751:1 10757:1 10777:1 10784:1 10800:3 10822:1 10828:3 10830:1 10857:1 10860:14 10922:1 10971:1 10989:1 11034:1 11113:1 11114:2 11130:1 11178:1 11185:1 11203:1 11209:1 11221:1 11257:1 11295:2 11304:2 11306:1 11313:1 11362:2 11383:1 11388:1 11404:1 11453:1 11467:4 11486:1 11489:1 11503:1 11515:1 11520:1 11553:1 11557:2 11574:2 11591:2 11608:1 11655:1 11661:2 11663:1 11710:5 11730:1 11798:1 11820:1 11840:2 11854:1 11860:1 11863:2 11866:1 11883:1 11886:2 11887:1 11888:1 11893:1 11896:1 11929:1 11943:1 12025:1 12026:1 12042:4 12048:1 12071:1 12072:1 12088:1 12097:1 12145:1 12220:1 12258:1 12319:1 12327:1 12373:1 12399:1 12420:1 12475:1 12489:1 12551:1 12564:1 12574:1 12583:1 12595:1 12630:1 12646:2 12648:1 12653:1 12665:1 12677:3 12680:1 12686:2 12704:1 12706:4 12716:2 12730:1 12735:1 12739:3 12745:1 12778:1 12810:1 12838:1 12884:1 12890:1 12983:1 13034:1 13053:1 13055:2 13081:2 13086:1 13091:1 13098:1 13105:2 13142:1 13166:1 13188:1 13191:1 13209:2 13232:1 13270:1 13337:1 13351:1 13369:1 13387:2 13392:1 13550:1 13616:1 13637:1 13674:2 13698:1 13703:1 13736:1 13762:3 13794:1 13797:1 13825:1 13834:1 13845:1 13855:1 13987:1 13989:1 13993:1 14001:4 14061:2 14082:1 14103:1 14204:1 14236:1 14250:2 14274:1 14301:4 14314:1 14326:1 14328:2 14355:1 14393:1 14395:1 14404:1 14426:2 14450:1 14467:1 14474:1 14482:2 14483:1 14493:1 14514:1 14523:1 14524:1 14552:1 14557:2 14582:1 14662:3 14677:1 14717:1 14749:1 14752:2 14757:1 14804:1 14837:1 14847:2 14890:1 14915:4 14936:2 14987:1 14990:1 15026:1 15035:1 15059:1 15078:1 15114:1 15154:2 15195:1 15210:1 15213:2 15219:1 15338:1 15344:1 15375:1 15438:5 15455:1 15503:1 15512:1 15528:1 15530:2 15535:1 15541:1 15551:1 15553:1 15558:1 15585:1 15604:14 15606:2 15659:1 15660:1 15663:1 15710:3 15715:1 15744:1 15763:1 15764:1 15843:1 15852:1 15871:1 15925:1 15951:1 16006:2 16019:2 16130:1 16132:1 16153:1 16158:2 16169:1 16175:1 16195:1 16196:2 16201:2 16227:1 16236:1 16255:1 16256:5 16259:2 16332:1 16335:1 16351:1 16375:3 16461:1 16469:1 16491:1 16506:1 16524:1 16539:4 16594:1 16645:1 16699:2 16709:1 16722:1 16732:1 16780:1 16804:7 16806:1 16817:1 16825:1 16838:1 16869:1 16890:1 16919:1 16963:2 16972:1 16982:1 16995:1 17038:1 17098:1 17107:1 17127:1 17145:1 17163:2 17196:1 17200:2 17204:1 17236:1 17248:1 17267:2 17291:1 17302:2 17345:2 17361:1 17373:1 17461:3 17482:1 17488:1 17514:2 17521:3 17559:1 17561:1 17584:1 17604:2 17610:1 17658:1 17671:1 17700:1 17717:1 17718:1 17802:1 17828:1 17834:1 17835:2 17836:1 17848:2 17867:1 17882:1 17991:1 18028:1 18045:1 18076:1 18108:1 18114:1 18120:4 18174:2 18247:1 18286:1 18344:1 18369:1 18373:1 18421:1 18425:1 18427:1 18435:7 18457:2 18472:2 18515:1 18632:1 18648:2 18728:2 18743:1 18746:1 18752:1 18759:1 18783:2 18789:1 18833:1 18879:1 18910:1 18911:1 18928:1 18934:2 18951:1 18964:2 18974:1 18984:2 18988:2 19004:1 19008:1 19021:2 19035:1 19036:1 19054:3 19057:3 19065:1 19066:1 19072:2 19077:2 19113:2 19118:3 19124:1 19132:1 19155:1 19176:1 19226:1 19234:1 19266:2 19284:2 19297:2 19372:1 19387:1 19401:2 19418:1 19428:1 19443:1 19446:1 19450:1 19460:1 19472:2 19504:4 19511:2 19516:1 19521:1 19522:1 19558:3 19571:3 19589:1 19636:1 19664:1 19670:1 19671:1 19676:1 19757:1 19802:6 19812:1 19847:1 19875:1 19883:1 19908:4 19959:1 19980:14 20029:1 20070:1 20083:2 20110:1 20129:3 20179:1 20268:14 20271:1 20293:2 20328:1703 20407:1 20439:1 20468:1 20471:1 20497:3 20521:1 20529:1 20530:1 20531:1 20557:1 20565:2 20578:2 20582:1 20585:1 20596:1 20662:1 20741:1 20820:1 20825:1 20828:1 20915:1 20977:4 21007:1 21021:2 21027:1 21044:1 21049:1 21072:1 21079:1 21095:1 21132:1 21140:1 21146:2 21156:1 21160:3 21192:2 21226:1 21237:4 21262:6 21276:1 21291:1 21298:3 21299:2 21308:1 21309:1 21326:2 21350:1 21359:1 21378:10 21391:1 21417:1 21425:3 21436:2 21442:1 21464:1 21476:1 21511:1 21523:1 21524:2 21551:1 21580:1 21590:1 21597:1 21603:1 21635:1 21652:1 21666:1 21676:1 21747:1 21753:1 21761:1 21777:1 21798:2 21832:1 21862:1 21868:1 21875:2 21879:1 21894:1 21905:1 21936:1 21971:2 21972:1 21978:1 22010:1 22036:1 22045:2 22062:1 22066:1 22068:1 22084:2 22116:1 22117:1 22149:1 22235:2 22240:1 22272:1 22287:1 22288:1 22325:1 22337:1 22339:2 22345:2 22367:1 22381:2 22411:1 22446:1 22450:4 22456:2 22476:1 22482:1 22512:1 22513:1 22533:1 22538:1 22577:1 22585:1 22604:1 22617:1 22622:1 22630:1 22635:1 22643:1 22655:6 22657:1 22674:1 22703:1 22704:1 22716:1 22736:1 22747:1 22784:1 22786:1 22810:1 22812:1 22815:2 22819:1 22827:1 22838:1 22870:1 22902:1 22904:1 22939:1 22987:1 22988:2 22992:1 23010:1 23019:1 23026:1 23034:1 23078:1 23084:4 23116:1 23129:1 23147:1 23169:1 23178:1 23242:1 23248:1 23257:1 23261:2 23276:2 23280:1 23303:1 23322:1 23346:2 23349:1 23363:1 23392:1 23422:1 23462:3 23476:2 23511:2 23535:2 23571:1 23572:1 23573:1 23583:1 23590:4 23615:1 23657:1 23662:1 23723:2 23744:1 23763:1 23803:1 23826:2 23836:1 23863:1 23870:1 23878:1 23899:1 23921:5 23954:1 23958:1 23965:1 23973:1 24008:1 24009:1 24023:1 24026:2 24055:1 24057:1 24078:1 24115:1 24159:1 24163:1 24164:1 24174:1 24183:1 24225:1 24233:2 24254:1 24263:2 24273:2 24276:2 24283:1 24301:1 24319:1 24327:1 24358:1 24360:1 24382:1 24383:2 24386:1 24407:2 24438:1 24450:2 24455:1 24475:1 24495:2 24518:1 24534:1 24554:1 24572:1 24583:1 24586:3 24590:1 24603:1 24613:2 24618:1 24620:2 24627:1 24633:1 24651:1 24657:1 24663:1 24701:4 24716:1 24727:1 24772:1 24777:1 24782:1 24786:1 24787:1 24795:2 24862:2 24863:1 24945:1 24976:1 24981:1 25019:2 25032:1 25033:1 25044:1 25056:4 25091:5 25097:1 25105:1 25115:4 25148:3 25174:1 25191:1 25192:1 25193:1 25202:1 25214:1 25215:1 25253:1 25266:1 25271:1 25272:1 25280:2 25323:2 25332:2 25352:1 25353:1 25361:1 25376:1 25391:1 25392:1 25398:2 25410:1 25421:2 25450:1 25470:1 25472:2 25476:1 25525:2 25556:1 25572:1 25577:1 25593:1 25630:2 25655:1 25689:1 25694:1 25709:1 25766:2 25772:1 25781:1 25788:1 25798:4 25835:1 25844:1 25907:1 25919:2 25927:1 25928:1 25995:1 26058:1 26089:1 26123:1 26125:3 26128:1 26133:1 26135:1 26136:1 26139:1 26143:1 26147:2 26154:1 26164:1 26213:1 26225:1 26235:2 26248:3 26263:1 26280:1 26281:1 26288:2 26293:1 26305:5 26389:2 26438:1 26444:1 26552:1 26563:1 26589:1 26592:1 26595:1 26607:1 26608:1 26611:2 26618:1 26630:1 26631:1 26642:1 26653:1 26769:1 26781:5 26809:2 26821:2 26863:1 26901:1 26915:1 26929:1 27033:1 27034:1 27037:1 27039:1 27052:1 27088:3 27097:1 27104:2 27113:1 27138:1 27145:1 27163:1 27164:1 27209:4 27216:1 27247:1 27253:1 27273:1 27297:3 27302:2 27315:1 27338:1 27352:1 27390:1 27422:1 27426:3 27466:1 27472:2 27515:1 27559:1 27575:1 27582:2 27604:1 27605:1 27620:2 27662:1 27667:1 27685:2 27690:2 27718:2 27737:1 27768:1 27785:1 27799:1 27817:3 27822:1 27839:1 27851:7 27892:1 27945:1 27950:1 28005:1 28040:1 28056:1 28072:1 28084:2 28122:1 28128:1 28139:1 28149:1 28160:1 28189:1 28217:2 28262:2 28275:1 28307:1 28419:1 28428:1 28474:1 28488:1 28540:5 28561:1 28575:1 28658:2 28728:1 28744:1 28755:6 28764:1 28778:5 28783:2 28792:1 28809:1 28823:1 28843:1 28858:5 28877:1 28911:1 28916:1 28933:14 28947:1 28961:1 28977:1 28984:2 29024:1 29034:2 29039:1 29078:1 29090:1 29126:1 29146:1 29221:1 29239:2 29240:1 29268:1 29272:1 29292:1 29314:1 29339:1 29349:2 29357:1 29387:2 29396:2 29413:1 29429:1 29457:4 29495:2 29519:1 29546:1 29551:1 29557:3 29560:1 29602:1 29650:1 29652:2 29664:1 29675:1 29684:1 29730:1 29759:1 29762:1 29763:1 29775:1 29795:1 29816:5 29855:1 29865:1 29866:1 29901:1 29902:1 29930:1 29931:1 29935:1 29988:1 29990:1 29998:1 30003:1 30036:1 30056:2 30084:2 30113:1 30123:1 30137:6 30145:1 30162:3 30173:1 30180:2 30183:1 30184:2 30225:1 30241:3 30253:1 30263:1 30277:1 30279:1 30280:1 30284:1 30330:3 30334:1 30335:1 30362:1 30385:1 30394:1 30396:4 30438:1 30447:1 30449:2 30459:1 30462:1 30468:1 30508:1 30551:1 30561:2 30580:1 30586:1 30592:1 30646:1 30680:1 30760:2 30795:2 30815:2 30823:1 30854:3 30868:1 30871:1 30872:1 30897:1 30898:1 30902:1 30952:1 30962:1 30998:1 31032:1 31037:2 31098:2 31115:1 31184:2 31210:1 31215:1 31258:1 31331:1 31341:1 31355:3 31378:1 31383:1 31407:1 31427:2 31432:1 31446:1 31462:1 31478:2 31481:1 31489:1 31497:1 31505:2 31507:1 31510:1 31548:1 31550:1 31559:1 31615:2 18 6:1 14:1 18:1 55:1 123:1 188:4 210:2 214:1 216:2 219:1 237:2 269:2 273:1 283:1 302:1 323:2 339:2 358:1 372:2 383:1 389:1 449:1 454:1 538:1 548:1 570:1 600:2 603:1 618:1 628:1 632:1 646:1 656:2 683:1 694:1 704:5 715:1 735:1 748:3 756:1 767:2 768:1 782:1 795:1 888:1 890:1 898:1 923:1 924:3 937:1 949:1 950:2 970:1 973:1 1014:2 1130:1 1148:1 1167:1 1202:1 1248:4 1279:1 1280:2 1281:1 1283:2 1295:1 1316:2 1342:1 1343:1 1351:2 1434:1 1437:1 1447:1 1453:1 1454:2 1461:1 1465:1 1500:2 1506:1 1520:1 1554:1 1556:2 1558:1 1562:1 1595:1 1615:2 1619:1 1633:4 1636:1 1647:1 1662:1 1664:1 1706:1 1720:1 1723:1 1785:1 1789:3 1842:4 1885:1 1960:1 1966:1 1979:2 1981:1 1985:1 1993:2 2014:1 2043:2 2073:1 2079:1 2093:1 2131:1 2133:1 2137:1 2140:4 2143:1 2147:1 2169:1 2183:1 2192:1 2242:1 2253:1 2263:1 2273:1 2290:1 2300:3 2303:1 2310:1 2312:2 2314:1 2315:1 2319:2 2322:1 2326:1 2328:1 2329:1 2342:1 2361:2 2362:1 2365:1 2369:1 2371:1 2374:1 2375:1 2377:1 2381:1 2382:1 2388:1 2393:2 2397:4 2403:2 2412:1 2414:2 2416:1 2432:15 2442:1 2450:2 2506:4 2517:1 2541:1 2543:1 2545:1 2547:1 2557:4 2608:1 2621:1 2649:1 2653:1 2662:1 2687:2 2699:1 2701:1 2717:1 2718:1 2720:2 2728:2 2737:1 2820:1 2827:2 2828:1 2847:1 2880:1 2896:1 2925:1 2952:5 2964:2 2974:1 3050:2 3063:3 3066:3 3068:1 3088:1 3107:1 3119:5 3126:1 3127:1 3143:2 3164:1 3182:1 3218:1 3226:1 3230:1 3317:2 3330:6 3388:4 3439:1 3442:1 3447:1 3448:1 3467:1 3479:1 3490:1 3494:1 3495:1 3528:2 3537:2 3545:1 3563:1 3581:1 3600:1 3619:1 3719:1 3728:1 3736:1 3798:1 3828:1 3860:1 3872:1 3928:2 3949:2 3973:2 4010:1 4019:1 4020:1 4056:1 4058:1 4065:2 4066:1 4077:1 4078:1 4086:1 4089:2 4115:2 4128:1 4129:2 4133:1 4173:1 4176:1 4185:2 4186:1 4197:1 4255:1 4260:1 4281:1 4289:1 4307:2 4313:1 4328:1 4348:1 4354:2 4376:1 4390:1 4419:1 4422:1 4431:1 4456:1 4492:1 4496:1 4531:1 4549:1 4560:1 4631:2 4634:1 4677:1 4717:2 4754:2 4757:1 4779:1 4789:1 4803:1 4851:2 4917:1 4922:2 4933:1 4946:2 4968:1 4969:3 4992:1 5002:1 5009:1 5012:2 5046:1 5080:1 5098:2 5108:1 5121:1 5136:1 5154:1 5204:1 5212:1 5245:1 5268:3 5282:1 5310:9 5314:1 5325:1 5335:1 5370:1 5423:1 5440:1 5455:1 5474:1 5481:1 5526:1 5567:1 5571:1 5581:2 5582:1 5622:1 5648:2 5651:2 5683:1 5719:3 5746:2 5779:1 5783:1 5785:1 5790:2 5800:1 5831:1 5859:5 5882:1 5887:1 5894:1 5900:1 5912:1 5919:1 5925:2 5975:1 6000:1 6006:1 6008:1 6014:1 6020:2 6049:1 6053:2 6110:1 6127:1 6227:1 6242:1 6294:1 6341:1 6363:2 6378:2 6397:1 6444:1 6555:1 6557:1 6590:2 6603:2 6612:1 6613:2 6630:2 6645:1 6672:2 6721:1 6763:4 6815:4 6826:2 6828:1 6829:1 6832:3 6851:1 6875:1 6883:1 6916:1 6917:1 6923:1 6931:1 6932:2 6938:1 6942:1 7071:1 7084:1 7093:3 7113:5 7180:1 7197:1 7230:1 7239:5 7240:1 7268:1 7280:1 7302:4 7319:1 7333:1 7369:1 7380:1 7388:1 7421:2 7428:2 7429:1 7434:1 7460:1 7463:1 7468:1 7532:1 7560:2 7561:1 7575:1 7584:1 7651:1 7658:1 7694:1 7706:1 7750:2 7779:1 7818:1 7870:2 7906:1 7945:4 7979:1 7996:1 8006:1 8030:1 8033:2 8058:4 8068:1 8104:1 8126:1 8179:1 8185:1 8241:1 8258:2 8289:2 8307:3 8329:2 8332:1 8333:3 8351:2 8352:2 8359:3 8360:2 8364:1 8372:1 8377:1 8378:1 8386:13 8410:5 8413:1 8441:1 8452:1 8560:1 8569:1 8592:1 8595:2 8710:1 8761:1 8766:2 8781:1 8819:2 8841:1 8879:1 8889:2 8921:5 8950:2 8976:6 8982:2 8984:2 8986:1 9020:1 9021:1 9073:1 9100:1 9117:1 9134:1 9138:1 9183:4 9220:5 9285:1 9296:1 9299:1 9300:1 9304:1 9312:1 9317:1 9381:1 9390:1 9417:1 9491:2 9514:2 9648:1 9652:2 9658:1 9675:1 9685:1 9701:1 9713:1 9715:1 9725:2 9734:2 9743:2 9785:1 9799:1 9815:2 9850:1 9856:1 9859:1 9910:2 9920:1 9932:1 10048:1 10116:2 10178:1 10206:1 10211:1 10214:1 10251:1 10257:1 10351:1 10372:3 10385:1 10392:1 10416:1 10434:2 10450:4 10492:1 10503:1 10516:1 10545:1 10552:1 10608:1 10655:1 10659:1 10678:2 10705:1 10716:1 10751:1 10757:1 10777:1 10784:1 10800:3 10822:1 10828:3 10830:1 10857:1 10860:15 10922:1 10951:1 10971:1 10989:1 11034:1 11113:1 11114:2 11130:1 11178:1 11185:1 11203:1 11209:1 11221:1 11257:1 11295:2 11304:2 11306:1 11313:1 11362:2 11383:1 11388:1 11404:1 11453:1 11467:4 11486:1 11489:1 11503:1 11515:1 11520:1 11553:1 11557:2 11574:2 11591:2 11608:1 11655:1 11661:2 11663:1 11710:5 11730:1 11798:1 11820:1 11840:3 11854:1 11860:1 11863:2 11866:1 11883:1 11886:3 11887:1 11888:1 11893:1 11896:1 11929:1 11943:1 12025:1 12026:1 12042:4 12048:1 12071:1 12072:1 12088:1 12097:1 12145:1 12220:1 12258:1 12319:1 12327:1 12373:1 12399:1 12420:1 12475:1 12489:1 12551:1 12564:1 12574:1 12583:1 12595:2 12630:1 12646:2 12648:1 12653:1 12665:1 12677:3 12680:1 12686:2 12704:1 12706:5 12716:2 12730:1 12735:1 12739:3 12745:1 12778:1 12810:1 12838:1 12884:1 12890:1 12983:1 13027:1 13034:1 13053:1 13055:2 13081:2 13086:1 13091:1 13098:1 13105:2 13142:1 13166:1 13188:1 13191:1 13209:2 13232:1 13270:1 13337:1 13351:2 13369:1 13387:2 13392:1 13405:1 13550:1 13616:1 13637:1 13674:2 13698:1 13703:1 13736:2 13762:3 13794:1 13797:1 13825:1 13834:1 13845:1 13855:1 13987:1 13989:1 13993:1 14001:4 14052:1 14061:3 14082:1 14103:1 14204:1 14236:1 14250:2 14255:1 14274:1 14301:4 14314:1 14326:1 14328:2 14355:1 14393:1 14395:1 14404:1 14426:2 14450:1 14467:1 14474:1 14482:2 14483:1 14493:1 14514:1 14523:1 14524:1 14545:1 14552:1 14557:2 14582:1 14662:3 14677:1 14717:1 14736:1 14744:1 14749:1 14752:2 14757:1 14760:1 14804:1 14837:1 14847:2 14890:1 14915:4 14936:2 14987:1 14990:1 15026:1 15035:1 15059:1 15078:1 15114:1 15154:2 15195:1 15210:1 15213:2 15219:1 15338:1 15344:1 15375:1 15438:5 15455:1 15503:1 15512:1 15528:1 15530:2 15535:1 15541:1 15551:1 15553:1 15558:1 15585:1 15604:15 15606:2 15659:1 15660:1 15663:1 15710:4 15715:1 15744:1 15763:1 15764:1 15843:1 15852:1 15871:1 15925:1 15951:1 16006:2 16019:2 16130:1 16132:1 16153:1 16158:2 16169:1 16175:1 16195:1 16196:2 16201:2 16227:1 16236:1 16255:1 16256:5 16259:2 16332:1 16335:1 16351:1 16375:3 16461:1 16469:1 16491:1 16506:1 16524:1 16539:4 16594:1 16645:1 16699:2 16709:1 16722:1 16732:1 16780:1 16804:7 16806:1 16817:1 16825:1 16838:1 16869:1 16890:1 16919:1 16963:2 16972:1 16982:1 16995:1 17038:1 17058:1 17098:1 17107:1 17127:1 17145:1 17163:2 17164:1 17196:1 17200:2 17204:1 17236:1 17248:1 17267:2 17291:1 17302:2 17345:2 17361:1 17373:1 17461:3 17482:1 17488:1 17514:2 17521:3 17559:1 17561:1 17572:1 17584:1 17599:1 17604:2 17610:1 17658:1 17671:1 17700:1 17717:1 17718:1 17802:1 17828:1 17834:1 17835:2 17836:1 17848:2 17867:1 17882:1 17991:1 18028:1 18045:1 18076:1 18108:1 18114:1 18120:4 18174:2 18247:1 18286:1 18334:1 18344:1 18369:1 18373:1 18421:1 18425:1 18427:1 18435:7 18457:2 18472:2 18479:1 18515:1 18632:1 18648:2 18728:2 18743:1 18746:1 18752:1 18759:1 18783:2 18789:1 18833:1 18879:1 18910:1 18911:1 18928:1 18934:2 18951:1 18964:2 18974:1 18984:2 18988:2 19004:1 19008:1 19021:2 19035:1 19036:1 19054:3 19057:3 19065:1 19066:1 19072:2 19077:2 19113:2 19118:3 19124:1 19132:1 19138:1 19155:1 19176:1 19226:1 19234:1 19266:2 19284:2 19288:1 19297:2 19372:1 19387:1 19401:2 19418:1 19428:1 19443:1 19446:2 19450:1 19460:1 19472:2 19504:4 19511:3 19516:1 19521:1 19522:1 19558:3 19571:3 19589:1 19636:1 19664:1 19670:1 19671:1 19676:1 19757:1 19802:6 19812:1 19847:1 19875:1 19883:1 19908:4 19959:1 19980:15 20029:1 20070:1 20083:2 20110:1 20129:3 20174:1 20179:1 20268:15 20271:1 20293:2 20304:1 20328:1746 20407:1 20439:1 20468:1 20471:1 20497:3 20521:1 20529:1 20530:1 20531:1 20557:1 20565:2 20578:2 20582:1 20585:1 20596:1 20662:1 20741:1 20796:1 20820:1 20825:1 20828:1 20915:1 20977:4 21007:1 21021:2 21027:1 21044:1 21049:1 21072:1 21079:1 21095:1 21132:1 21140:1 21146:2 21156:1 21160:3 21192:2 21226:1 21237:4 21262:6 21276:1 21291:1 21298:3 21299:2 21308:1 21309:1 21326:2 21350:1 21359:1 21378:11 21391:1 21417:1 21425:3 21436:2 21442:1 21446:1 21464:1 21476:1 21511:1 21523:1 21524:2 21551:1 21580:1 21590:1 21597:1 21603:1 21635:1 21652:1 21666:1 21676:1 21747:1 21753:1 21755:1 21761:1 21777:1 21798:2 21832:1 21862:1 21868:1 21875:3 21879:1 21894:1 21905:1 21936:1 21971:2 21972:1 21978:1 22010:1 22036:1 22045:2 22062:1 22066:1 22068:1 22084:3 22116:1 22117:1 22149:1 22159:1 22235:2 22240:1 22272:1 22287:1 22288:2 22307:1 22325:1 22337:1 22339:2 22345:2 22367:1 22381:2 22411:1 22446:1 22450:4 22456:2 22476:1 22482:2 22512:1 22513:1 22533:1 22538:1 22577:1 22585:1 22604:1 22617:1 22622:1 22630:1 22635:1 22643:1 22655:6 22657:1 22674:2 22703:1 22704:1 22716:1 22736:1 22747:1 22784:1 22786:1 22810:1 22812:1 22815:2 22819:1 22827:1 22838:1 22854:1 22870:1 22902:1 22904:1 22939:1 22987:1 22988:2 22992:1 23010:1 23019:1 23026:1 23034:1 23078:1 23084:4 23116:1 23129:1 23147:1 23169:1 23178:1 23242:1 23248:1 23257:1 23261:2 23276:2 23280:1 23303:1 23322:1 23346:2 23349:1 23363:1 23392:1 23422:1 23462:3 23476:2 23511:2 23519:1 23535:2 23571:1 23572:1 23573:1 23583:1 23590:4 23615:1 23657:1 23662:1 23723:2 23737:1 23744:1 23763:1 23803:1 23826:2 23836:1 23863:2 23870:1 23878:1 23899:1 23921:5 23954:1 23958:1 23965:1 23973:1 24008:1 24009:1 24023:1 24026:2 24055:1 24057:1 24078:1 24115:1 24159:1 24163:1 24164:1 24174:1 24183:1 24225:1 24233:2 24254:1 24263:2 24273:2 24276:2 24283:1 24301:1 24319:1 24327:1 24358:1 24360:1 24382:1 24383:2 24386:1 24402:1 24407:2 24438:1 24450:2 24455:1 24475:1 24486:1 24487:1 24495:2 24518:1 24534:1 24554:1 24572:1 24583:1 24586:4 24590:1 24603:1 24613:2 24618:1 24620:2 24627:1 24633:1 24651:1 24657:1 24663:1 24701:4 24716:1 24727:1 24772:1 24777:1 24782:1 24786:1 24787:1 24795:2 24862:2 24863:1 24945:1 24976:1 24981:1 25019:2 25032:1 25033:1 25044:1 25056:4 25091:5 25097:1 25105:1 25115:4 25148:3 25174:1 25191:1 25192:1 25193:1 25202:1 25214:1 25215:1 25253:1 25266:1 25271:1 25272:1 25280:2 25323:2 25332:3 25340:1 25352:1 25353:1 25361:1 25376:1 25391:1 25392:1 25398:2 25410:1 25421:2 25442:1 25450:1 25470:1 25472:2 25476:1 25525:2 25556:1 25572:1 25577:1 25593:1 25630:2 25655:1 25689:1 25694:1 25709:1 25766:2 25772:1 25781:1 25788:1 25798:4 25835:1 25844:1 25907:1 25919:2 25927:1 25928:1 25995:1 26012:1 26058:1 26089:1 26123:1 26125:3 26128:1 26133:1 26135:1 26136:1 26139:1 26143:1 26147:2 26154:1 26164:1 26213:1 26225:1 26235:2 26248:3 26263:1 26280:1 26281:1 26288:2 26293:1 26305:5 26339:1 26389:2 26438:1 26444:1 26447:1 26466:1 26552:1 26563:1 26589:1 26592:1 26594:1 26595:1 26604:1 26607:1 26608:1 26611:2 26618:1 26630:1 26631:1 26642:1 26653:2 26769:1 26781:5 26809:2 26821:2 26863:1 26901:1 26915:1 26929:1 27033:1 27034:1 27037:2 27039:1 27052:1 27088:3 27097:1 27104:2 27113:1 27138:1 27145:1 27163:1 27164:1 27209:4 27216:1 27247:1 27253:1 27273:1 27297:3 27302:2 27315:1 27338:1 27352:1 27390:1 27422:1 27426:3 27466:1 27472:2 27515:1 27559:1 27575:1 27582:2 27604:1 27605:1 27620:2 27662:1 27667:1 27685:2 27690:2 27718:2 27737:1 27768:1 27785:1 27799:1 27817:3 27822:1 27839:1 27851:7 27892:1 27945:1 27950:1 28000:1 28005:1 28040:1 28056:1 28072:1 28084:2 28122:1 28128:1 28139:1 28149:1 28159:1 28160:1 28189:1 28217:2 28262:2 28275:1 28307:1 28419:1 28428:1 28474:1 28488:1 28540:5 28561:1 28575:1 28658:2 28728:1 28744:1 28755:6 28764:1 28778:5 28783:2 28792:1 28809:1 28823:1 28843:1 28858:5 28877:1 28911:1 28916:1 28933:15 28947:1 28961:1 28977:1 28984:2 29024:1 29034:2 29039:1 29078:1 29090:1 29126:1 29146:1 29221:1 29239:2 29240:1 29268:1 29272:1 29292:1 29314:1 29339:1 29349:2 29357:1 29387:2 29396:2 29404:1 29413:1 29429:1 29444:1 29457:4 29495:2 29519:1 29546:1 29551:1 29557:3 29560:1 29602:1 29650:1 29652:2 29664:1 29675:1 29684:1 29730:1 29759:1 29762:1 29763:1 29775:1 29795:1 29816:5 29855:1 29865:1 29866:1 29901:1 29902:1 29930:1 29931:1 29935:1 29988:1 29990:1 29998:1 30003:1 30036:1 30056:2 30084:2 30113:1 30123:1 30137:6 30145:1 30162:3 30173:1 30180:2 30183:1 30184:2 30225:1 30241:4 30253:1 30263:1 30277:1 30279:1 30280:1 30284:1 30312:1 30330:3 30334:1 30335:1 30362:1 30385:1 30394:1 30396:4 30438:1 30447:1 30449:2 30459:1 30462:2 30468:1 30508:1 30538:1 30551:1 30561:2 30580:1 30586:1 30592:1 30646:1 30680:1 30760:2 30795:2 30815:2 30823:1 30854:3 30868:1 30871:1 30872:1 30897:1 30898:1 30902:1 30952:1 30962:1 30998:1 31032:1 31037:2 31076:1 31089:1 31098:2 31115:1 31184:2 31210:1 31215:1 31233:1 31258:1 31331:1 31341:1 31355:3 31378:1 31383:1 31407:1 31427:2 31432:1 31446:1 31462:1 31478:2 31481:1 31489:1 31497:1 31505:2 31507:1 31510:1 31548:1 31550:1 31559:1 31615:2 18 6:1 14:1 18:1 55:1 123:1 188:4 210:2 214:1 216:2 219:1 237:2 269:2 273:1 283:1 302:1 323:2 339:2 358:1 372:2 383:1 389:1 449:1 454:1 538:1 548:1 570:1 600:2 603:1 618:1 628:1 632:1 646:1 656:2 683:1 694:1 704:5 715:1 716:1 735:1 748:3 756:1 767:2 768:1 782:1 795:1 888:1 890:1 898:1 923:1 924:3 937:1 949:1 950:2 964:1 970:1 973:1 1014:2 1130:1 1132:1 1148:1 1167:1 1202:1 1248:4 1279:1 1280:2 1281:1 1283:2 1295:1 1316:2 1342:1 1343:1 1351:2 1434:1 1437:1 1447:1 1453:1 1454:2 1461:1 1465:1 1500:2 1506:1 1520:1 1554:1 1556:2 1558:1 1562:1 1595:1 1615:2 1619:1 1633:4 1636:1 1647:1 1662:1 1664:1 1706:1 1720:1 1723:1 1785:1 1789:3 1842:4 1885:1 1960:1 1966:1 1979:2 1981:1 1985:1 1993:3 2014:1 2043:2 2073:1 2079:1 2093:1 2117:1 2131:1 2133:1 2137:1 2140:5 2143:1 2147:1 2169:1 2183:1 2192:1 2242:1 2253:1 2263:1 2273:1 2290:1 2300:3 2303:1 2310:1 2312:2 2314:1 2315:1 2319:2 2322:1 2326:1 2328:1 2329:1 2342:1 2361:2 2362:1 2365:1 2369:1 2371:1 2374:1 2375:2 2377:1 2381:1 2382:1 2388:1 2393:2 2397:4 2403:2 2412:1 2414:2 2416:1 2432:16 2442:1 2450:2 2506:4 2517:1 2541:1 2543:1 2545:1 2547:1 2557:4 2608:1 2621:1 2649:1 2653:1 2662:1 2687:2 2699:1 2701:1 2717:1 2718:1 2720:2 2728:2 2737:1 2820:1 2827:2 2828:1 2847:1 2880:1 2896:1 2925:1 2952:5 2964:2 2974:1 3050:2 3063:3 3066:3 3068:1 3088:1 3107:1 3119:6 3126:1 3127:1 3143:2 3164:1 3182:1 3218:1 3226:1 3230:1 3317:2 3330:6 3388:4 3439:1 3442:1 3447:1 3448:1 3467:1 3479:1 3490:1 3494:1 3495:1 3528:2 3537:2 3545:1 3563:1 3581:1 3600:1 3619:1 3719:1 3728:1 3736:1 3798:1 3828:1 3860:1 3872:1 3928:2 3949:2 3973:2 4010:1 4019:1 4020:1 4056:1 4058:1 4065:2 4066:1 4077:1 4078:1 4086:2 4089:2 4115:2 4128:1 4129:2 4133:1 4173:1 4176:1 4185:2 4186:1 4197:1 4255:1 4260:1 4281:1 4289:1 4307:2 4313:1 4328:1 4348:1 4354:2 4376:1 4390:1 4419:1 4422:1 4431:1 4456:1 4492:1 4496:1 4526:1 4531:1 4549:1 4560:1 4631:2 4634:1 4677:1 4717:2 4754:2 4757:1 4779:1 4789:1 4803:1 4851:2 4917:1 4922:2 4933:1 4946:2 4968:1 4969:3 4992:1 5002:1 5009:1 5012:2 5046:1 5080:1 5098:2 5104:1 5108:1 5121:1 5136:1 5154:1 5204:1 5212:1 5245:1 5268:3 5282:1 5310:9 5314:1 5325:1 5335:1 5370:1 5423:1 5440:1 5455:1 5474:1 5481:1 5526:1 5545:1 5567:1 5571:1 5581:2 5582:1 5622:1 5648:2 5651:2 5683:1 5719:3 5746:2 5779:1 5783:1 5785:1 5790:2 5800:1 5831:1 5859:5 5882:1 5887:1 5894:1 5900:1 5912:1 5919:1 5925:2 5975:1 6000:1 6006:1 6008:1 6014:1 6020:2 6049:1 6053:2 6110:1 6127:1 6227:1 6242:1 6294:1 6341:1 6363:2 6378:2 6397:1 6444:1 6480:1 6555:1 6557:1 6590:2 6603:2 6612:1 6613:2 6630:2 6645:1 6672:2 6721:1 6763:4 6815:4 6826:2 6828:1 6829:1 6832:3 6851:1 6875:1 6883:1 6916:1 6917:1 6923:1 6931:1 6932:2 6938:1 6942:1 7071:1 7084:1 7093:3 7113:5 7180:1 7197:1 7230:1 7239:5 7240:1 7268:1 7280:1 7302:4 7319:1 7333:1 7345:1 7369:1 7380:1 7388:1 7421:2 7428:2 7429:1 7434:1 7460:1 7463:1 7468:1 7532:1 7560:2 7561:1 7575:1 7584:1 7651:1 7658:1 7694:1 7706:1 7750:2 7779:1 7818:1 7870:2 7906:1 7945:4 7971:1 7979:1 7996:1 8006:1 8030:1 8033:2 8058:5 8068:1 8104:1 8126:1 8179:1 8185:1 8241:1 8258:2 8289:2 8307:3 8329:2 8332:1 8333:3 8351:2 8352:2 8359:4 8360:2 8364:1 8372:1 8377:1 8378:1 8386:14 8410:6 8413:1 8441:1 8452:1 8560:1 8569:1 8592:1 8595:2 8710:1 8761:1 8766:2 8781:1 8819:2 8841:1 8879:1 8889:2 8921:5 8950:2 8976:6 8982:2 8984:2 8986:1 9020:1 9021:1 9073:1 9100:1 9117:1 9134:1 9138:1 9183:5 9220:5 9285:1 9296:1 9299:1 9300:1 9304:1 9312:1 9317:1 9381:1 9390:1 9417:1 9491:2 9514:2 9648:1 9652:2 9658:2 9675:1 9685:1 9701:1 9713:1 9715:1 9725:2 9734:2 9743:2 9785:1 9799:1 9815:2 9850:1 9856:1 9859:1 9910:2 9920:1 9932:1 10048:1 10116:3 10178:1 10206:1 10211:1 10214:1 10251:1 10257:1 10351:1 10372:3 10385:1 10392:1 10416:1 10434:2 10450:4 10492:1 10503:1 10516:1 10545:1 10552:1 10608:1 10655:1 10659:1 10678:2 10705:1 10716:1 10751:1 10757:1 10777:1 10784:1 10800:3 10822:1 10828:3 10830:1 10857:2 10860:16 10922:1 10951:1 10971:1 10989:1 11034:1 11113:1 11114:2 11130:1 11178:1 11185:1 11203:1 11209:1 11221:1 11257:1 11295:2 11304:2 11306:1 11313:1 11362:2 11383:1 11388:1 11404:2 11453:1 11467:5 11486:1 11489:1 11503:1 11515:1 11520:1 11553:1 11557:2 11574:2 11591:2 11608:1 11655:1 11661:2 11663:1 11710:5 11730:1 11766:1 11798:1 11820:1 11840:3 11854:1 11860:1 11863:2 11866:1 11883:1 11886:3 11887:1 11888:1 11893:1 11896:1 11929:1 11943:1 12025:1 12026:1 12042:4 12048:1 12071:1 12072:1 12088:1 12097:1 12145:1 12220:2 12225:1 12258:1 12319:1 12327:1 12373:1 12399:1 12420:1 12475:1 12489:1 12551:1 12564:1 12574:1 12583:1 12595:2 12630:1 12646:2 12648:1 12653:1 12665:1 12677:3 12680:1 12686:2 12704:1 12706:5 12716:2 12730:1 12735:1 12739:3 12745:1 12778:1 12810:1 12838:1 12884:1 12890:1 12983:1 13027:1 13034:1 13053:1 13055:2 13081:2 13086:1 13091:1 13098:1 13105:2 13142:1 13166:1 13188:1 13191:1 13209:2 13232:2 13270:1 13337:1 13351:3 13369:1 13387:2 13392:1 13405:1 13506:1 13550:1 13616:1 13637:1 13674:2 13698:1 13703:1 13736:2 13762:3 13794:1 13797:1 13825:1 13834:1 13845:1 13855:1 13858:1 13987:1 13989:1 13993:1 14001:4 14052:1 14061:3 14082:1 14103:1 14204:1 14236:1 14250:2 14255:1 14274:1 14301:4 14314:1 14326:1 14328:2 14355:1 14393:1 14395:1 14404:1 14426:2 14450:1 14467:1 14474:1 14482:2 14483:1 14493:1 14514:1 14523:1 14524:1 14545:1 14552:1 14557:2 14582:1 14662:3 14677:2 14717:1 14736:1 14744:1 14749:1 14752:2 14757:1 14760:1 14804:1 14837:1 14847:2 14890:1 14915:4 14936:2 14987:1 14990:1 15026:1 15035:1 15059:1 15078:1 15114:1 15154:2 15195:1 15210:1 15213:2 15219:1 15256:1 15338:1 15344:1 15375:1 15438:5 15455:1 15503:1 15512:1 15528:1 15530:2 15535:1 15541:1 15551:1 15553:1 15558:1 15585:1 15604:16 15606:2 15659:1 15660:1 15663:1 15710:4 15715:1 15744:1 15763:1 15764:1 15843:1 15852:1 15871:1 15925:1 15951:1 16006:2 16019:2 16130:1 16132:1 16153:1 16158:2 16169:1 16175:1 16195:1 16196:2 16201:2 16227:1 16236:1 16255:1 16256:5 16259:2 16288:1 16332:1 16335:1 16351:1 16375:3 16461:1 16469:1 16491:1 16506:1 16524:1 16539:4 16594:2 16645:1 16699:2 16709:2 16722:1 16732:1 16780:1 16804:7 16806:1 16817:1 16825:1 16838:1 16869:1 16890:1 16919:1 16963:2 16972:1 16982:1 16995:1 17038:1 17058:1 17098:1 17107:1 17127:1 17145:1 17163:2 17164:1 17196:1 17200:2 17204:1 17236:1 17248:1 17267:2 17291:1 17302:2 17345:2 17361:1 17373:1 17461:3 17482:1 17488:1 17514:2 17521:3 17559:1 17561:1 17572:1 17584:1 17599:1 17604:2 17610:1 17658:1 17671:1 17700:1 17717:1 17718:1 17802:1 17828:1 17834:1 17835:2 17836:1 17848:2 17867:1 17882:1 17991:1 18028:1 18045:1 18076:1 18108:1 18114:1 18120:4 18174:2 18247:1 18286:1 18334:1 18344:1 18369:1 18373:1 18421:1 18425:1 18427:1 18435:7 18457:2 18472:2 18479:1 18515:1 18615:1 18632:1 18648:2 18728:2 18743:1 18746:1 18752:2 18759:1 18783:2 18789:1 18833:1 18879:1 18910:1 18911:1 18928:1 18934:2 18951:1 18964:2 18974:1 18984:2 18988:2 19004:1 19008:1 19021:2 19035:1 19036:1 19054:3 19057:3 19065:1 19066:1 19072:2 19077:2 19113:2 19118:4 19124:1 19132:1 19138:1 19155:1 19176:1 19226:1 19234:1 19266:2 19284:2 19288:1 19297:2 19372:1 19387:1 19401:2 19414:1 19418:1 19428:1 19443:1 19446:2 19450:1 19460:1 19472:2 19504:4 19511:4 19516:1 19521:1 19522:1 19558:3 19571:3 19589:1 19636:1 19664:1 19670:1 19671:1 19676:1 19757:1 19783:1 19802:6 19812:1 19847:1 19875:1 19883:1 19908:4 19959:1 19980:16 20029:1 20070:1 20083:2 20110:1 20129:3 20174:1 20179:1 20268:16 20271:1 20293:2 20304:1 20328:1807 20407:1 20439:1 20468:1 20471:1 20497:3 20521:1 20529:1 20530:1 20531:1 20557:1 20565:2 20578:2 20582:1 20585:1 20596:1 20662:1 20741:1 20796:1 20820:1 20825:1 20828:1 20915:1 20977:4 21007:1 21021:2 21027:1 21044:1 21049:1 21072:1 21079:1 21095:1 21132:1 21140:1 21146:2 21156:1 21160:3 21192:2 21226:1 21237:4 21262:6 21276:1 21291:1 21298:3 21299:2 21308:1 21309:1 21326:2 21350:1 21359:1 21378:11 21391:1 21417:1 21425:3 21436:2 21442:1 21446:1 21464:1 21476:1 21511:1 21523:1 21524:2 21551:1 21580:1 21590:1 21597:1 21603:1 21635:1 21652:1 21666:1 21676:1 21747:1 21753:1 21755:1 21761:1 21777:1 21798:2 21832:1 21862:1 21868:1 21875:3 21879:1 21894:1 21905:1 21936:1 21971:2 21972:1 21978:1 22010:1 22036:1 22045:2 22062:1 22066:1 22068:1 22084:4 22116:1 22117:1 22149:1 22159:1 22235:2 22240:1 22272:1 22287:1 22288:2 22307:1 22325:1 22337:1 22339:2 22345:2 22367:1 22381:2 22411:1 22446:1 22450:4 22456:2 22476:1 22482:2 22512:1 22513:1 22533:1 22538:1 22577:1 22585:1 22604:1 22617:1 22622:1 22630:1 22635:2 22643:1 22655:6 22657:1 22674:3 22703:1 22704:1 22716:1 22736:1 22747:1 22784:1 22786:1 22810:1 22812:1 22815:2 22819:1 22827:1 22838:1 22854:1 22870:1 22902:1 22904:1 22939:1 22987:1 22988:2 22992:1 23010:1 23019:1 23026:1 23034:1 23078:1 23084:4 23116:1 23129:1 23147:1 23169:1 23178:1 23242:1 23248:1 23257:1 23261:2 23276:2 23280:1 23303:1 23322:1 23346:2 23349:1 23363:1 23392:1 23422:1 23462:3 23476:2 23511:2 23519:1 23535:2 23571:1 23572:1 23573:1 23583:1 23590:4 23615:1 23657:1 23662:1 23723:2 23737:1 23744:1 23763:1 23803:1 23826:2 23836:1 23863:2 23870:1 23878:1 23899:1 23921:5 23954:1 23958:1 23965:1 23973:1 24008:1 24009:1 24023:1 24026:2 24055:1 24057:1 24078:1 24115:1 24153:1 24159:1 24163:1 24164:1 24174:1 24183:1 24225:1 24233:2 24254:1 24263:2 24273:2 24276:2 24283:1 24301:1 24319:1 24327:1 24358:1 24360:1 24382:1 24383:2 24386:1 24402:1 24407:2 24438:1 24450:2 24455:1 24475:1 24486:1 24487:1 24495:2 24518:1 24534:1 24554:1 24572:1 24583:1 24586:4 24590:1 24603:1 24613:2 24618:1 24620:2 24627:1 24633:1 24651:1 24657:1 24663:1 24701:4 24716:1 24727:1 24772:1 24777:1 24782:1 24786:1 24787:1 24795:2 24839:1 24862:2 24863:1 24945:1 24976:1 24981:1 25019:2 25032:1 25033:1 25044:1 25056:4 25091:5 25097:1 25105:1 25115:4 25148:3 25174:1 25191:1 25192:1 25193:1 25202:1 25214:1 25215:1 25253:1 25266:1 25271:1 25272:1 25280:2 25323:2 25332:3 25340:1 25352:1 25353:1 25361:1 25376:1 25391:1 25392:1 25398:2 25410:1 25421:2 25442:1 25450:1 25470:1 25472:2 25476:1 25525:2 25556:1 25572:1 25577:1 25593:1 25630:2 25655:1 25689:1 25694:1 25709:1 25766:2 25772:1 25781:1 25788:1 25798:4 25835:1 25844:1 25907:1 25919:2 25927:1 25928:1 25995:1 26012:1 26058:1 26089:1 26107:1 26123:1 26125:3 26128:1 26133:1 26135:1 26136:1 26139:1 26143:1 26147:2 26154:1 26164:1 26213:1 26225:1 26235:2 26248:3 26263:1 26280:1 26281:1 26288:2 26293:1 26305:5 26339:1 26389:2 26438:1 26444:1 26447:1 26466:1 26552:1 26563:1 26589:1 26592:1 26594:1 26595:1 26604:1 26607:1 26608:1 26611:2 26618:1 26630:1 26631:1 26642:1 26653:2 26769:1 26781:5 26809:2 26821:2 26863:1 26901:1 26915:1 26929:1 27033:1 27034:1 27037:2 27039:1 27052:1 27075:1 27088:3 27097:1 27104:2 27113:1 27138:1 27145:1 27163:1 27164:1 27177:1 27209:4 27216:1 27247:1 27253:1 27273:1 27297:3 27302:2 27315:1 27326:1 27338:1 27352:1 27390:1 27422:1 27426:3 27427:1 27466:1 27472:2 27515:1 27559:1 27575:1 27582:2 27583:1 27604:1 27605:1 27620:2 27662:1 27667:1 27685:2 27690:2 27718:2 27737:1 27768:1 27785:1 27788:1 27799:1 27817:3 27822:1 27839:1 27851:7 27892:1 27945:1 27950:1 28000:1 28005:1 28040:1 28056:1 28072:1 28084:2 28122:1 28128:1 28139:1 28149:1 28159:1 28160:1 28189:1 28207:1 28217:2 28256:1 28262:2 28275:1 28307:1 28419:1 28428:1 28459:1 28474:1 28488:1 28540:5 28561:1 28575:1 28658:2 28728:1 28744:1 28754:1 28755:6 28764:1 28778:5 28783:2 28792:1 28809:1 28823:1 28843:1 28858:5 28877:1 28911:1 28916:1 28933:16 28947:1 28960:1 28961:1 28977:1 28984:2 29024:1 29034:2 29039:1 29078:1 29090:1 29126:1 29146:1 29221:1 29239:2 29240:1 29268:1 29272:1 29292:1 29314:1 29339:1 29349:2 29357:1 29387:2 29396:2 29404:1 29413:1 29429:1 29431:1 29444:1 29457:4 29495:2 29519:1 29546:1 29551:1 29557:3 29560:1 29602:1 29650:1 29652:2 29664:1 29675:1 29684:1 29730:1 29759:1 29762:1 29763:1 29775:1 29795:1 29816:5 29855:1 29865:1 29866:1 29901:1 29902:1 29930:1 29931:1 29935:1 29988:1 29990:1 29998:1 30003:1 30036:1 30056:2 30084:2 30113:1 30123:1 30137:6 30145:1 30162:3 30173:1 30180:2 30183:1 30184:2 30225:1 30241:4 30253:1 30263:1 30277:1 30279:1 30280:1 30284:1 30312:1 30330:3 30334:1 30335:1 30362:1 30385:1 30394:1 30396:4 30438:1 30447:1 30449:2 30459:1 30462:2 30468:1 30508:1 30538:1 30551:1 30561:2 30580:1 30586:1 30592:1 30646:1 30679:1 30680:1 30760:2 30795:2 30815:2 30823:1 30854:3 30868:1 30871:1 30872:1 30897:1 30898:1 30902:1 30952:1 30962:1 30998:1 31032:1 31037:2 31076:1 31089:1 31098:2 31115:1 31184:2 31210:1 31215:1 31233:1 31258:1 31316:1 31331:1 31341:1 31355:3 31359:1 31378:1 31383:1 31407:1 31427:2 31432:1 31446:1 31462:1 31478:2 31481:1 31489:1 31497:1 31505:2 31507:1 31510:1 31548:1 31550:1 31559:1 31615:2 18 6:1 14:1 18:1 55:1 123:1 188:4 210:2 214:1 216:2 219:1 237:2 269:2 273:1 283:1 302:1 323:2 339:3 358:1 372:4 383:1 389:1 449:3 454:1 538:1 548:1 570:1 600:3 603:1 618:1 628:1 632:1 646:1 656:2 683:1 694:1 704:5 715:1 716:1 735:1 748:3 756:1 767:2 768:1 782:1 790:1 795:1 888:2 890:1 898:1 923:1 924:3 926:1 937:1 949:1 950:2 964:1 970:1 973:1 1014:2 1130:1 1132:1 1148:1 1167:1 1202:1 1248:4 1279:1 1280:2 1281:1 1283:2 1295:1 1316:2 1342:1 1343:1 1351:2 1434:1 1437:1 1447:1 1453:1 1454:2 1461:1 1465:1 1500:3 1506:1 1520:1 1554:1 1556:2 1558:1 1562:1 1595:1 1615:2 1619:1 1633:4 1636:1 1647:2 1662:1 1664:1 1706:1 1720:1 1723:1 1752:1 1785:1 1789:3 1842:4 1885:1 1960:1 1966:1 1979:2 1981:1 1985:1 1993:3 2014:1 2043:2 2073:1 2079:1 2093:1 2117:1 2131:1 2133:1 2137:1 2140:5 2143:1 2147:1 2169:1 2183:1 2192:1 2242:1 2253:1 2263:1 2273:1 2290:1 2300:3 2303:1 2310:1 2312:3 2314:1 2315:1 2319:2 2322:1 2326:1 2328:1 2329:1 2342:1 2361:2 2362:1 2365:1 2369:1 2371:1 2374:1 2375:2 2377:2 2381:1 2382:1 2388:1 2393:2 2396:1 2397:4 2403:2 2412:1 2414:2 2416:1 2432:16 2442:1 2450:2 2506:4 2517:1 2541:1 2543:1 2545:1 2547:1 2557:4 2608:1 2621:1 2649:1 2653:1 2662:1 2687:2 2699:2 2701:1 2717:1 2718:1 2720:2 2728:2 2737:1 2754:1 2820:1 2827:2 2828:1 2847:1 2880:1 2896:1 2925:1 2952:5 2964:2 2974:1 3050:2 3063:4 3066:3 3068:1 3088:1 3107:1 3119:6 3126:1 3127:2 3143:2 3164:1 3182:1 3218:1 3226:1 3230:1 3317:2 3330:6 3388:4 3439:1 3442:1 3447:1 3448:2 3467:1 3479:1 3490:1 3494:1 3495:1 3500:1 3528:2 3537:2 3545:1 3563:1 3581:1 3600:1 3619:1 3719:1 3728:1 3736:1 3798:1 3828:1 3860:1 3872:1 3928:2 3949:2 3973:2 4010:1 4019:1 4020:1 4056:1 4058:1 4065:2 4066:1 4077:1 4078:1 4086:2 4089:2 4115:2 4128:1 4129:2 4133:2 4173:1 4176:1 4185:2 4186:1 4197:1 4248:1 4255:1 4260:1 4281:1 4289:1 4301:1 4307:2 4313:1 4328:1 4348:1 4354:2 4376:1 4390:1 4419:1 4422:2 4431:1 4456:1 4467:1 4492:1 4496:1 4526:1 4531:1 4549:1 4560:1 4631:2 4634:1 4677:1 4717:2 4754:2 4757:1 4779:1 4789:2 4803:1 4851:2 4917:1 4922:2 4933:1 4946:2 4968:1 4969:3 4992:1 5002:1 5009:1 5012:3 5046:1 5080:1 5098:2 5104:1 5108:1 5116:1 5121:1 5136:1 5154:1 5204:1 5212:1 5245:1 5268:3 5282:1 5310:10 5314:1 5325:1 5335:1 5370:1 5423:1 5440:1 5455:1 5474:1 5481:1 5526:1 5545:1 5567:1 5571:1 5581:2 5582:1 5622:1 5648:2 5651:2 5683:1 5719:3 5746:2 5779:1 5783:1 5785:1 5790:2 5799:1 5800:1 5831:1 5859:5 5882:1 5887:1 5894:1 5900:1 5912:1 5919:1 5925:3 5942:1 5975:1 6000:1 6006:1 6008:1 6014:1 6020:2 6049:1 6053:2 6110:1 6127:1 6227:1 6242:1 6294:1 6341:2 6363:2 6378:2 6397:1 6442:1 6444:1 6480:1 6555:1 6557:1 6590:2 6603:2 6612:1 6613:3 6630:2 6645:1 6672:2 6721:1 6763:4 6815:4 6826:2 6828:1 6829:1 6832:3 6851:1 6875:1 6883:1 6916:1 6917:1 6923:1 6931:1 6932:2 6938:1 6942:2 7071:1 7084:1 7093:3 7113:5 7169:1 7180:1 7197:1 7230:1 7239:5 7240:1 7268:1 7280:1 7302:4 7319:2 7333:1 7345:1 7369:1 7380:1 7388:1 7421:2 7428:2 7429:1 7434:1 7460:1 7463:1 7468:1 7532:1 7560:2 7561:1 7575:1 7584:1 7651:1 7658:1 7694:1 7706:1 7750:3 7779:1 7814:1 7818:1 7870:2 7906:2 7945:4 7971:1 7979:1 7996:1 8006:1 8030:1 8033:2 8058:5 8068:2 8104:1 8126:1 8179:1 8185:1 8241:1 8258:2 8289:2 8307:3 8329:2 8332:1 8333:3 8351:2 8352:2 8359:4 8360:2 8364:1 8372:1 8377:1 8378:1 8386:16 8410:6 8413:1 8441:1 8452:1 8513:1 8546:1 8560:1 8569:1 8592:1 8595:2 8648:1 8710:1 8761:1 8766:2 8781:1 8819:2 8841:1 8879:1 8889:2 8921:5 8950:2 8976:8 8982:3 8984:2 8986:1 9020:1 9021:1 9073:1 9100:1 9117:1 9134:1 9138:2 9183:5 9220:5 9235:1 9285:1 9296:1 9299:1 9300:1 9304:1 9312:1 9317:2 9381:1 9390:1 9417:1 9491:2 9514:2 9648:1 9652:2 9658:2 9675:1 9685:1 9701:1 9713:1 9715:1 9725:2 9734:2 9743:2 9785:1 9799:1 9815:2 9850:1 9856:1 9859:1 9910:2 9920:1 9932:1 9934:1 10048:1 10095:1 10116:3 10178:1 10206:1 10211:1 10214:1 10251:2 10257:1 10351:1 10372:3 10377:1 10381:1 10385:1 10392:1 10416:1 10430:1 10434:2 10450:4 10492:1 10503:1 10510:1 10516:1 10545:1 10552:1 10608:1 10655:1 10659:2 10678:3 10705:1 10716:1 10751:1 10757:2 10777:1 10784:1 10800:3 10822:1 10828:3 10830:1 10857:2 10860:16 10922:1 10951:2 10971:1 10989:1 11034:1 11113:1 11114:2 11130:1 11178:1 11185:1 11189:1 11203:1 11209:1 11221:1 11257:1 11274:1 11295:2 11304:2 11306:1 11313:2 11362:2 11383:1 11388:1 11404:2 11453:1 11467:5 11486:1 11489:1 11503:1 11515:2 11520:1 11553:1 11557:2 11574:2 11591:2 11608:1 11655:1 11661:2 11663:1 11710:5 11730:1 11766:1 11798:1 11820:1 11840:3 11854:1 11860:1 11863:2 11866:1 11879:1 11883:1 11886:3 11887:1 11888:1 11893:1 11896:1 11929:1 11943:1 12025:1 12026:1 12042:4 12048:1 12071:1 12072:1 12088:1 12097:1 12145:1 12220:2 12225:1 12258:1 12319:1 12327:1 12373:1 12399:1 12420:1 12475:1 12489:1 12551:1 12564:1 12574:1 12583:1 12595:2 12630:1 12646:2 12648:1 12653:1 12665:1 12677:3 12680:2 12686:2 12704:1 12706:5 12716:2 12730:1 12735:1 12739:3 12745:1 12778:1 12810:2 12838:1 12884:1 12890:1 12983:1 13027:1 13034:1 13053:1 13055:2 13081:2 13086:1 13091:1 13098:1 13105:2 13142:1 13166:1 13188:1 13191:1 13209:2 13232:2 13270:1 13319:1 13337:1 13351:3 13369:1 13387:2 13392:2 13405:1 13416:1 13506:1 13545:1 13550:1 13616:1 13637:1 13674:2 13698:1 13703:1 13736:2 13762:4 13794:1 13797:1 13825:1 13834:1 13845:1 13855:1 13858:1 13987:1 13989:1 13993:1 14001:5 14052:1 14061:4 14082:1 14103:1 14204:1 14236:1 14250:2 14255:1 14274:1 14301:4 14314:1 14326:1 14328:2 14355:1 14393:1 14395:1 14404:1 14426:2 14450:2 14467:1 14474:1 14482:2 14483:1 14493:1 14514:1 14523:1 14524:1 14545:1 14552:1 14557:2 14582:1 14662:3 14677:2 14717:1 14736:1 14744:2 14749:1 14752:2 14757:1 14760:1 14804:2 14837:1 14847:2 14859:1 14890:1 14915:4 14936:2 14975:1 14987:1 14990:1 15026:1 15035:1 15059:1 15072:1 15078:1 15114:2 15154:2 15195:1 15210:1 15213:2 15219:1 15256:1 15338:1 15344:1 15375:1 15438:5 15455:1 15503:1 15512:1 15528:1 15530:3 15535:1 15541:1 15551:2 15553:1 15558:1 15585:1 15604:16 15606:2 15659:1 15660:1 15663:1 15710:4 15715:1 15744:1 15763:1 15764:1 15843:1 15852:1 15871:1 15925:1 15951:1 16006:2 16019:2 16121:1 16130:1 16132:1 16153:1 16158:2 16169:1 16175:1 16195:1 16196:2 16201:2 16227:1 16236:1 16255:1 16256:5 16259:2 16288:1 16332:1 16335:1 16351:1 16375:4 16461:1 16469:1 16491:1 16506:1 16524:1 16539:4 16594:2 16645:1 16699:2 16709:2 16722:1 16732:1 16780:1 16804:7 16806:1 16817:1 16825:1 16838:1 16869:1 16890:1 16919:1 16963:2 16972:1 16982:1 16995:1 17038:1 17058:2 17098:1 17107:1 17127:1 17145:1 17163:2 17164:2 17196:1 17200:2 17204:1 17223:1 17236:1 17248:1 17267:2 17291:1 17295:1 17302:2 17345:2 17361:2 17373:1 17461:3 17482:1 17488:1 17514:2 17521:3 17559:1 17561:1 17564:1 17572:1 17584:1 17599:1 17604:2 17610:1 17658:1 17671:1 17678:1 17700:1 17717:1 17718:1 17802:1 17828:1 17834:1 17835:2 17836:1 17848:2 17867:1 17882:1 17991:1 18028:1 18045:1 18076:1 18108:1 18114:1 18120:4 18174:2 18247:1 18286:1 18296:1 18334:1 18344:1 18369:1 18373:1 18421:1 18425:1 18427:1 18435:7 18457:2 18472:2 18479:2 18515:1 18615:1 18632:1 18648:2 18728:2 18743:1 18746:1 18752:2 18759:1 18783:2 18789:1 18833:1 18879:1 18910:1 18911:1 18928:1 18934:2 18951:2 18964:2 18974:1 18984:2 18988:2 19004:1 19008:1 19013:1 19021:2 19035:1 19036:1 19054:3 19057:3 19065:1 19066:1 19072:2 19077:2 19113:2 19118:4 19124:1 19132:1 19138:1 19155:1 19176:1 19226:1 19234:1 19266:2 19284:2 19288:1 19291:1 19297:2 19372:1 19387:1 19401:2 19414:1 19418:1 19428:1 19443:1 19446:3 19450:1 19460:1 19472:2 19504:4 19511:4 19516:2 19521:1 19522:1 19558:3 19571:3 19589:1 19636:1 19664:1 19670:1 19671:1 19676:1 19757:1 19783:1 19802:6 19812:1 19847:1 19875:1 19883:1 19906:1 19908:4 19959:1 19980:16 20029:1 20034:1 20070:1 20083:2 20110:1 20129:3 20174:1 20179:1 20268:16 20271:1 20293:2 20304:1 20328:1901 20365:1 20407:1 20439:1 20468:1 20471:1 20497:3 20521:1 20529:1 20530:1 20531:1 20557:1 20565:3 20578:3 20582:1 20585:1 20596:1 20662:1 20741:1 20796:1 20820:1 20825:1 20828:1 20915:1 20977:4 21007:1 21021:2 21027:1 21044:1 21049:1 21072:1 21079:1 21095:1 21132:1 21140:1 21146:2 21147:1 21156:1 21160:3 21192:2 21226:1 21237:4 21262:6 21276:1 21291:1 21298:4 21299:2 21308:1 21309:1 21326:2 21350:1 21359:1 21378:12 21391:1 21417:1 21425:3 21436:2 21442:1 21446:1 21464:1 21476:1 21511:1 21523:1 21524:2 21551:1 21580:1 21590:1 21597:1 21603:1 21635:1 21652:1 21666:1 21676:1 21747:1 21753:1 21755:2 21761:1 21777:1 21798:2 21832:1 21862:1 21868:1 21875:3 21879:1 21888:1 21894:1 21905:1 21926:1 21936:1 21971:2 21972:1 21978:1 22010:1 22036:1 22045:2 22062:1 22066:2 22068:1 22084:4 22116:1 22117:1 22149:1 22159:1 22235:2 22240:1 22272:2 22287:1 22288:2 22307:1 22325:1 22337:1 22339:2 22345:2 22367:1 22381:2 22411:1 22446:1 22450:4 22456:2 22476:1 22482:3 22512:1 22513:1 22533:1 22538:1 22577:1 22585:1 22604:1 22617:1 22622:1 22630:1 22635:2 22643:1 22655:6 22657:1 22674:3 22703:1 22704:1 22716:1 22736:1 22747:1 22784:1 22786:1 22810:1 22812:1 22815:2 22819:1 22827:1 22838:1 22854:1 22870:1 22902:1 22904:2 22939:1 22987:1 22988:2 22992:1 23010:1 23019:1 23026:1 23034:1 23078:1 23084:4 23116:1 23129:1 23147:1 23169:1 23178:1 23233:1 23242:1 23248:1 23257:1 23261:2 23276:2 23280:1 23303:1 23322:1 23346:2 23349:1 23363:1 23392:1 23422:1 23462:3 23476:2 23496:1 23511:2 23519:2 23535:2 23571:1 23572:1 23573:2 23583:1 23590:4 23615:1 23657:1 23662:1 23723:2 23737:1 23744:1 23763:1 23803:1 23826:2 23836:1 23863:3 23870:1 23878:1 23880:1 23899:1 23921:5 23954:1 23958:1 23965:1 23973:1 24008:1 24009:1 24023:1 24026:2 24055:1 24057:1 24078:1 24115:1 24153:1 24159:1 24163:1 24164:1 24174:1 24183:1 24225:1 24233:2 24254:1 24263:2 24273:2 24276:2 24283:1 24301:1 24319:1 24327:1 24358:1 24360:1 24382:1 24383:2 24386:3 24402:1 24407:2 24438:1 24450:2 24455:2 24475:1 24486:1 24487:1 24495:2 24518:1 24534:1 24554:1 24568:1 24572:1 24583:1 24586:4 24590:2 24603:1 24613:2 24618:1 24620:2 24627:1 24633:1 24651:1 24657:1 24663:1 24701:4 24716:1 24727:1 24772:1 24773:1 24777:1 24782:1 24786:2 24787:1 24795:2 24839:1 24862:2 24863:1 24945:1 24976:1 24981:1 25019:2 25032:1 25033:1 25044:1 25056:4 25091:5 25097:1 25105:1 25115:4 25148:3 25174:1 25191:1 25192:1 25193:1 25202:1 25214:1 25215:1 25253:1 25266:1 25271:1 25272:1 25280:2 25323:2 25332:4 25340:1 25352:1 25353:1 25361:1 25376:1 25391:1 25392:1 25398:2 25410:1 25421:2 25442:1 25450:1 25470:1 25472:2 25476:1 25525:2 25556:1 25572:1 25577:1 25593:1 25630:2 25655:1 25689:1 25694:1 25709:2 25766:2 25772:1 25781:1 25788:1 25798:4 25835:1 25844:1 25907:1 25919:2 25927:1 25928:1 25995:1 26012:1 26058:1 26089:1 26107:1 26123:1 26125:3 26128:1 26133:1 26135:2 26136:1 26139:1 26143:1 26147:2 26154:1 26164:1 26213:1 26225:1 26235:2 26248:3 26263:1 26280:1 26281:1 26288:2 26293:1 26305:5 26339:2 26389:2 26438:1 26444:1 26447:1 26466:1 26552:1 26560:1 26563:1 26589:1 26592:1 26594:1 26595:1 26604:1 26607:1 26608:1 26611:2 26618:1 26630:1 26631:1 26642:1 26653:3 26692:1 26749:1 26769:1 26781:5 26809:2 26821:2 26863:1 26901:1 26915:1 26929:1 26931:1 26943:1 27033:1 27034:1 27037:2 27039:1 27052:1 27075:1 27088:3 27097:1 27104:2 27113:1 27138:1 27145:1 27163:1 27164:1 27177:1 27209:4 27216:1 27230:1 27247:1 27253:1 27273:1 27297:3 27302:2 27315:1 27326:1 27338:1 27352:2 27375:1 27390:1 27422:1 27426:4 27427:1 27466:1 27472:2 27515:2 27559:1 27575:1 27582:2 27583:1 27604:2 27605:1 27620:2 27662:1 27667:1 27685:2 27690:2 27718:2 27737:1 27768:1 27785:1 27788:1 27799:1 27817:3 27822:1 27839:1 27851:7 27892:1 27945:2 27950:1 28000:1 28005:1 28040:1 28046:1 28056:1 28072:1 28084:2 28122:1 28128:1 28139:1 28149:1 28159:1 28160:1 28189:1 28207:1 28217:2 28256:1 28262:2 28275:1 28307:1 28419:1 28428:2 28459:1 28474:1 28488:1 28540:5 28561:1 28575:1 28658:2 28715:1 28728:1 28744:1 28754:1 28755:6 28764:1 28778:5 28783:2 28792:1 28809:1 28823:1 28843:1 28858:5 28877:1 28883:1 28911:1 28916:1 28933:16 28947:1 28960:1 28961:1 28977:1 28984:2 29024:1 29034:2 29039:1 29078:1 29090:1 29091:1 29126:1 29146:1 29221:1 29239:2 29240:1 29268:1 29272:1 29292:1 29314:1 29339:2 29349:2 29357:1 29387:2 29396:2 29404:1 29413:1 29429:1 29431:1 29444:1 29457:4 29495:2 29519:1 29546:1 29551:1 29557:3 29560:1 29602:1 29650:1 29652:2 29664:1 29675:1 29684:1 29730:1 29759:1 29762:1 29763:1 29775:1 29795:1 29816:5 29855:1 29865:1 29866:1 29901:1 29902:1 29930:1 29931:1 29935:1 29988:1 29990:1 29998:1 30003:1 30036:1 30056:2 30084:2 30113:2 30123:1 30137:7 30145:1 30162:3 30173:1 30180:2 30183:1 30184:2 30225:1 30241:5 30253:1 30263:1 30264:1 30277:1 30279:1 30280:1 30284:1 30312:1 30330:3 30334:1 30335:2 30362:1 30385:1 30394:1 30396:4 30438:1 30447:1 30449:2 30459:1 30462:3 30468:1 30508:1 30538:1 30541:1 30551:1 30561:2 30580:1 30586:1 30592:1 30646:1 30679:1 30680:1 30725:1 30760:2 30787:1 30795:2 30815:2 30823:1 30854:3 30868:1 30871:1 30872:1 30897:2 30898:1 30902:1 30952:1 30962:1 30998:1 31032:1 31037:2 31060:1 31076:1 31089:2 31098:2 31115:1 31168:1 31184:2 31210:1 31215:1 31233:2 31258:1 31316:1 31331:1 31341:1 31355:3 31359:1 31378:1 31383:1 31407:1 31427:2 31432:1 31446:1 31462:1 31478:2 31481:1 31489:2 31497:1 31505:2 31507:1 31510:1 31548:1 31550:1 31559:1 31615:2 18 6:1 14:1 18:1 55:1 123:1 188:4 210:2 214:1 216:2 219:1 237:2 269:2 273:1 283:1 302:1 323:2 339:3 358:1 372:4 383:1 389:1 449:3 454:1 538:1 548:1 570:1 600:3 603:1 618:1 628:2 632:1 646:1 656:2 683:1 694:1 704:5 715:1 716:1 735:1 748:3 756:1 767:2 768:1 782:1 790:1 795:1 888:2 890:1 898:1 923:1 924:3 926:1 937:1 949:1 950:2 964:1 970:1 973:1 1014:2 1130:1 1132:1 1148:1 1167:1 1202:1 1248:4 1279:2 1280:2 1281:1 1283:2 1295:1 1316:2 1342:1 1343:1 1351:2 1434:1 1437:1 1447:1 1453:1 1454:2 1461:1 1465:1 1500:3 1506:1 1520:1 1554:1 1556:2 1558:1 1562:1 1595:1 1615:2 1619:1 1633:4 1636:1 1647:2 1662:1 1664:1 1706:1 1708:1 1720:1 1723:1 1752:1 1785:1 1789:3 1824:1 1842:4 1885:1 1960:1 1966:1 1979:2 1981:1 1985:1 1993:3 2014:1 2043:2 2073:1 2079:1 2093:1 2117:1 2131:1 2133:1 2137:1 2140:6 2143:1 2147:1 2169:1 2183:1 2192:1 2242:1 2253:1 2263:1 2273:1 2290:1 2300:3 2303:1 2310:1 2312:3 2314:1 2315:1 2319:3 2322:1 2326:1 2328:1 2329:2 2342:1 2361:2 2362:1 2365:1 2369:1 2371:1 2374:1 2375:2 2377:2 2381:1 2382:1 2388:1 2393:2 2396:2 2397:4 2403:2 2412:1 2414:2 2416:1 2432:16 2442:1 2450:2 2506:4 2517:1 2541:1 2543:1 2545:1 2547:1 2557:4 2608:1 2621:1 2649:1 2653:1 2662:1 2687:2 2699:2 2701:1 2717:1 2718:1 2720:2 2728:2 2737:1 2754:2 2820:1 2827:2 2828:1 2847:1 2880:1 2896:1 2925:1 2952:5 2964:2 2974:1 3050:2 3063:5 3066:3 3068:1 3088:1 3107:1 3119:6 3126:1 3127:2 3143:2 3164:1 3182:1 3218:1 3226:1 3230:1 3317:2 3330:6 3388:4 3439:1 3442:1 3447:1 3448:2 3467:1 3479:1 3490:1 3494:1 3495:1 3500:1 3528:2 3537:2 3545:1 3563:1 3581:1 3600:1 3619:1 3719:1 3728:1 3736:1 3798:1 3828:1 3860:1 3861:1 3872:1 3928:2 3949:2 3952:1 3973:2 4010:1 4019:1 4020:1 4056:1 4058:1 4065:2 4066:1 4077:1 4078:1 4086:2 4089:2 4115:2 4128:1 4129:2 4133:2 4173:1 4176:1 4185:2 4186:1 4197:1 4248:1 4255:1 4260:1 4281:1 4289:1 4301:1 4307:2 4313:1 4328:1 4348:1 4354:2 4376:1 4390:1 4419:1 4422:2 4431:1 4456:1 4467:2 4492:1 4496:1 4526:1 4531:1 4549:1 4560:1 4631:2 4634:1 4677:1 4717:2 4754:2 4757:1 4779:1 4789:3 4803:1 4851:2 4917:1 4922:2 4933:1 4946:2 4968:1 4969:3 4992:1 5002:1 5009:1 5012:3 5046:1 5080:1 5098:2 5104:1 5108:1 5116:2 5119:1 5121:1 5136:1 5154:1 5204:1 5212:1 5245:1 5268:3 5282:1 5310:10 5314:1 5325:1 5335:1 5370:1 5380:1 5423:1 5440:1 5455:1 5474:1 5481:1 5526:1 5545:1 5567:1 5571:1 5581:2 5582:1 5622:1 5648:2 5651:2 5683:1 5719:3 5746:2 5779:1 5783:1 5785:1 5790:2 5799:1 5800:1 5811:1 5831:1 5859:5 5882:1 5887:1 5894:1 5900:1 5912:1 5919:1 5925:3 5942:2 5975:1 6000:1 6006:1 6008:1 6014:1 6020:2 6049:1 6053:2 6110:1 6127:1 6227:1 6242:1 6294:1 6341:2 6363:2 6378:2 6397:1 6442:2 6444:1 6480:1 6555:1 6557:1 6590:2 6603:2 6612:1 6613:3 6630:2 6645:1 6672:2 6698:1 6721:1 6763:4 6815:4 6826:2 6828:1 6829:1 6832:4 6851:1 6875:1 6883:1 6894:1 6916:1 6917:1 6923:1 6931:1 6932:2 6938:1 6942:2 7005:1 7071:1 7084:1 7093:3 7113:5 7169:1 7180:1 7197:1 7230:1 7239:5 7240:1 7268:1 7280:1 7302:5 7319:2 7333:1 7345:1 7369:1 7380:1 7388:1 7421:2 7428:2 7429:1 7434:1 7460:1 7463:1 7468:1 7532:1 7560:2 7561:1 7575:1 7584:1 7651:1 7658:1 7694:1 7706:1 7750:3 7779:1 7814:2 7818:1 7870:2 7906:2 7945:4 7971:1 7979:1 7996:1 8006:1 8030:1 8033:2 8058:6 8068:2 8104:1 8126:1 8179:1 8185:1 8241:1 8258:2 8289:2 8307:3 8329:2 8332:1 8333:3 8351:2 8352:2 8359:4 8360:2 8364:1 8372:1 8377:1 8378:1 8386:17 8410:6 8413:1 8441:1 8452:1 8513:1 8546:1 8560:1 8569:1 8592:1 8595:2 8624:1 8648:1 8710:1 8761:1 8766:2 8781:1 8819:2 8829:1 8841:1 8879:1 8889:2 8921:5 8950:2 8976:8 8982:4 8984:2 8986:1 9020:1 9021:1 9073:1 9100:1 9117:1 9134:1 9138:2 9183:6 9220:5 9235:1 9285:1 9296:1 9299:1 9300:1 9304:1 9312:1 9317:2 9380:1 9381:1 9390:1 9417:1 9491:2 9514:2 9648:1 9652:2 9658:2 9675:1 9685:1 9701:1 9713:1 9715:1 9725:2 9734:2 9743:2 9785:1 9799:1 9801:1 9815:2 9850:1 9856:1 9859:1 9910:2 9920:1 9932:1 9934:1 9979:1 9985:1 10048:1 10062:1 10095:1 10116:3 10178:1 10206:1 10211:1 10214:1 10251:3 10257:1 10351:1 10372:3 10377:4 10381:1 10383:1 10385:2 10392:1 10406:1 10416:2 10430:1 10434:2 10450:4 10492:1 10503:1 10510:1 10516:1 10545:1 10552:1 10608:1 10655:1 10659:2 10678:3 10705:1 10716:1 10751:1 10757:2 10777:1 10784:1 10793:1 10800:3 10822:1 10828:3 10830:1 10857:2 10860:16 10922:1 10951:2 10971:1 10989:1 11034:1 11113:1 11114:2 11130:1 11178:1 11185:1 11189:1 11203:1 11209:1 11221:1 11257:1 11274:1 11289:1 11295:2 11304:2 11306:1 11313:2 11362:2 11383:1 11388:1 11404:2 11453:1 11467:6 11473:1 11484:1 11486:1 11489:1 11503:1 11515:2 11520:1 11553:1 11557:2 11574:2 11591:2 11608:1 11655:1 11661:2 11663:1 11703:1 11710:5 11730:1 11766:1 11798:1 11820:1 11840:3 11854:1 11860:2 11863:2 11864:1 11866:1 11879:1 11883:1 11886:3 11887:1 11888:1 11893:1 11896:1 11929:1 11943:1 12025:1 12026:1 12042:4 12048:1 12071:1 12072:1 12088:1 12097:1 12098:1 12145:1 12167:1 12214:2 12220:2 12225:1 12228:1 12258:1 12319:1 12327:1 12373:1 12399:1 12420:1 12475:1 12489:1 12551:1 12564:1 12574:1 12583:1 12595:2 12630:1 12646:2 12648:1 12653:1 12665:1 12677:3 12680:2 12686:2 12704:1 12706:5 12716:2 12730:1 12735:1 12739:3 12745:1 12778:1 12810:2 12838:1 12884:1 12890:1 12983:1 13027:1 13034:1 13053:1 13055:2 13081:2 13086:1 13091:1 13098:1 13105:2 13142:1 13166:1 13188:1 13191:1 13209:2 13232:2 13270:1 13319:1 13337:1 13351:3 13369:1 13387:2 13392:2 13405:1 13416:1 13506:1 13545:2 13550:1 13616:1 13637:1 13674:2 13698:1 13703:1 13736:3 13762:5 13794:1 13797:1 13825:1 13834:1 13845:1 13855:1 13858:1 13987:1 13989:1 13993:1 14001:6 14052:1 14061:4 14082:1 14103:1 14204:1 14236:1 14250:2 14255:1 14274:1 14301:4 14313:1 14314:1 14326:1 14328:2 14355:1 14393:1 14395:1 14404:1 14426:2 14450:2 14467:1 14474:1 14482:2 14483:1 14493:1 14514:1 14523:1 14524:1 14545:1 14552:1 14557:2 14582:1 14638:1 14662:3 14677:2 14717:1 14736:1 14744:2 14749:1 14752:2 14757:1 14760:1 14804:3 14837:1 14847:2 14859:1 14890:1 14915:4 14936:2 14975:2 14987:1 14990:1 15026:1 15035:1 15059:1 15072:1 15078:1 15114:3 15154:2 15195:1 15210:1 15213:2 15219:1 15256:1 15338:1 15344:1 15375:1 15438:5 15455:1 15503:1 15512:1 15528:1 15530:3 15535:1 15541:1 15551:2 15553:1 15558:1 15585:1 15604:16 15606:2 15659:1 15660:1 15663:1 15710:4 15715:1 15744:1 15763:1 15764:1 15843:1 15852:1 15871:1 15925:1 15951:1 16006:2 16019:2 16121:1 16130:1 16132:1 16153:1 16158:2 16169:1 16175:1 16195:1 16196:2 16201:2 16227:1 16236:1 16255:1 16256:5 16259:2 16288:1 16332:1 16335:1 16351:1 16375:5 16461:1 16469:1 16491:1 16506:1 16524:1 16539:4 16594:2 16645:1 16699:2 16709:2 16722:1 16732:1 16780:1 16804:9 16806:1 16817:1 16825:1 16838:1 16869:1 16890:1 16919:1 16963:2 16972:1 16982:1 16995:1 17038:1 17058:2 17098:1 17107:1 17127:1 17145:1 17163:2 17164:2 17196:1 17200:2 17204:2 17223:1 17236:1 17248:1 17267:2 17291:1 17295:1 17302:2 17345:2 17361:2 17373:1 17461:3 17482:1 17488:1 17514:2 17521:3 17522:1 17559:1 17561:1 17564:1 17572:1 17584:1 17599:1 17604:2 17610:1 17658:1 17671:1 17678:1 17700:1 17717:1 17718:1 17802:1 17828:1 17834:1 17835:2 17836:1 17848:2 17867:1 17882:1 17991:1 18028:1 18045:1 18076:1 18108:1 18114:1 18120:4 18174:2 18247:1 18286:1 18296:1 18334:1 18344:1 18369:1 18373:1 18421:1 18425:1 18427:1 18435:9 18452:1 18457:2 18472:2 18479:2 18488:1 18515:1 18615:1 18632:1 18635:1 18648:2 18713:1 18728:2 18743:1 18746:1 18752:2 18759:1 18783:2 18789:1 18833:1 18879:1 18910:1 18911:1 18928:1 18934:2 18951:2 18964:2 18974:1 18984:2 18988:2 19004:1 19008:1 19013:1 19019:1 19021:2 19035:1 19036:1 19054:3 19057:3 19065:1 19066:1 19072:2 19077:2 19113:2 19118:4 19124:1 19132:1 19138:1 19155:1 19176:1 19226:1 19234:1 19266:2 19284:2 19287:1 19288:1 19291:1 19297:2 19372:1 19387:1 19401:2 19414:1 19418:1 19428:1 19443:1 19446:3 19450:1 19460:1 19472:2 19504:4 19511:4 19516:3 19521:1 19522:1 19558:3 19571:3 19589:1 19636:1 19664:1 19670:1 19671:1 19676:1 19757:1 19783:1 19802:6 19812:1 19847:1 19875:1 19883:1 19906:1 19908:4 19959:1 19980:16 20029:1 20034:2 20070:1 20083:2 20110:1 20129:3 20131:1 20174:1 20179:1 20268:16 20271:1 20293:2 20304:1 20328:1961 20365:1 20378:1 20407:1 20439:1 20468:1 20471:1 20497:3 20521:1 20529:1 20530:1 20531:1 20557:1 20565:3 20578:3 20582:1 20585:1 20596:1 20603:1 20662:1 20741:1 20796:1 20820:1 20825:1 20828:1 20915:1 20977:4 21007:1 21021:2 21023:1 21027:1 21044:1 21049:1 21072:1 21079:1 21095:1 21132:1 21140:1 21146:2 21147:1 21156:1 21160:4 21192:2 21226:1 21237:4 21262:6 21276:1 21291:1 21298:5 21299:2 21308:1 21309:1 21326:2 21350:1 21359:1 21378:14 21391:1 21398:1 21417:1 21425:3 21436:2 21442:1 21446:1 21464:1 21476:1 21511:1 21523:1 21524:2 21551:1 21580:1 21590:1 21597:1 21603:1 21635:1 21652:1 21666:1 21676:1 21747:1 21753:1 21755:2 21761:1 21777:1 21798:2 21832:1 21862:1 21868:1 21875:3 21879:1 21888:1 21894:1 21905:1 21926:1 21936:1 21971:2 21972:1 21978:1 22010:1 22036:1 22045:2 22062:1 22066:2 22068:1 22084:4 22116:1 22117:1 22149:1 22159:1 22235:2 22240:1 22272:2 22287:1 22288:2 22307:1 22325:1 22337:1 22339:2 22345:2 22367:1 22381:2 22387:1 22411:1 22446:1 22450:4 22456:2 22476:1 22482:3 22512:1 22513:1 22533:1 22538:1 22577:1 22585:1 22604:1 22617:1 22622:1 22630:1 22635:2 22643:1 22655:6 22657:1 22674:3 22703:1 22704:1 22716:1 22736:1 22747:1 22784:1 22786:1 22810:1 22812:1 22815:3 22819:1 22827:1 22838:1 22854:1 22870:1 22876:1 22902:1 22904:2 22939:1 22987:1 22988:2 22992:1 23010:1 23019:1 23026:1 23034:1 23078:1 23084:4 23116:1 23129:1 23147:1 23168:1 23169:1 23178:1 23233:1 23242:1 23248:1 23257:1 23261:2 23276:2 23280:1 23303:1 23322:1 23346:2 23349:1 23363:1 23392:1 23422:1 23462:3 23476:2 23496:1 23511:2 23519:2 23535:2 23571:1 23572:1 23573:2 23583:1 23590:4 23615:1 23657:1 23662:1 23723:2 23737:1 23744:1 23763:1 23803:1 23826:2 23836:1 23863:3 23870:1 23878:1 23880:1 23899:1 23921:5 23954:1 23958:1 23965:1 23973:1 24008:1 24009:1 24023:1 24026:2 24055:1 24057:1 24078:1 24115:1 24153:1 24159:1 24163:1 24164:1 24174:1 24183:1 24225:1 24233:2 24254:1 24263:2 24272:1 24273:2 24276:2 24283:1 24301:1 24319:1 24327:1 24358:1 24360:1 24382:1 24383:2 24386:3 24402:1 24407:2 24438:1 24450:2 24455:2 24475:1 24486:1 24487:1 24494:1 24495:3 24518:1 24534:1 24554:1 24568:1 24572:1 24583:1 24586:4 24590:2 24603:1 24613:2 24618:1 24620:2 24627:1 24633:1 24651:1 24657:1 24663:1 24701:4 24716:1 24727:1 24772:1 24773:1 24777:1 24782:1 24786:2 24787:1 24795:2 24839:1 24862:2 24863:1 24945:1 24976:1 24981:1 25019:2 25032:1 25033:1 25044:1 25056:5 25091:5 25097:1 25105:1 25115:4 25148:3 25174:1 25191:1 25192:1 25193:1 25202:1 25214:1 25215:1 25253:1 25266:1 25271:1 25272:1 25280:2 25323:2 25332:4 25340:1 25352:1 25353:1 25361:1 25376:1 25391:1 25392:1 25398:2 25410:1 25421:2 25442:1 25450:1 25470:1 25472:2 25476:1 25525:2 25556:1 25572:1 25577:1 25593:1 25630:2 25655:1 25689:1 25694:1 25709:2 25766:2 25772:1 25781:1 25788:1 25798:4 25835:1 25844:1 25907:1 25919:2 25927:1 25928:1 25995:1 26012:1 26058:1 26089:1 26107:1 26123:1 26125:3 26128:1 26133:1 26135:2 26136:1 26139:1 26143:1 26147:2 26154:1 26158:1 26164:1 26213:1 26225:1 26235:2 26248:3 26263:1 26280:1 26281:1 26288:2 26293:1 26305:5 26339:2 26389:2 26438:1 26444:1 26447:1 26466:1 26552:1 26560:1 26563:1 26589:1 26592:1 26594:1 26595:1 26604:1 26607:1 26608:1 26611:2 26618:1 26630:1 26631:1 26642:1 26653:3 26690:1 26692:1 26746:1 26749:1 26769:1 26781:5 26809:2 26821:2 26863:1 26901:1 26915:1 26929:1 26931:1 26943:1 27033:1 27034:1 27037:2 27039:1 27052:1 27075:1 27088:3 27097:1 27104:2 27113:1 27138:1 27145:1 27163:1 27164:1 27177:1 27209:4 27216:1 27230:2 27247:1 27253:1 27273:1 27297:3 27302:2 27315:1 27326:1 27338:1 27352:2 27375:1 27390:1 27422:1 27426:5 27427:1 27466:1 27472:2 27515:2 27559:1 27575:1 27582:2 27583:1 27588:1 27604:2 27605:1 27606:2 27620:2 27662:2 27667:1 27685:2 27690:2 27718:2 27737:2 27768:1 27785:1 27788:1 27799:1 27817:3 27822:1 27839:1 27851:7 27892:1 27945:2 27950:1 28000:1 28005:1 28040:1 28046:1 28056:1 28072:1 28084:2 28122:1 28128:1 28139:1 28149:1 28159:1 28160:1 28189:1 28207:1 28217:2 28256:1 28262:2 28275:1 28307:1 28419:1 28428:2 28459:1 28474:1 28488:1 28540:5 28561:1 28575:1 28630:1 28658:2 28715:1 28728:1 28744:1 28754:1 28755:6 28764:1 28778:5 28783:2 28792:1 28809:1 28823:1 28843:1 28858:5 28877:1 28883:1 28911:1 28916:1 28933:16 28947:1 28960:1 28961:1 28977:1 28984:2 29024:1 29034:2 29039:1 29078:1 29090:1 29091:1 29126:1 29146:1 29221:1 29231:1 29239:2 29240:1 29268:1 29272:1 29292:1 29314:1 29339:2 29349:2 29357:1 29387:2 29396:2 29404:1 29413:1 29429:1 29431:1 29444:1 29457:4 29495:2 29519:1 29535:1 29546:1 29551:1 29557:3 29560:1 29602:1 29650:1 29652:2 29664:1 29675:1 29684:1 29730:1 29742:1 29759:1 29762:1 29763:1 29775:1 29795:1 29816:5 29855:1 29865:1 29866:1 29901:1 29902:1 29930:1 29931:1 29935:1 29988:1 29990:1 29998:1 30003:1 30036:1 30056:2 30084:2 30113:2 30123:1 30137:7 30145:1 30162:3 30173:1 30180:2 30183:1 30184:2 30225:1 30241:5 30253:1 30263:1 30264:1 30277:2 30279:1 30280:1 30284:1 30312:1 30330:3 30334:1 30335:2 30362:1 30385:1 30394:1 30396:4 30438:1 30447:1 30449:2 30459:1 30462:3 30468:1 30508:1 30538:1 30541:1 30551:1 30561:2 30580:1 30586:1 30592:1 30646:1 30679:1 30680:1 30682:2 30686:2 30725:2 30760:2 30787:1 30795:2 30815:2 30823:1 30854:3 30868:1 30871:1 30872:1 30897:2 30898:1 30901:1 30902:1 30952:1 30962:1 30998:1 31032:1 31037:2 31060:1 31076:1 31089:2 31098:2 31115:1 31168:1 31184:2 31210:1 31215:1 31233:2 31258:1 31316:1 31331:1 31341:1 31355:3 31359:1 31378:1 31383:1 31407:2 31427:2 31432:1 31446:1 31462:1 31478:2 31481:1 31489:3 31497:1 31505:2 31507:1 31510:1 31548:1 31550:1 31559:1 31615:2 18 6:1 14:1 18:1 55:1 123:1 188:4 210:2 214:1 216:2 219:1 237:2 269:2 273:2 283:1 302:1 323:2 339:3 358:1 372:5 383:1 389:1 449:3 454:1 538:1 548:1 552:1 570:1 600:3 603:1 618:1 628:2 632:1 646:1 656:2 683:1 694:2 704:5 715:1 716:1 735:1 748:3 756:1 767:2 768:1 782:1 790:1 795:1 888:3 890:1 898:1 909:1 923:1 924:3 926:1 937:1 949:1 950:2 964:1 970:1 973:1 1014:2 1130:1 1132:2 1148:1 1167:1 1202:1 1248:4 1279:2 1280:2 1281:1 1283:2 1295:1 1316:2 1342:1 1343:1 1351:2 1434:1 1437:1 1447:1 1453:1 1454:2 1461:1 1465:1 1500:3 1501:1 1506:1 1520:1 1522:1 1554:1 1556:2 1558:1 1562:1 1595:1 1604:1 1615:2 1619:1 1633:4 1636:1 1647:2 1662:1 1664:1 1689:1 1706:1 1708:1 1720:1 1723:1 1752:1 1785:1 1789:3 1824:1 1842:4 1885:1 1960:1 1966:1 1979:2 1981:1 1985:1 1993:3 2014:1 2043:2 2047:1 2073:1 2079:1 2093:1 2117:1 2131:1 2133:2 2137:1 2140:7 2143:1 2147:1 2169:1 2183:1 2192:1 2242:1 2253:1 2263:1 2273:1 2290:1 2300:3 2303:1 2310:1 2312:3 2314:1 2315:1 2319:3 2322:1 2326:1 2328:1 2329:3 2342:1 2361:2 2362:1 2365:1 2369:1 2371:1 2374:1 2375:2 2377:2 2381:1 2382:1 2388:1 2393:2 2396:2 2397:4 2403:2 2412:1 2414:2 2416:1 2432:16 2442:1 2450:2 2506:4 2517:1 2541:1 2543:1 2545:1 2547:1 2557:4 2608:1 2621:1 2649:1 2653:1 2662:1 2687:2 2699:2 2701:1 2717:1 2718:1 2720:2 2728:2 2737:1 2754:2 2820:1 2827:2 2828:1 2847:1 2880:1 2896:1 2925:1 2952:5 2964:2 2974:1 3050:2 3063:7 3066:3 3068:1 3088:1 3107:1 3119:8 3126:1 3127:2 3143:2 3164:1 3182:1 3218:1 3226:1 3230:1 3317:2 3330:6 3388:4 3439:1 3442:1 3447:1 3448:2 3467:1 3479:1 3490:1 3494:1 3495:1 3500:1 3528:2 3537:2 3545:1 3563:1 3581:1 3600:1 3619:1 3719:1 3728:1 3736:1 3798:1 3828:1 3860:1 3861:1 3872:1 3928:2 3949:2 3952:2 3973:2 4010:1 4019:1 4020:1 4056:1 4058:1 4065:2 4066:1 4077:1 4078:1 4086:2 4089:2 4115:2 4128:1 4129:2 4133:3 4173:1 4176:1 4185:2 4186:1 4197:1 4202:1 4248:1 4255:1 4260:1 4281:1 4289:1 4301:1 4307:2 4313:1 4328:1 4348:1 4354:2 4376:1 4390:1 4419:1 4422:3 4431:1 4456:1 4467:2 4492:1 4496:1 4526:1 4531:1 4549:1 4560:1 4631:2 4634:1 4661:1 4677:1 4717:2 4754:2 4757:1 4779:1 4789:4 4803:1 4851:2 4917:1 4922:2 4933:1 4946:2 4968:1 4969:3 4992:1 5002:1 5009:1 5012:4 5046:1 5080:1 5098:2 5104:1 5108:1 5116:2 5119:1 5121:1 5136:1 5154:1 5204:1 5212:1 5245:1 5268:3 5282:1 5310:12 5314:1 5325:1 5335:1 5365:1 5370:1 5380:1 5423:1 5440:1 5455:1 5474:1 5481:1 5526:1 5545:1 5567:1 5571:1 5575:1 5581:2 5582:1 5622:1 5648:2 5651:2 5683:1 5719:3 5746:2 5779:1 5783:1 5785:1 5790:2 5799:1 5800:1 5811:1 5817:1 5831:1 5859:5 5882:1 5887:1 5894:1 5900:1 5912:1 5919:1 5925:4 5942:2 5975:1 6000:1 6006:1 6008:1 6014:1 6020:2 6049:1 6053:2 6110:1 6127:1 6227:1 6242:1 6294:1 6341:3 6363:2 6378:2 6397:1 6442:2 6444:1 6480:1 6555:1 6557:1 6590:2 6603:2 6612:1 6613:3 6630:2 6645:1 6672:2 6698:1 6721:1 6763:4 6815:4 6826:2 6828:1 6829:1 6832:4 6851:1 6875:1 6883:1 6894:1 6916:1 6917:1 6923:1 6931:1 6932:2 6938:1 6942:2 7005:1 7071:1 7084:1 7093:3 7113:5 7169:1 7180:1 7197:2 7210:1 7230:1 7239:5 7240:1 7268:1 7280:1 7302:5 7319:2 7333:1 7345:1 7369:1 7380:1 7388:1 7419:1 7421:2 7428:2 7429:1 7434:1 7460:1 7463:1 7468:1 7532:1 7560:2 7561:1 7575:1 7584:1 7651:1 7658:1 7694:1 7706:1 7750:5 7779:1 7814:2 7818:1 7870:2 7906:3 7945:4 7969:1 7971:1 7979:1 7996:1 8006:1 8030:1 8033:2 8058:7 8068:2 8104:1 8126:1 8179:1 8185:1 8241:1 8258:2 8289:2 8307:3 8328:1 8329:2 8332:1 8333:3 8351:2 8352:2 8359:4 8360:2 8364:1 8372:1 8377:1 8378:1 8386:17 8410:8 8413:1 8441:1 8452:1 8513:1 8546:1 8560:1 8569:1 8592:1 8595:3 8624:1 8648:1 8705:1 8710:2 8761:1 8766:2 8781:1 8819:2 8829:1 8841:1 8879:1 8889:2 8921:7 8950:2 8976:9 8982:4 8984:2 8986:1 9020:1 9021:1 9073:1 9100:1 9117:1 9134:1 9138:3 9183:7 9220:5 9235:1 9285:1 9290:1 9296:1 9299:1 9300:1 9304:1 9312:1 9317:2 9355:1 9380:1 9381:1 9390:1 9417:1 9491:2 9514:2 9571:1 9648:1 9652:2 9658:2 9675:1 9685:1 9701:1 9713:2 9715:1 9725:2 9734:2 9743:2 9785:1 9799:1 9801:1 9815:2 9850:1 9856:1 9859:1 9910:2 9920:1 9932:1 9934:1 9979:1 9985:1 10048:1 10062:1 10095:1 10116:3 10178:1 10185:1 10206:1 10211:1 10214:1 10251:3 10257:1 10351:1 10372:3 10377:4 10381:1 10383:1 10385:2 10392:1 10406:1 10416:2 10430:1 10434:2 10450:4 10492:2 10503:1 10510:2 10516:1 10545:1 10552:1 10608:1 10654:1 10655:1 10659:2 10678:3 10705:1 10716:1 10751:1 10757:2 10777:1 10784:1 10793:1 10800:3 10822:1 10828:3 10830:1 10857:2 10860:16 10922:1 10951:3 10971:1 10989:1 11034:1 11113:1 11114:2 11130:1 11178:1 11185:1 11189:1 11203:1 11209:1 11221:1 11257:1 11274:1 11289:1 11295:2 11304:2 11306:1 11313:2 11362:2 11383:1 11388:1 11404:2 11453:1 11467:7 11473:1 11484:1 11486:1 11489:1 11503:1 11515:2 11520:1 11553:1 11557:2 11574:3 11591:2 11608:1 11654:1 11655:1 11661:2 11663:1 11703:1 11710:5 11714:1 11730:1 11766:1 11798:1 11820:1 11840:3 11854:1 11860:2 11863:2 11864:1 11866:1 11879:1 11883:1 11886:3 11887:1 11888:1 11893:1 11896:1 11929:1 11943:1 12025:1 12026:1 12042:4 12048:1 12071:1 12072:1 12088:1 12097:1 12098:1 12123:1 12145:1 12167:1 12214:2 12220:2 12225:1 12228:1 12258:1 12319:1 12327:1 12373:1 12399:1 12420:1 12427:1 12475:1 12476:1 12489:1 12551:1 12564:1 12574:1 12583:1 12595:2 12630:1 12646:2 12648:1 12653:1 12659:1 12665:2 12677:4 12680:2 12686:3 12704:1 12706:5 12716:2 12730:1 12735:1 12739:3 12745:1 12778:1 12810:3 12838:1 12884:1 12890:1 12983:1 13027:1 13034:1 13053:1 13055:2 13081:2 13086:1 13091:1 13098:1 13105:2 13142:1 13166:1 13188:1 13191:1 13209:2 13230:1 13232:2 13270:1 13276:1 13319:1 13329:1 13337:1 13351:4 13369:1 13387:2 13392:2 13405:1 13416:1 13506:1 13545:2 13550:1 13616:1 13637:1 13674:2 13698:1 13703:1 13736:3 13762:7 13794:1 13797:1 13825:1 13834:1 13845:1 13855:1 13858:1 13987:1 13989:1 13993:1 14001:6 14052:1 14061:4 14082:1 14103:1 14204:1 14236:1 14250:2 14255:1 14274:1 14295:1 14301:4 14313:1 14314:1 14326:1 14328:2 14330:1 14355:1 14393:1 14395:1 14404:1 14426:2 14450:2 14467:1 14474:1 14482:2 14483:1 14493:1 14514:1 14523:1 14524:1 14526:1 14544:1 14545:1 14549:1 14552:1 14557:2 14582:1 14638:1 14662:3 14677:3 14717:1 14736:1 14744:3 14749:1 14752:2 14757:1 14760:1 14804:3 14837:1 14847:2 14859:1 14890:1 14914:1 14915:4 14936:2 14965:1 14975:2 14987:1 14990:1 15026:1 15035:1 15059:1 15072:1 15078:1 15114:3 15154:2 15195:1 15210:1 15213:2 15219:1 15256:1 15338:1 15344:1 15375:1 15438:5 15455:1 15503:1 15510:1 15512:1 15528:1 15530:3 15535:1 15541:1 15551:2 15553:1 15558:1 15585:1 15604:16 15606:2 15659:1 15660:1 15663:1 15710:4 15715:1 15744:1 15763:1 15764:1 15843:1 15852:1 15871:1 15925:1 15951:1 16006:3 16019:2 16100:1 16121:1 16130:1 16132:1 16153:1 16158:2 16169:1 16175:1 16195:1 16196:2 16201:2 16224:1 16227:1 16236:1 16255:1 16256:5 16259:2 16288:1 16318:1 16330:1 16332:1 16335:1 16351:1 16375:6 16461:1 16469:1 16491:1 16506:1 16524:1 16539:4 16594:2 16645:1 16699:2 16709:2 16722:1 16732:1 16780:1 16804:9 16806:1 16817:1 16825:1 16838:1 16869:1 16890:1 16913:1 16919:1 16963:2 16972:1 16982:1 16995:1 17038:1 17058:2 17098:1 17107:1 17127:1 17145:1 17163:2 17164:3 17196:1 17200:2 17204:2 17223:1 17236:1 17248:1 17267:2 17291:1 17295:1 17302:2 17345:2 17361:2 17373:1 17461:3 17482:1 17488:1 17490:1 17514:2 17521:3 17522:1 17559:1 17561:1 17564:1 17572:1 17584:1 17590:1 17599:1 17604:2 17610:1 17615:1 17658:1 17671:1 17678:1 17700:1 17717:1 17718:1 17802:1 17828:1 17834:1 17835:2 17836:1 17848:2 17867:1 17882:1 17991:1 18028:1 18045:1 18076:1 18108:1 18114:1 18120:4 18174:3 18218:1 18247:1 18286:1 18296:1 18334:1 18344:1 18369:1 18373:1 18421:1 18425:1 18427:1 18435:9 18438:1 18452:2 18457:2 18472:2 18479:3 18488:1 18515:1 18615:1 18632:1 18635:1 18639:1 18643:1 18648:2 18713:1 18728:2 18743:1 18746:1 18752:2 18759:1 18783:2 18789:1 18793:1 18833:1 18879:1 18910:1 18911:1 18928:1 18934:2 18951:2 18964:2 18974:1 18984:2 18988:2 19004:1 19008:1 19013:1 19019:1 19021:2 19035:1 19036:1 19054:3 19057:3 19065:1 19066:1 19072:2 19077:2 19113:2 19118:4 19124:1 19132:1 19138:1 19155:1 19176:1 19182:1 19226:1 19234:1 19266:2 19284:2 19287:1 19288:1 19291:1 19297:2 19372:1 19387:1 19390:1 19401:2 19414:1 19418:1 19428:1 19443:1 19446:3 19450:1 19460:1 19472:2 19504:4 19511:4 19516:4 19521:1 19522:1 19558:3 19571:3 19589:1 19636:1 19664:1 19670:1 19671:1 19676:1 19757:1 19783:1 19802:6 19812:1 19847:1 19875:1 19883:1 19906:1 19908:4 19959:1 19980:16 20029:1 20034:2 20070:1 20083:2 20110:1 20129:3 20131:1 20174:1 20179:1 20268:16 20271:1 20293:2 20304:1 20328:2037 20365:1 20378:1 20407:1 20439:1 20468:1 20471:1 20497:3 20521:1 20529:1 20530:1 20531:1 20557:1 20565:5 20578:5 20582:1 20585:1 20596:1 20603:1 20662:1 20741:1 20796:1 20820:1 20825:1 20828:1 20915:1 20977:4 21007:1 21021:3 21023:1 21027:1 21044:1 21049:1 21072:1 21079:1 21095:1 21132:1 21140:1 21146:2 21147:1 21156:1 21160:4 21192:2 21226:1 21237:4 21262:6 21276:1 21291:1 21298:6 21299:2 21308:1 21309:1 21326:2 21350:1 21359:1 21378:15 21391:1 21398:1 21417:1 21425:3 21436:2 21442:1 21446:1 21464:1 21476:1 21511:1 21523:1 21524:2 21551:2 21580:1 21590:1 21597:1 21598:1 21603:1 21635:1 21652:1 21666:1 21676:1 21747:1 21753:1 21755:3 21761:1 21777:1 21798:2 21832:1 21862:1 21868:1 21875:3 21879:1 21888:1 21894:1 21905:1 21926:1 21936:1 21971:2 21972:1 21978:1 22010:1 22036:1 22045:3 22062:1 22066:2 22068:1 22084:5 22116:1 22117:1 22149:1 22159:1 22235:2 22240:1 22272:2 22287:1 22288:2 22307:1 22316:1 22325:3 22337:1 22339:2 22345:2 22367:1 22381:2 22387:1 22411:1 22446:1 22450:4 22456:2 22462:1 22476:1 22482:3 22512:1 22513:1 22533:1 22538:1 22577:1 22585:1 22589:1 22604:1 22617:1 22622:1 22630:1 22635:2 22643:1 22655:6 22657:1 22674:4 22703:1 22704:1 22716:1 22724:1 22736:1 22747:1 22784:1 22786:1 22810:1 22812:1 22815:3 22819:1 22827:1 22838:1 22854:1 22870:1 22876:1 22902:1 22904:2 22939:1 22957:1 22987:1 22988:2 22992:1 23010:1 23019:1 23026:1 23034:1 23078:1 23084:4 23116:1 23129:1 23147:1 23168:1 23169:1 23178:1 23233:1 23242:1 23248:1 23257:1 23261:2 23276:2 23280:1 23303:1 23322:1 23331:1 23346:2 23349:1 23363:1 23392:1 23399:1 23422:1 23462:3 23476:2 23496:1 23511:2 23519:2 23535:2 23571:1 23572:1 23573:2 23583:1 23590:4 23615:1 23616:1 23657:1 23662:1 23723:2 23737:1 23744:1 23763:1 23803:1 23826:2 23836:1 23863:3 23870:1 23871:1 23878:1 23880:1 23899:1 23921:5 23954:1 23958:1 23965:1 23973:1 24008:1 24009:1 24023:1 24026:2 24055:1 24057:1 24078:1 24115:1 24153:1 24159:1 24163:1 24164:1 24174:1 24183:1 24225:1 24233:2 24254:1 24263:2 24272:1 24273:2 24276:2 24283:1 24301:1 24319:1 24327:1 24358:1 24360:1 24382:1 24383:2 24386:3 24402:1 24407:2 24438:1 24450:2 24455:2 24475:1 24486:1 24487:1 24494:1 24495:3 24518:1 24534:1 24554:1 24568:1 24572:1 24583:1 24586:4 24590:2 24603:1 24613:2 24618:1 24620:2 24627:1 24633:1 24651:1 24657:1 24663:1 24701:4 24716:1 24727:1 24772:1 24773:1 24777:1 24782:1 24786:3 24787:1 24795:2 24839:1 24862:2 24863:1 24945:1 24976:1 24981:1 25019:2 25032:1 25033:1 25044:1 25056:6 25091:5 25097:1 25105:1 25115:4 25148:3 25174:1 25191:1 25192:1 25193:1 25202:1 25214:1 25215:1 25253:1 25266:1 25271:1 25272:1 25280:2 25301:1 25323:2 25330:1 25332:4 25340:1 25352:1 25353:1 25361:1 25376:1 25391:1 25392:1 25398:2 25410:1 25421:2 25442:1 25450:1 25470:1 25472:2 25476:1 25525:2 25556:1 25572:1 25577:1 25593:1 25630:2 25655:1 25689:1 25694:1 25709:3 25736:1 25766:2 25772:1 25781:1 25788:1 25798:4 25835:1 25844:2 25907:1 25919:2 25927:1 25928:1 25961:1 25995:1 26012:1 26014:1 26058:1 26089:1 26092:1 26107:1 26123:1 26125:3 26128:1 26133:1 26135:2 26136:1 26139:1 26143:1 26147:2 26154:1 26158:1 26164:1 26169:1 26213:1 26225:1 26235:2 26248:3 26263:1 26280:1 26281:1 26288:2 26293:1 26305:5 26339:2 26389:2 26438:1 26444:1 26447:1 26466:1 26552:1 26560:1 26563:1 26589:1 26592:1 26594:1 26595:1 26604:1 26607:1 26608:1 26611:2 26618:1 26630:1 26631:1 26642:1 26653:3 26690:1 26692:1 26746:1 26749:1 26769:1 26781:5 26809:2 26821:2 26863:1 26894:1 26901:1 26915:1 26929:1 26931:1 26943:1 27033:1 27034:1 27037:2 27039:1 27052:1 27075:1 27088:3 27097:1 27104:2 27113:1 27138:1 27145:1 27163:1 27164:1 27177:1 27209:4 27216:1 27230:2 27247:1 27253:1 27273:1 27297:3 27302:2 27315:1 27326:1 27338:1 27352:2 27375:1 27390:1 27422:1 27426:6 27427:1 27466:1 27472:2 27515:2 27559:1 27575:1 27582:2 27583:1 27588:1 27604:3 27605:1 27606:2 27620:2 27662:2 27667:2 27685:2 27690:2 27718:2 27737:2 27768:1 27785:1 27788:1 27799:1 27817:3 27822:1 27839:1 27851:7 27892:1 27945:3 27950:1 28000:1 28005:1 28040:1 28046:1 28056:1 28072:1 28084:2 28122:1 28128:1 28139:1 28149:1 28159:1 28160:1 28189:1 28207:1 28217:2 28256:1 28262:2 28275:1 28307:1 28400:1 28419:1 28428:3 28459:1 28474:1 28488:1 28540:5 28561:1 28575:1 28630:1 28658:2 28715:1 28728:1 28744:1 28754:2 28755:6 28764:1 28765:1 28778:5 28783:2 28792:1 28809:1 28823:1 28843:1 28858:5 28877:1 28883:1 28911:1 28916:1 28933:16 28947:1 28960:1 28961:1 28977:1 28984:2 29024:1 29034:2 29039:1 29052:1 29078:1 29090:1 29091:1 29126:1 29146:1 29221:1 29231:1 29239:2 29240:1 29268:1 29272:1 29292:1 29314:1 29339:2 29349:2 29357:1 29387:2 29396:2 29404:1 29413:1 29429:1 29431:2 29444:1 29457:4 29495:2 29519:1 29535:1 29546:1 29551:1 29557:3 29560:1 29602:1 29650:1 29652:2 29664:1 29675:1 29684:1 29730:1 29742:1 29759:1 29762:1 29763:1 29775:1 29795:1 29798:1 29816:5 29855:1 29865:1 29866:1 29901:1 29902:1 29930:1 29931:1 29935:1 29988:1 29990:1 29998:1 30003:1 30036:1 30056:2 30084:2 30113:3 30123:1 30137:9 30138:1 30145:1 30162:3 30173:2 30180:2 30183:1 30184:2 30225:1 30226:1 30241:6 30253:1 30263:1 30264:1 30277:2 30279:1 30280:1 30284:1 30312:1 30330:3 30334:1 30335:2 30362:1 30385:1 30394:1 30396:4 30438:1 30447:1 30449:2 30459:1 30462:3 30466:1 30468:1 30508:1 30538:1 30541:1 30551:1 30561:2 30580:1 30586:1 30592:1 30646:1 30679:1 30680:1 30682:2 30686:2 30725:2 30760:2 30787:1 30795:2 30815:2 30823:1 30854:3 30868:1 30871:1 30872:1 30897:2 30898:1 30901:1 30902:1 30903:1 30927:1 30952:1 30962:1 30998:1 31032:1 31037:2 31060:1 31076:1 31089:3 31098:3 31115:1 31168:1 31184:2 31210:1 31215:1 31233:3 31258:1 31316:1 31331:1 31341:1 31353:1 31355:3 31359:1 31377:1 31378:1 31383:1 31407:2 31427:2 31432:1 31446:1 31462:1 31478:2 31481:1 31489:4 31497:1 31505:2 31507:1 31510:1 31548:1 31550:1 31559:1 31615:2 18 6:1 14:1 18:1 55:1 69:1 123:1 188:4 210:2 214:1 216:2 219:1 237:2 269:2 273:2 283:1 302:1 323:2 339:3 358:1 372:5 383:1 389:1 448:1 449:3 454:1 538:1 548:1 552:1 570:1 572:1 600:3 603:1 618:1 628:2 632:1 646:1 656:2 683:1 694:2 704:5 715:1 716:1 735:1 748:3 756:1 767:2 768:1 782:1 790:1 795:1 881:1 888:3 890:1 898:1 909:1 923:1 924:3 926:1 937:1 949:1 950:2 960:1 964:1 970:1 973:1 1014:2 1130:1 1132:3 1148:1 1167:1 1202:1 1248:4 1279:2 1280:2 1281:1 1283:2 1295:1 1316:2 1342:1 1343:1 1351:2 1434:1 1437:1 1447:1 1453:1 1454:2 1461:1 1465:1 1487:1 1500:3 1501:1 1506:1 1520:1 1522:1 1554:1 1556:2 1558:1 1562:1 1595:1 1604:1 1615:2 1619:1 1633:4 1636:1 1637:1 1647:2 1662:1 1664:1 1689:1 1706:1 1708:1 1720:1 1723:1 1752:1 1785:1 1789:3 1824:1 1842:4 1885:1 1960:1 1966:1 1979:2 1981:1 1985:1 1993:3 2014:1 2043:2 2047:1 2073:1 2079:1 2091:1 2093:1 2117:1 2131:1 2133:2 2137:1 2140:8 2143:1 2147:1 2169:1 2183:1 2192:1 2242:1 2253:1 2263:1 2273:1 2290:1 2300:3 2303:1 2310:1 2312:3 2314:1 2315:1 2319:3 2322:1 2326:1 2328:1 2329:4 2342:1 2344:1 2361:2 2362:1 2365:1 2369:1 2371:1 2374:1 2375:3 2377:2 2381:1 2382:1 2388:1 2393:2 2396:2 2397:4 2403:2 2412:1 2414:2 2416:1 2432:16 2442:1 2450:2 2506:4 2517:1 2541:1 2543:1 2545:1 2547:1 2557:4 2608:1 2621:1 2649:1 2653:1 2662:1 2687:2 2699:2 2701:1 2717:1 2718:1 2720:2 2728:2 2737:1 2754:2 2820:1 2827:2 2828:1 2847:1 2880:1 2896:1 2925:1 2949:1 2952:5 2964:2 2974:1 3050:2 3063:9 3066:3 3068:1 3088:1 3107:1 3119:8 3126:1 3127:2 3143:2 3164:1 3182:1 3218:1 3221:1 3226:1 3230:1 3317:2 3330:6 3388:4 3439:1 3442:1 3447:1 3448:2 3467:1 3479:1 3490:1 3494:1 3495:1 3500:1 3528:2 3537:2 3545:1 3563:1 3573:1 3581:1 3600:1 3619:1 3719:1 3728:1 3736:1 3798:1 3828:1 3860:1 3861:1 3872:1 3928:2 3949:2 3952:2 3973:2 3982:1 4010:1 4019:1 4020:1 4025:1 4056:1 4058:1 4064:1 4065:3 4066:1 4077:1 4078:1 4086:2 4089:2 4115:2 4128:1 4129:2 4133:3 4173:1 4176:1 4185:2 4186:1 4197:1 4202:1 4248:1 4255:1 4260:1 4281:1 4289:1 4301:1 4307:2 4313:1 4328:1 4348:1 4354:2 4376:1 4390:1 4419:1 4422:3 4431:1 4456:1 4467:2 4492:1 4496:1 4526:1 4531:1 4549:1 4560:1 4631:2 4634:1 4661:1 4677:1 4717:2 4754:2 4757:1 4779:1 4789:4 4803:1 4851:2 4917:1 4920:1 4921:1 4922:2 4933:1 4946:2 4968:1 4969:3 4992:1 5002:1 5009:1 5012:4 5024:1 5046:1 5080:1 5098:2 5104:1 5108:1 5116:2 5119:1 5121:1 5136:1 5154:1 5204:1 5212:1 5245:1 5268:3 5282:1 5300:1 5310:13 5314:1 5325:1 5335:1 5365:1 5370:1 5380:1 5423:1 5440:1 5455:1 5474:1 5481:1 5526:2 5545:1 5567:1 5571:1 5575:1 5581:2 5582:1 5622:1 5648:2 5651:2 5683:1 5719:3 5746:2 5779:1 5783:1 5785:1 5790:2 5799:1 5800:1 5811:1 5817:1 5831:1 5859:5 5882:1 5887:1 5894:1 5900:1 5912:1 5919:1 5925:4 5942:2 5975:1 6000:1 6006:1 6008:1 6014:1 6020:2 6049:1 6053:2 6110:2 6127:1 6227:1 6242:1 6294:1 6341:3 6363:2 6378:2 6397:1 6442:2 6444:1 6480:1 6555:1 6557:1 6575:1 6590:2 6603:2 6612:1 6613:3 6630:2 6645:1 6672:2 6698:2 6721:1 6763:4 6815:4 6826:2 6827:1 6828:1 6829:1 6832:4 6851:1 6875:1 6883:1 6894:1 6916:1 6917:1 6923:1 6931:1 6932:2 6938:1 6942:2 7005:1 7071:1 7084:1 7093:3 7113:5 7169:1 7180:1 7197:2 7210:1 7230:1 7239:5 7240:1 7268:1 7280:1 7302:7 7319:2 7333:1 7345:1 7369:1 7380:1 7388:1 7419:1 7421:2 7428:2 7429:1 7434:1 7460:1 7463:1 7468:1 7532:1 7560:2 7561:1 7575:1 7584:1 7651:1 7658:1 7694:1 7706:1 7750:5 7779:1 7814:2 7818:1 7870:2 7906:3 7945:4 7969:1 7971:1 7979:1 7996:1 8006:1 8030:1 8033:2 8058:8 8068:2 8088:1 8104:1 8126:1 8175:1 8179:1 8185:1 8241:1 8258:2 8289:2 8307:3 8328:1 8329:2 8332:1 8333:4 8351:2 8352:2 8359:4 8360:2 8364:1 8372:1 8377:1 8378:1 8386:18 8410:8 8413:1 8441:1 8452:1 8513:1 8546:1 8560:1 8569:1 8592:2 8595:3 8624:1 8648:1 8705:1 8710:2 8761:1 8766:2 8781:1 8819:2 8829:1 8841:1 8879:1 8889:2 8921:8 8950:2 8976:10 8982:4 8984:2 8986:1 9020:1 9021:1 9073:1 9100:1 9117:1 9134:1 9138:3 9183:8 9220:5 9235:1 9285:1 9286:1 9290:2 9296:1 9299:1 9300:1 9304:1 9312:1 9317:2 9355:1 9380:2 9381:3 9390:1 9417:1 9491:2 9514:2 9571:1 9648:1 9652:2 9658:2 9675:1 9685:1 9701:1 9713:2 9715:1 9725:2 9734:2 9743:2 9785:1 9799:1 9801:1 9815:2 9850:1 9856:1 9859:1 9910:2 9920:1 9932:1 9934:1 9979:1 9985:1 10048:1 10062:1 10095:1 10116:3 10178:1 10185:1 10206:1 10211:1 10214:1 10251:3 10257:1 10351:1 10372:3 10377:4 10381:1 10383:1 10385:2 10392:1 10406:1 10416:2 10430:1 10434:2 10450:4 10492:2 10503:1 10510:2 10516:1 10545:1 10552:1 10608:1 10621:1 10654:1 10655:1 10659:2 10678:3 10705:1 10716:1 10751:1 10757:2 10777:1 10784:1 10793:2 10800:3 10822:1 10828:3 10830:1 10857:2 10860:16 10922:1 10951:3 10971:1 10989:1 11034:1 11113:1 11114:2 11126:1 11130:1 11178:1 11185:1 11189:1 11203:1 11209:1 11221:1 11257:1 11274:1 11289:1 11295:2 11304:2 11306:1 11313:2 11362:2 11383:1 11388:1 11404:2 11453:1 11467:8 11473:1 11484:1 11486:1 11489:1 11503:1 11515:2 11520:1 11553:1 11557:2 11574:3 11591:2 11608:1 11654:1 11655:1 11661:2 11663:1 11693:1 11703:1 11710:5 11714:1 11730:1 11761:1 11766:1 11798:1 11820:1 11840:3 11854:1 11860:3 11863:2 11864:1 11866:1 11879:1 11883:1 11886:3 11887:1 11888:1 11893:1 11896:1 11929:1 11943:1 12025:1 12026:1 12042:4 12048:1 12071:1 12072:1 12088:1 12097:1 12098:1 12123:1 12145:1 12167:1 12214:2 12220:2 12225:1 12228:1 12258:1 12266:1 12319:1 12327:1 12373:1 12399:1 12420:1 12427:1 12475:1 12476:1 12489:1 12551:1 12564:1 12574:1 12583:1 12595:2 12630:1 12646:2 12648:1 12653:1 12659:1 12665:2 12677:5 12680:2 12686:3 12704:1 12706:5 12716:2 12730:1 12735:1 12739:3 12745:1 12774:1 12778:1 12810:3 12838:1 12884:1 12890:1 12983:1 13027:1 13034:1 13053:1 13055:2 13081:2 13086:1 13091:1 13098:1 13105:2 13142:1 13166:1 13188:1 13191:1 13209:2 13226:1 13230:1 13232:2 13270:1 13276:1 13319:1 13329:1 13337:1 13351:4 13369:1 13387:2 13392:2 13405:1 13416:1 13506:1 13545:2 13550:1 13616:1 13637:1 13674:2 13698:1 13703:1 13736:3 13762:9 13794:1 13797:1 13825:1 13834:1 13845:1 13855:1 13858:1 13936:1 13940:1 13987:1 13989:1 13993:1 14001:7 14052:1 14061:4 14082:1 14103:1 14204:1 14236:1 14250:2 14255:1 14274:1 14295:1 14301:4 14313:1 14314:1 14326:1 14328:2 14330:1 14355:1 14393:1 14395:1 14404:1 14426:2 14450:2 14467:1 14474:1 14482:2 14483:1 14493:1 14514:1 14523:1 14524:1 14526:1 14544:1 14545:1 14549:1 14552:1 14557:2 14582:1 14638:1 14662:3 14677:4 14717:1 14736:1 14744:3 14749:1 14752:2 14757:1 14760:1 14804:3 14837:1 14847:2 14859:1 14890:1 14914:1 14915:4 14936:2 14965:1 14975:2 14987:1 14990:1 15026:1 15035:1 15059:1 15072:1 15078:1 15114:3 15154:2 15195:1 15210:1 15213:2 15219:1 15256:1 15338:1 15344:1 15375:1 15438:5 15455:1 15503:1 15510:1 15512:1 15528:1 15530:3 15535:1 15541:1 15551:2 15553:1 15558:1 15585:1 15604:16 15606:2 15659:1 15660:1 15663:1 15710:4 15715:1 15744:1 15763:1 15764:1 15822:1 15843:1 15852:1 15871:1 15925:1 15951:1 15992:1 16006:3 16019:2 16100:1 16121:1 16130:1 16132:1 16153:1 16158:2 16169:1 16175:1 16195:1 16196:2 16201:2 16224:1 16227:1 16236:1 16255:1 16256:5 16259:2 16288:1 16318:1 16330:1 16332:1 16335:1 16351:1 16375:9 16461:1 16469:1 16491:1 16506:1 16524:1 16539:4 16594:2 16612:1 16645:1 16699:2 16709:3 16722:2 16732:1 16780:1 16804:9 16806:1 16817:1 16825:1 16838:1 16869:1 16890:1 16913:2 16919:1 16963:2 16972:1 16982:1 16995:1 17038:1 17058:2 17098:1 17107:1 17127:1 17145:1 17163:2 17164:3 17196:1 17200:2 17204:2 17223:1 17236:1 17248:1 17267:2 17291:1 17295:1 17302:2 17345:2 17361:2 17373:1 17413:1 17461:4 17482:1 17488:1 17490:1 17514:2 17521:3 17522:1 17559:1 17561:1 17564:1 17572:1 17584:1 17588:1 17590:1 17599:1 17604:2 17610:1 17615:1 17658:1 17671:1 17678:1 17700:1 17717:1 17718:1 17792:1 17802:1 17828:1 17834:1 17835:2 17836:1 17848:2 17867:1 17882:1 17991:1 18028:1 18045:1 18076:1 18108:1 18110:1 18114:1 18120:4 18174:3 18218:1 18247:1 18286:1 18296:1 18334:1 18344:1 18369:1 18373:1 18421:1 18425:1 18427:1 18435:9 18438:2 18452:2 18457:2 18472:2 18479:3 18488:1 18515:1 18615:1 18632:1 18635:1 18639:2 18643:1 18648:2 18713:1 18728:2 18743:1 18746:1 18752:2 18759:1 18783:2 18789:1 18793:1 18797:1 18833:1 18879:1 18910:1 18911:1 18918:1 18928:1 18934:2 18951:2 18964:2 18974:1 18984:2 18988:2 19004:1 19008:1 19013:1 19019:1 19021:3 19035:1 19036:1 19054:3 19057:3 19065:1 19066:1 19072:2 19077:2 19113:2 19118:4 19124:1 19132:1 19138:1 19155:1 19176:1 19182:1 19226:1 19234:1 19266:2 19284:2 19287:1 19288:1 19291:1 19297:2 19372:1 19387:1 19390:1 19399:1 19401:2 19414:1 19418:1 19428:1 19443:1 19446:3 19450:1 19460:1 19472:2 19504:4 19511:4 19516:4 19521:1 19522:1 19557:1 19558:3 19571:3 19589:1 19636:1 19664:1 19670:1 19671:1 19676:1 19757:1 19783:1 19802:6 19812:1 19847:1 19875:1 19883:1 19906:1 19908:4 19959:1 19980:16 20029:1 20034:2 20070:2 20083:2 20110:1 20129:3 20131:1 20174:2 20179:1 20268:16 20271:1 20293:2 20304:1 20328:2096 20365:1 20378:1 20407:1 20439:1 20468:1 20471:1 20497:3 20521:1 20529:1 20530:1 20531:1 20557:1 20565:5 20576:1 20578:5 20582:1 20585:1 20596:1 20603:2 20662:1 20741:1 20781:1 20796:1 20820:1 20825:1 20828:1 20915:1 20977:4 21007:1 21021:3 21023:1 21027:1 21044:1 21049:1 21072:1 21079:1 21092:1 21095:1 21132:1 21140:1 21145:1 21146:2 21147:1 21156:1 21160:5 21192:2 21226:1 21237:4 21262:6 21276:1 21291:1 21298:9 21299:2 21308:1 21309:1 21326:2 21350:1 21359:1 21378:15 21391:1 21398:1 21417:1 21425:3 21436:2 21442:1 21446:1 21464:1 21476:1 21511:1 21523:1 21524:2 21551:2 21580:1 21590:1 21597:1 21598:1 21603:1 21635:1 21652:1 21666:1 21676:1 21747:1 21753:1 21755:3 21761:1 21777:1 21798:2 21832:1 21862:1 21863:1 21868:1 21875:3 21879:1 21888:1 21894:1 21905:1 21926:1 21936:1 21971:2 21972:1 21978:1 22010:1 22036:1 22045:3 22062:1 22066:2 22068:1 22084:5 22116:1 22117:1 22149:1 22159:1 22235:2 22240:1 22272:2 22287:1 22288:2 22307:1 22316:1 22325:4 22337:1 22339:2 22345:3 22367:1 22381:2 22387:1 22411:1 22446:1 22450:4 22456:2 22462:1 22476:1 22482:3 22512:1 22513:1 22533:1 22538:1 22577:1 22585:1 22589:1 22604:1 22617:1 22622:1 22630:1 22635:2 22643:1 22655:6 22657:1 22674:4 22703:1 22704:1 22716:1 22724:1 22736:1 22747:1 22784:1 22786:1 22810:1 22812:1 22815:4 22819:1 22827:1 22838:1 22854:1 22870:1 22876:2 22902:1 22904:2 22939:1 22957:1 22987:1 22988:2 22992:1 23010:1 23019:1 23026:1 23034:1 23078:1 23084:4 23116:1 23129:1 23147:1 23168:1 23169:1 23178:1 23233:1 23242:1 23248:1 23257:1 23261:2 23276:2 23280:1 23303:1 23322:1 23331:1 23346:2 23349:1 23363:1 23380:1 23392:1 23399:1 23422:1 23458:1 23462:3 23476:2 23496:1 23511:2 23519:2 23535:2 23571:1 23572:1 23573:2 23583:1 23590:4 23615:1 23616:1 23657:1 23662:1 23723:2 23737:1 23744:1 23763:1 23803:1 23826:2 23836:1 23863:3 23870:1 23871:1 23878:1 23880:1 23899:1 23921:5 23954:1 23958:1 23965:1 23973:1 24008:1 24009:1 24023:1 24026:2 24055:1 24057:1 24078:1 24115:1 24153:1 24159:1 24163:1 24164:1 24174:1 24181:1 24183:1 24225:1 24233:2 24254:1 24263:2 24272:1 24273:2 24275:1 24276:3 24283:1 24301:1 24319:1 24327:1 24358:1 24360:1 24382:1 24383:2 24386:3 24402:1 24407:2 24438:1 24450:2 24455:2 24475:1 24486:1 24487:1 24494:1 24495:3 24518:1 24534:1 24554:1 24568:1 24572:1 24583:1 24586:4 24590:2 24603:1 24613:2 24618:1 24620:2 24627:1 24633:1 24635:1 24651:1 24657:1 24663:1 24701:4 24716:1 24727:1 24772:1 24773:1 24777:1 24782:1 24786:3 24787:1 24795:2 24839:1 24862:2 24863:1 24945:1 24976:1 24981:1 25019:2 25032:1 25033:1 25044:1 25056:7 25091:5 25097:1 25105:1 25115:4 25148:3 25174:1 25191:1 25192:1 25193:1 25202:1 25214:1 25215:1 25253:1 25266:1 25271:1 25272:1 25280:2 25301:1 25323:2 25330:1 25332:4 25340:1 25352:1 25353:1 25361:1 25376:1 25391:1 25392:1 25398:2 25410:1 25421:3 25442:1 25450:1 25470:1 25472:2 25476:1 25525:2 25556:1 25572:1 25577:1 25593:1 25630:2 25655:1 25674:1 25689:1 25694:1 25709:3 25736:1 25749:1 25766:2 25772:1 25781:1 25788:1 25798:4 25835:1 25844:2 25907:1 25919:2 25927:1 25928:1 25961:1 25995:1 26012:1 26014:1 26058:1 26065:1 26089:1 26092:1 26107:1 26123:1 26125:3 26128:1 26133:1 26135:2 26136:1 26139:1 26143:1 26147:2 26154:1 26158:1 26164:1 26169:1 26213:1 26225:1 26235:2 26248:3 26263:1 26280:1 26281:1 26288:2 26293:1 26305:5 26339:2 26389:3 26438:1 26444:1 26447:1 26466:1 26552:1 26560:1 26563:1 26589:1 26592:1 26594:1 26595:1 26604:1 26607:1 26608:1 26611:2 26618:1 26630:1 26631:1 26642:1 26653:3 26690:1 26692:1 26746:1 26749:1 26769:1 26781:5 26809:3 26821:2 26863:1 26894:1 26901:2 26915:1 26929:1 26931:1 26943:1 27033:1 27034:1 27037:2 27039:1 27052:1 27075:1 27088:3 27095:1 27097:1 27104:2 27113:1 27138:1 27145:1 27163:1 27164:1 27177:1 27209:4 27216:1 27230:2 27247:1 27253:1 27273:1 27297:3 27302:2 27315:1 27326:1 27338:1 27352:2 27375:1 27390:1 27422:1 27426:9 27427:1 27466:1 27472:2 27515:2 27559:1 27575:1 27582:2 27583:1 27588:2 27604:3 27605:1 27606:2 27620:2 27662:2 27667:2 27685:2 27690:2 27718:2 27737:2 27768:1 27785:1 27788:1 27799:1 27817:3 27822:1 27839:1 27851:7 27892:1 27906:1 27945:3 27950:1 27995:1 28000:1 28005:1 28040:1 28046:1 28056:1 28072:1 28084:2 28122:2 28128:1 28139:1 28149:1 28159:1 28160:1 28189:1 28207:1 28217:2 28256:1 28262:2 28275:1 28307:1 28400:1 28419:1 28428:3 28459:1 28474:1 28488:1 28540:5 28561:1 28575:1 28630:1 28658:2 28715:1 28728:1 28744:1 28754:2 28755:6 28764:1 28765:1 28778:5 28783:2 28792:1 28809:1 28823:1 28843:1 28858:5 28877:1 28883:1 28911:1 28916:1 28933:16 28947:1 28960:1 28961:1 28977:1 28984:2 29024:1 29034:2 29039:1 29052:1 29078:1 29090:1 29091:1 29126:1 29146:1 29154:1 29221:1 29231:1 29239:3 29240:1 29268:1 29272:1 29292:1 29314:1 29339:2 29349:2 29357:1 29387:2 29396:2 29404:1 29413:1 29422:1 29429:1 29431:3 29444:1 29457:4 29471:1 29495:2 29519:1 29535:1 29546:1 29551:1 29557:3 29560:1 29602:1 29650:1 29652:2 29664:1 29675:1 29684:1 29730:1 29742:1 29759:1 29762:1 29763:1 29775:1 29795:1 29798:1 29816:5 29855:1 29865:1 29866:1 29890:1 29901:1 29902:1 29930:1 29931:1 29935:1 29988:1 29990:1 29998:1 30003:1 30036:1 30056:2 30084:2 30113:3 30123:1 30137:10 30138:1 30145:1 30162:3 30173:2 30180:2 30183:1 30184:2 30225:1 30226:1 30239:1 30241:7 30253:1 30263:1 30264:1 30277:2 30279:1 30280:1 30284:1 30312:1 30330:3 30334:1 30335:2 30339:1 30362:1 30385:1 30394:1 30396:4 30438:1 30447:1 30449:2 30459:1 30462:3 30466:1 30468:1 30508:1 30538:1 30541:1 30551:1 30561:2 30580:1 30586:1 30592:1 30646:1 30678:1 30679:1 30680:1 30682:2 30686:2 30716:1 30725:2 30760:2 30787:1 30795:2 30815:2 30823:1 30854:3 30868:1 30871:1 30872:1 30897:2 30898:1 30901:1 30902:1 30903:1 30927:1 30952:1 30962:1 30998:1 31032:1 31037:2 31060:1 31076:1 31089:3 31098:3 31115:1 31168:1 31184:2 31210:1 31215:1 31233:3 31258:1 31316:1 31331:1 31341:1 31353:1 31355:3 31359:1 31377:1 31378:1 31383:1 31407:2 31427:2 31432:1 31446:1 31462:1 31478:2 31481:1 31489:4 31497:1 31505:3 31507:1 31510:1 31548:1 31550:1 31559:1 31615:2 18 6:1 14:1 18:1 34:1 55:1 69:1 123:1 188:4 210:2 214:1 216:2 219:1 237:2 269:2 273:2 283:2 302:1 323:2 339:4 352:1 358:1 372:6 383:1 389:1 395:1 448:1 449:3 454:1 466:1 538:1 548:1 552:1 570:1 572:1 599:1 600:3 603:1 618:1 628:2 632:1 646:1 656:2 683:1 694:2 704:5 715:1 716:1 735:1 748:3 756:1 767:2 768:1 782:1 790:1 795:1 802:1 881:1 888:4 890:1 898:1 909:1 923:1 924:3 926:1 937:1 949:1 950:2 960:1 964:1 970:1 973:1 1014:2 1130:1 1132:3 1148:1 1167:1 1202:1 1248:4 1279:2 1280:2 1281:1 1283:2 1295:1 1316:2 1342:1 1343:1 1351:2 1434:1 1437:1 1447:1 1453:1 1454:2 1461:1 1465:1 1487:1 1500:3 1501:1 1506:1 1520:1 1522:1 1554:1 1556:2 1558:1 1562:1 1595:1 1604:1 1615:2 1619:1 1633:4 1636:1 1637:1 1647:2 1662:1 1664:1 1689:1 1706:1 1708:1 1720:1 1723:1 1752:1 1785:1 1789:3 1824:1 1842:4 1885:1 1960:1 1966:1 1979:2 1981:1 1985:1 1991:1 1993:3 2014:1 2043:2 2047:1 2073:1 2079:1 2091:1 2093:1 2117:1 2131:1 2133:3 2137:1 2140:12 2143:1 2147:1 2169:1 2183:1 2192:1 2212:1 2242:2 2253:1 2263:1 2273:1 2290:1 2300:3 2303:1 2310:1 2312:3 2314:1 2315:1 2319:4 2322:1 2326:1 2328:1 2329:4 2342:1 2344:1 2361:2 2362:1 2365:1 2369:1 2371:1 2374:1 2375:3 2377:2 2381:1 2382:1 2388:1 2393:2 2396:2 2397:4 2403:2 2412:1 2414:2 2416:1 2432:16 2442:1 2450:3 2506:4 2517:1 2541:1 2543:1 2545:1 2547:1 2557:4 2580:1 2608:1 2621:1 2649:1 2653:1 2662:1 2687:2 2699:2 2701:1 2717:1 2718:1 2720:2 2728:2 2737:1 2754:2 2793:1 2820:1 2827:2 2828:1 2847:1 2880:1 2889:1 2896:1 2925:1 2949:1 2952:6 2964:2 2974:1 3050:2 3063:9 3066:3 3068:1 3088:1 3107:1 3116:1 3119:10 3126:1 3127:2 3143:2 3164:1 3182:1 3184:1 3218:1 3221:1 3226:1 3230:1 3317:2 3330:6 3388:4 3401:1 3439:1 3442:1 3447:1 3448:3 3467:1 3479:1 3490:1 3494:1 3495:1 3500:1 3528:2 3537:2 3545:1 3563:1 3573:1 3581:1 3600:1 3619:1 3719:1 3728:1 3736:1 3798:1 3808:1 3828:1 3860:1 3861:1 3872:1 3928:2 3949:2 3952:2 3973:2 3982:1 4010:1 4019:1 4020:1 4025:1 4056:1 4058:1 4064:1 4065:3 4066:1 4077:1 4078:1 4086:2 4089:2 4115:2 4128:1 4129:2 4133:3 4173:1 4176:1 4185:2 4186:1 4197:1 4202:1 4232:1 4248:1 4255:1 4260:1 4281:1 4289:1 4301:1 4307:2 4313:1 4328:1 4348:1 4354:2 4376:1 4390:1 4410:1 4419:2 4422:3 4431:1 4456:1 4467:2 4492:1 4496:1 4505:1 4526:1 4531:1 4549:1 4560:1 4631:2 4634:1 4661:1 4677:1 4717:2 4754:2 4757:1 4779:1 4789:4 4803:1 4851:2 4917:1 4920:1 4921:1 4922:2 4933:1 4946:2 4968:1 4969:3 4992:1 5002:1 5009:1 5012:4 5024:1 5046:1 5080:1 5098:2 5104:1 5108:1 5116:2 5119:1 5121:1 5136:1 5154:1 5204:1 5212:1 5245:1 5268:3 5282:1 5300:1 5310:13 5314:1 5315:1 5325:1 5335:1 5365:1 5370:1 5380:1 5423:1 5440:1 5455:1 5474:1 5481:1 5526:2 5545:1 5567:1 5571:1 5575:1 5581:2 5582:1 5622:1 5648:2 5651:2 5683:1 5719:3 5746:2 5779:1 5783:1 5785:1 5790:2 5799:1 5800:1 5811:1 5817:1 5831:1 5859:5 5882:1 5887:1 5894:1 5900:1 5912:1 5919:1 5925:4 5942:2 5975:1 5992:1 6000:1 6006:1 6008:1 6014:1 6020:2 6049:1 6053:2 6057:1 6110:2 6127:1 6227:1 6242:1 6294:1 6341:4 6363:2 6378:2 6397:1 6442:2 6444:1 6480:1 6497:1 6555:1 6557:1 6571:1 6575:1 6590:2 6603:2 6612:1 6613:4 6630:2 6645:1 6672:2 6698:2 6721:1 6763:4 6815:4 6826:2 6827:1 6828:1 6829:1 6832:4 6851:1 6875:1 6883:1 6894:2 6916:3 6917:1 6923:1 6931:1 6932:2 6935:1 6938:1 6942:2 7005:1 7071:1 7084:1 7093:3 7113:5 7169:1 7180:1 7197:2 7210:1 7230:1 7234:1 7239:5 7240:1 7268:1 7280:1 7302:7 7319:2 7333:1 7345:1 7369:1 7380:1 7388:1 7419:1 7421:2 7428:2 7429:1 7434:1 7460:1 7463:1 7468:1 7532:1 7550:1 7560:2 7561:1 7575:1 7584:1 7651:1 7658:1 7694:1 7706:1 7750:5 7762:1 7779:1 7814:2 7818:1 7823:1 7870:2 7901:1 7906:3 7944:1 7945:4 7969:1 7971:1 7978:1 7979:1 7996:1 8006:1 8030:2 8033:2 8058:12 8068:2 8088:1 8104:1 8105:1 8126:1 8175:1 8179:1 8185:1 8241:1 8258:2 8289:2 8307:3 8327:1 8328:1 8329:2 8332:1 8333:4 8341:1 8351:2 8352:2 8359:4 8360:2 8364:1 8372:1 8377:1 8378:1 8386:18 8410:10 8413:1 8441:1 8452:1 8513:1 8546:1 8560:1 8569:1 8592:2 8595:3 8624:1 8648:1 8682:1 8705:1 8710:3 8761:1 8766:2 8781:1 8819:2 8829:1 8841:1 8879:1 8889:2 8921:8 8950:2 8976:12 8982:5 8984:2 8985:1 8986:1 9020:1 9021:1 9073:1 9100:1 9117:1 9134:1 9138:4 9183:12 9220:5 9235:1 9285:1 9286:1 9290:2 9296:1 9299:1 9300:1 9301:1 9304:1 9312:1 9317:2 9355:1 9380:2 9381:3 9390:1 9417:1 9491:2 9514:2 9520:1 9571:1 9597:1 9648:1 9652:2 9658:2 9675:1 9685:1 9701:1 9713:2 9715:1 9725:2 9734:2 9743:2 9785:1 9799:1 9801:1 9815:2 9850:1 9856:1 9859:1 9910:2 9920:1 9932:1 9934:1 9957:1 9979:1 9985:1 10048:1 10062:1 10095:1 10116:3 10135:1 10178:1 10185:1 10206:1 10211:1 10214:1 10251:3 10257:1 10273:1 10351:1 10372:3 10374:1 10377:6 10381:17 10383:1 10385:2 10392:1 10399:1 10406:1 10416:2 10430:1 10434:2 10450:4 10492:2 10503:1 10510:2 10516:1 10545:1 10552:1 10569:1 10608:1 10621:1 10654:1 10655:1 10659:2 10678:3 10705:1 10716:1 10751:1 10757:2 10777:1 10784:1 10793:2 10800:3 10822:1 10828:3 10830:1 10857:2 10860:16 10886:1 10922:1 10951:4 10971:1 10989:1 11034:1 11113:1 11114:2 11126:1 11130:1 11178:1 11185:1 11189:1 11203:1 11209:1 11221:1 11257:1 11274:1 11289:1 11295:2 11304:2 11306:1 11313:2 11362:2 11383:1 11388:1 11404:3 11453:1 11467:12 11473:1 11484:1 11486:1 11489:1 11503:1 11514:1 11515:2 11520:1 11553:1 11557:2 11574:3 11591:2 11608:1 11654:1 11655:1 11661:2 11663:1 11693:1 11703:1 11710:5 11714:1 11730:1 11761:1 11766:1 11798:1 11820:1 11840:3 11854:1 11860:3 11863:2 11864:1 11866:1 11879:1 11883:1 11886:3 11887:1 11888:1 11893:1 11896:1 11929:1 11943:1 12001:1 12025:1 12026:1 12042:4 12048:1 12071:1 12072:1 12088:1 12097:1 12098:1 12123:1 12145:1 12167:1 12213:1 12214:2 12220:2 12225:1 12228:1 12258:1 12266:1 12319:1 12327:1 12373:1 12399:1 12420:1 12427:1 12463:1 12475:1 12476:1 12489:1 12536:1 12551:1 12564:1 12574:1 12583:1 12595:2 12630:1 12646:2 12648:1 12653:1 12659:1 12665:2 12677:5 12680:2 12686:3 12704:1 12706:6 12716:2 12730:1 12735:1 12739:3 12745:1 12774:1 12778:1 12810:3 12838:1 12884:1 12890:1 12983:1 13027:1 13034:1 13053:1 13055:2 13062:1 13081:2 13086:1 13091:1 13098:1 13105:2 13142:1 13166:1 13188:1 13191:1 13209:2 13226:1 13230:1 13232:2 13270:1 13276:1 13319:1 13329:1 13337:1 13351:5 13363:1 13369:1 13387:2 13392:2 13405:1 13416:1 13506:1 13545:2 13550:1 13616:1 13637:1 13674:2 13698:1 13703:1 13736:4 13754:1 13762:9 13794:1 13797:1 13825:1 13834:1 13845:1 13855:1 13858:1 13936:1 13940:1 13987:1 13989:1 13993:1 14001:7 14052:1 14061:5 14082:1 14103:1 14204:1 14236:1 14250:2 14255:1 14274:1 14295:1 14301:4 14313:1 14314:1 14326:1 14328:2 14330:1 14355:1 14393:1 14395:1 14404:1 14426:2 14450:2 14467:1 14474:1 14482:2 14483:1 14493:1 14514:1 14523:1 14524:1 14526:1 14544:1 14545:1 14549:1 14552:1 14557:2 14563:1 14582:1 14638:1 14661:1 14662:3 14677:4 14717:1 14736:1 14744:4 14749:1 14752:2 14757:1 14760:1 14804:3 14837:1 14847:2 14859:1 14890:1 14914:1 14915:4 14936:2 14965:1 14975:2 14987:1 14990:1 15026:1 15035:1 15059:1 15072:1 15078:1 15114:3 15154:2 15195:1 15210:1 15213:2 15219:1 15233:1 15256:1 15338:1 15344:1 15375:1 15400:1 15438:5 15455:1 15503:1 15510:1 15512:1 15528:1 15530:3 15535:1 15541:1 15551:2 15553:1 15558:1 15585:1 15604:16 15606:2 15659:1 15660:1 15663:1 15710:5 15715:1 15744:1 15763:1 15764:1 15822:1 15828:1 15843:1 15852:1 15871:1 15925:1 15934:1 15951:1 15992:1 15994:1 15997:1 16004:1 16006:3 16019:2 16046:1 16100:1 16121:1 16130:1 16132:1 16153:1 16158:2 16169:1 16175:1 16195:1 16196:2 16201:2 16224:1 16227:1 16236:1 16255:1 16256:5 16259:2 16288:1 16318:1 16330:1 16332:1 16335:1 16351:1 16375:9 16460:1 16461:1 16469:1 16481:1 16491:1 16506:1 16524:1 16539:4 16594:2 16612:1 16639:1 16642:1 16645:1 16699:2 16709:5 16712:1 16722:2 16732:1 16780:1 16804:10 16806:1 16817:1 16825:1 16838:1 16869:1 16890:1 16913:2 16919:1 16952:1 16963:2 16972:1 16982:1 16995:1 17038:1 17058:2 17098:1 17107:1 17127:1 17145:1 17163:2 17164:4 17196:1 17200:2 17202:1 17204:2 17223:1 17236:1 17248:1 17267:2 17290:1 17291:1 17295:1 17302:2 17345:2 17361:2 17373:1 17413:1 17461:4 17482:1 17488:1 17490:1 17509:1 17514:2 17521:3 17522:1 17559:1 17561:1 17564:1 17572:1 17584:1 17588:1 17590:1 17599:1 17604:2 17610:1 17615:1 17658:1 17671:1 17678:1 17700:1 17717:1 17718:1 17792:1 17802:1 17828:1 17834:1 17835:2 17836:1 17848:2 17867:1 17882:1 17944:1 17958:1 17991:1 18028:1 18045:1 18068:1 18076:1 18108:1 18110:1 18114:1 18120:4 18167:1 18174:4 18218:1 18247:1 18286:1 18296:1 18334:1 18344:1 18366:1 18369:1 18373:1 18421:1 18425:1 18427:2 18435:10 18438:2 18452:2 18457:2 18472:2 18479:4 18488:1 18515:1 18615:1 18616:1 18632:1 18635:1 18639:2 18643:1 18648:2 18713:1 18728:2 18743:1 18746:1 18752:2 18759:1 18783:2 18789:1 18793:1 18797:1 18833:1 18879:1 18910:1 18911:1 18918:1 18928:1 18934:2 18951:2 18964:2 18974:1 18984:2 18988:3 19004:1 19008:1 19013:1 19019:1 19021:3 19035:1 19036:1 19054:3 19057:3 19065:1 19066:1 19072:2 19077:2 19113:2 19118:4 19124:1 19132:1 19138:1 19155:1 19176:1 19182:1 19217:1 19226:1 19234:1 19266:2 19284:2 19287:1 19288:1 19291:1 19297:2 19372:1 19387:1 19390:1 19399:1 19401:2 19414:1 19418:1 19428:1 19443:1 19446:3 19450:1 19460:1 19472:2 19504:4 19511:4 19516:4 19521:1 19522:1 19557:1 19558:3 19571:3 19589:1 19636:1 19648:1 19664:1 19670:1 19671:2 19676:1 19757:1 19783:1 19802:6 19812:1 19847:1 19875:1 19879:1 19883:1 19906:1 19908:4 19925:1 19959:1 19980:16 20029:1 20034:2 20070:2 20083:2 20110:1 20129:3 20131:1 20174:2 20179:1 20268:16 20271:1 20293:2 20304:1 20326:1 20328:2149 20365:1 20372:1 20378:1 20407:1 20434:1 20439:1 20468:1 20471:1 20497:3 20521:1 20529:1 20530:1 20531:1 20557:1 20565:5 20576:1 20578:5 20582:1 20585:1 20596:1 20603:2 20662:1 20665:1 20669:1 20741:1 20781:1 20796:1 20820:1 20825:1 20828:1 20915:1 20977:4 21007:1 21021:6 21023:2 21027:1 21044:1 21049:1 21072:1 21079:2 21092:1 21095:1 21097:1 21132:1 21140:1 21145:1 21146:2 21147:1 21156:1 21160:5 21192:2 21226:1 21237:4 21262:6 21276:1 21291:1 21298:9 21299:2 21308:1 21309:1 21326:2 21350:1 21359:1 21378:15 21391:1 21398:1 21399:1 21417:1 21425:3 21436:2 21442:1 21446:1 21464:1 21476:1 21511:1 21523:1 21524:2 21551:2 21580:1 21590:2 21597:1 21598:1 21603:1 21635:1 21652:1 21666:1 21667:1 21676:1 21747:1 21753:1 21755:4 21761:1 21777:1 21798:2 21832:1 21862:1 21863:1 21868:1 21875:3 21879:1 21888:1 21894:1 21905:1 21926:1 21936:1 21971:2 21972:1 21978:1 22010:1 22036:1 22045:4 22062:1 22066:2 22068:1 22084:6 22116:1 22117:1 22149:1 22159:1 22235:2 22240:1 22272:2 22287:1 22288:2 22307:1 22316:1 22325:4 22337:1 22339:2 22345:3 22367:1 22381:2 22387:1 22411:1 22446:1 22450:4 22456:2 22462:1 22476:1 22482:4 22507:1 22512:1 22513:1 22533:1 22538:1 22577:1 22585:1 22589:1 22604:1 22617:1 22622:1 22630:1 22635:2 22643:1 22655:6 22657:1 22674:6 22703:1 22704:1 22716:1 22724:1 22736:1 22747:1 22784:1 22786:1 22810:1 22812:1 22815:4 22819:1 22827:1 22838:1 22854:1 22870:1 22876:2 22902:1 22904:2 22939:1 22957:1 22987:1 22988:2 22992:1 23010:1 23019:1 23026:1 23034:1 23078:1 23084:4 23116:1 23129:1 23147:1 23168:1 23169:1 23178:1 23233:1 23242:1 23248:1 23257:1 23261:2 23276:2 23280:1 23303:1 23307:1 23322:1 23331:1 23346:2 23349:1 23363:1 23380:1 23392:1 23399:1 23422:1 23458:1 23462:3 23476:2 23496:1 23511:2 23519:3 23535:2 23571:1 23572:1 23573:2 23583:1 23590:4 23615:1 23616:1 23657:1 23662:1 23723:2 23737:1 23744:1 23763:1 23803:1 23826:2 23836:1 23863:4 23870:1 23871:1 23878:1 23880:1 23899:1 23921:5 23954:1 23958:1 23965:1 23973:1 23981:1 24008:1 24009:1 24023:1 24026:2 24055:1 24057:1 24078:1 24101:1 24115:1 24148:1 24153:1 24159:1 24163:1 24164:1 24174:1 24181:1 24183:1 24225:1 24233:2 24254:1 24263:2 24272:1 24273:2 24275:1 24276:3 24283:1 24301:1 24319:1 24327:1 24358:1 24360:1 24382:1 24383:2 24386:3 24402:1 24407:2 24438:1 24450:2 24455:2 24475:1 24486:1 24487:1 24494:1 24495:3 24518:1 24534:1 24554:1 24568:1 24572:1 24583:1 24586:4 24590:2 24603:1 24613:2 24618:1 24620:2 24627:1 24633:1 24635:1 24651:1 24657:1 24663:1 24669:1 24676:1 24701:4 24716:1 24727:1 24735:1 24737:1 24772:1 24773:1 24777:1 24782:1 24786:3 24787:1 24795:2 24839:1 24862:2 24863:1 24945:1 24976:1 24981:1 25019:2 25032:1 25033:1 25044:1 25056:7 25091:5 25097:1 25105:1 25115:4 25148:3 25174:1 25191:1 25192:1 25193:1 25202:1 25214:1 25215:1 25253:1 25266:1 25271:1 25272:1 25280:2 25301:1 25302:1 25323:2 25330:1 25332:5 25340:1 25352:1 25353:1 25361:1 25376:1 25391:1 25392:1 25398:2 25410:1 25413:1 25421:3 25442:1 25450:1 25470:1 25472:2 25476:1 25490:1 25525:2 25545:1 25556:1 25572:1 25577:1 25593:1 25619:1 25630:2 25655:1 25674:1 25689:1 25694:1 25709:3 25736:1 25749:1 25766:2 25772:1 25781:1 25788:1 25798:4 25835:1 25844:2 25907:1 25919:2 25927:1 25928:1 25961:1 25995:1 26000:1 26011:1 26012:1 26014:1 26058:1 26065:1 26089:1 26092:1 26107:1 26123:1 26125:3 26128:1 26133:1 26135:2 26136:1 26139:1 26143:1 26147:2 26154:1 26158:1 26164:1 26169:1 26213:1 26225:1 26235:2 26248:3 26263:1 26280:1 26281:1 26288:2 26293:1 26305:5 26339:3 26389:3 26438:1 26444:1 26447:1 26466:1 26491:1 26552:1 26560:1 26563:1 26589:1 26592:1 26594:1 26595:1 26604:1 26607:1 26608:1 26611:2 26618:1 26630:1 26631:1 26632:1 26642:1 26653:4 26660:1 26690:1 26692:1 26716:1 26746:1 26749:1 26769:1 26781:5 26809:3 26821:2 26863:1 26894:1 26901:2 26915:1 26929:1 26931:1 26943:1 27033:1 27034:1 27037:2 27039:1 27052:1 27075:1 27088:3 27095:1 27097:1 27104:2 27113:1 27125:1 27138:1 27145:1 27163:1 27164:1 27177:1 27209:4 27216:1 27230:2 27232:1 27247:1 27253:1 27273:1 27297:3 27302:2 27315:1 27326:1 27338:1 27352:2 27375:1 27390:1 27416:1 27422:1 27426:9 27427:1 27466:1 27472:2 27515:2 27559:1 27575:1 27582:2 27583:1 27588:2 27604:3 27605:1 27606:2 27620:2 27662:4 27667:2 27685:2 27690:2 27718:2 27737:2 27768:1 27785:1 27788:1 27799:1 27817:3 27822:1 27839:1 27851:7 27892:1 27906:1 27945:3 27950:1 27995:1 28000:1 28005:1 28040:1 28046:1 28056:1 28072:1 28084:2 28122:2 28128:1 28139:1 28149:1 28159:1 28160:1 28189:1 28193:1 28197:1 28207:1 28217:2 28256:1 28262:2 28275:1 28307:1 28400:1 28419:1 28428:3 28459:1 28474:1 28488:1 28527:1 28540:5 28561:1 28575:1 28630:1 28658:2 28715:1 28728:1 28744:1 28754:2 28755:6 28764:1 28765:1 28778:5 28783:2 28792:1 28809:1 28823:1 28843:2 28858:5 28877:1 28883:1 28911:1 28916:1 28933:16 28947:1 28960:1 28961:1 28977:1 28984:2 29024:1 29034:2 29039:1 29052:1 29063:1 29078:1 29090:1 29091:1 29126:1 29146:1 29154:1 29182:1 29221:1 29231:1 29239:3 29240:1 29268:1 29272:1 29292:1 29314:1 29339:2 29349:2 29357:1 29387:2 29396:2 29404:1 29413:1 29422:1 29429:1 29431:3 29444:1 29457:4 29465:1 29471:1 29490:1 29495:2 29519:1 29535:1 29543:1 29546:1 29551:1 29557:3 29560:1 29602:1 29650:1 29652:2 29664:1 29675:1 29684:1 29730:1 29742:1 29759:1 29762:1 29763:1 29775:1 29795:2 29798:1 29816:5 29855:1 29865:1 29866:1 29890:1 29901:1 29902:1 29930:1 29931:1 29935:1 29988:1 29990:1 29998:1 30003:1 30036:1 30056:2 30084:2 30113:3 30123:1 30137:11 30138:1 30145:1 30157:1 30162:3 30173:2 30180:2 30183:1 30184:2 30225:2 30226:1 30239:1 30241:8 30253:1 30263:1 30264:1 30277:2 30279:1 30280:1 30284:1 30312:1 30330:3 30334:1 30335:2 30339:1 30362:1 30385:1 30394:1 30396:4 30438:1 30447:1 30449:2 30459:1 30462:4 30466:1 30468:1 30508:1 30538:1 30541:1 30551:1 30561:2 30573:1 30580:1 30586:1 30592:1 30646:1 30678:1 30679:1 30680:1 30682:2 30686:2 30716:1 30725:2 30760:2 30787:1 30795:2 30815:2 30823:1 30854:3 30868:1 30871:1 30872:1 30897:2 30898:1 30901:1 30902:1 30903:1 30927:1 30952:1 30962:1 30998:1 31028:1 31032:1 31034:1 31037:2 31060:1 31076:1 31089:4 31098:3 31115:1 31168:1 31184:2 31210:1 31215:1 31233:4 31258:1 31316:1 31331:1 31341:1 31353:1 31355:3 31359:1 31377:1 31378:1 31383:1 31407:2 31427:2 31432:1 31446:1 31447:1 31462:1 31478:2 31481:1 31489:4 31497:1 31505:3 31507:1 31510:1 31548:1 31550:1 31559:1 31567:1 31615:2 18 6:1 14:1 18:1 34:1 55:1 69:1 75:1 123:1 188:4 210:2 214:1 216:2 219:1 237:2 269:2 273:2 283:2 302:1 323:2 339:4 352:1 358:1 359:1 372:6 383:1 389:1 395:1 448:1 449:3 454:1 466:1 538:1 548:1 552:1 570:1 572:1 599:1 600:3 603:1 618:1 628:2 632:1 646:1 656:2 683:1 694:2 704:5 715:1 716:1 735:1 748:3 756:1 767:2 768:1 781:1 782:1 790:1 795:1 802:1 866:1 881:1 888:4 890:1 898:1 909:1 923:1 924:3 926:1 937:2 949:1 950:2 960:2 964:1 970:1 973:1 1014:2 1130:1 1132:3 1148:1 1167:1 1202:1 1248:4 1272:1 1279:2 1280:2 1281:1 1283:2 1295:1 1316:2 1342:1 1343:1 1351:2 1434:1 1437:1 1447:1 1453:1 1454:2 1461:1 1465:1 1487:1 1500:3 1501:1 1506:1 1520:1 1522:1 1554:1 1556:2 1558:1 1562:1 1595:1 1604:1 1615:2 1619:1 1633:4 1636:1 1637:1 1647:2 1662:1 1664:1 1689:1 1706:1 1708:1 1720:2 1723:1 1752:1 1785:1 1789:3 1824:1 1842:4 1885:1 1960:1 1966:1 1979:2 1981:1 1985:1 1991:1 1993:3 2014:1 2043:2 2047:1 2073:1 2079:1 2091:1 2093:1 2117:1 2131:1 2133:3 2137:1 2140:13 2143:1 2147:1 2169:1 2183:1 2192:1 2212:1 2242:2 2253:1 2263:1 2273:1 2290:1 2300:3 2303:1 2310:1 2312:4 2314:1 2315:1 2319:4 2322:1 2326:1 2328:1 2329:4 2342:1 2344:1 2361:2 2362:1 2365:1 2369:1 2371:1 2374:1 2375:3 2377:2 2381:1 2382:1 2388:1 2393:2 2396:2 2397:4 2403:2 2412:1 2414:3 2416:1 2432:17 2442:1 2450:3 2506:4 2517:1 2541:1 2543:1 2545:1 2547:1 2557:4 2580:1 2608:1 2621:2 2649:1 2653:1 2662:1 2687:2 2699:2 2701:1 2717:1 2718:1 2720:2 2728:2 2737:1 2754:2 2793:1 2820:2 2827:2 2828:1 2847:1 2880:1 2889:1 2896:1 2925:1 2949:1 2952:6 2964:2 2974:1 2975:1 3050:2 3063:10 3066:3 3068:1 3088:1 3107:1 3116:1 3119:10 3126:1 3127:2 3143:2 3164:1 3182:1 3184:1 3218:1 3221:1 3226:1 3230:1 3317:2 3330:6 3388:4 3401:1 3439:1 3442:1 3447:1 3448:3 3467:1 3479:1 3490:1 3494:1 3495:1 3500:1 3528:2 3537:2 3545:1 3563:1 3573:1 3581:1 3600:1 3619:1 3719:1 3728:1 3736:2 3798:1 3808:1 3828:1 3860:1 3861:1 3872:1 3928:2 3949:2 3952:2 3973:2 3982:1 4010:1 4019:1 4020:1 4025:2 4056:1 4058:1 4064:2 4065:4 4066:1 4077:1 4078:1 4086:2 4089:2 4115:3 4128:1 4129:2 4133:3 4173:1 4176:1 4185:2 4186:1 4197:1 4202:1 4232:1 4248:1 4255:1 4260:1 4281:1 4289:1 4301:1 4307:2 4313:1 4328:1 4348:1 4354:2 4376:1 4390:1 4410:1 4419:2 4422:3 4431:2 4456:1 4467:2 4492:1 4496:1 4505:1 4526:1 4531:1 4549:1 4560:1 4631:2 4634:1 4661:1 4677:1 4717:2 4754:2 4757:1 4779:1 4789:4 4803:1 4848:1 4851:2 4917:1 4920:1 4921:1 4922:2 4933:1 4946:2 4968:1 4969:3 4992:1 5002:1 5009:1 5012:4 5024:2 5046:1 5080:1 5098:2 5104:1 5108:1 5116:2 5119:1 5121:1 5136:1 5154:1 5204:1 5212:2 5245:1 5268:3 5282:1 5300:1 5310:14 5314:1 5315:1 5325:1 5335:1 5365:1 5370:1 5380:1 5423:1 5440:1 5455:1 5474:1 5481:1 5526:2 5545:1 5567:1 5571:1 5575:1 5581:2 5582:1 5622:1 5648:2 5651:2 5683:1 5719:3 5746:2 5779:1 5783:1 5785:1 5790:2 5799:1 5800:1 5811:1 5817:1 5831:1 5859:6 5882:1 5887:1 5894:1 5900:1 5912:1 5919:1 5925:4 5942:2 5975:1 5992:1 6000:1 6006:1 6008:1 6014:1 6020:2 6049:1 6053:2 6057:1 6110:2 6127:1 6227:2 6242:1 6294:1 6297:1 6341:4 6363:2 6378:2 6397:1 6442:2 6444:1 6471:1 6480:1 6497:1 6555:1 6557:1 6571:1 6575:1 6590:2 6603:2 6612:1 6613:4 6630:2 6645:1 6672:2 6698:3 6721:1 6763:4 6815:4 6826:2 6827:1 6828:1 6829:1 6832:4 6851:1 6875:1 6883:1 6894:3 6916:3 6917:1 6923:1 6931:1 6932:2 6935:1 6938:1 6942:2 7005:1 7071:1 7081:1 7084:1 7093:3 7113:6 7169:1 7180:1 7197:2 7210:1 7230:1 7234:1 7239:5 7240:1 7268:1 7280:1 7302:8 7319:2 7333:1 7345:1 7369:1 7380:1 7388:1 7419:1 7421:2 7428:2 7429:1 7434:1 7460:1 7463:1 7468:1 7532:1 7550:1 7560:2 7561:1 7575:1 7584:1 7651:1 7658:1 7694:1 7706:1 7750:5 7762:1 7779:1 7814:2 7818:1 7823:1 7870:2 7901:1 7906:3 7944:1 7945:4 7969:1 7971:1 7978:1 7979:1 7996:1 8006:1 8030:2 8033:2 8055:1 8058:13 8068:2 8088:1 8104:1 8105:1 8126:1 8175:1 8179:1 8185:1 8241:1 8258:2 8289:2 8307:3 8327:1 8328:1 8329:2 8332:2 8333:5 8341:1 8351:2 8352:2 8359:5 8360:2 8364:1 8372:1 8377:1 8378:1 8386:19 8410:10 8413:1 8441:1 8452:1 8483:1 8513:1 8546:1 8560:1 8569:1 8592:3 8595:3 8624:1 8648:1 8682:1 8705:1 8710:3 8761:1 8766:2 8781:1 8819:2 8829:1 8841:1 8879:1 8883:1 8889:2 8921:8 8950:2 8976:12 8982:5 8984:2 8985:1 8986:1 9020:1 9021:1 9073:1 9100:1 9117:1 9134:1 9138:4 9183:13 9220:5 9235:1 9250:1 9283:1 9285:1 9286:1 9290:2 9296:1 9299:1 9300:1 9301:1 9304:1 9312:1 9317:2 9355:1 9380:2 9381:4 9390:1 9417:1 9491:2 9508:1 9514:2 9520:1 9571:1 9597:1 9648:1 9652:2 9658:2 9675:1 9685:2 9701:1 9713:2 9715:1 9725:2 9734:2 9743:2 9785:1 9799:1 9801:1 9815:2 9850:1 9856:1 9859:1 9910:2 9920:1 9932:1 9934:1 9957:1 9979:1 9985:1 10048:1 10062:1 10095:1 10116:3 10135:1 10178:1 10185:1 10206:1 10211:1 10214:1 10251:3 10255:1 10257:1 10273:1 10351:1 10372:3 10374:1 10377:6 10381:17 10383:1 10385:2 10392:2 10399:1 10406:1 10416:2 10430:1 10434:2 10450:4 10492:2 10503:1 10510:2 10516:2 10545:1 10552:1 10569:1 10608:1 10621:2 10649:1 10654:1 10655:1 10659:2 10678:3 10705:1 10716:1 10751:1 10757:2 10777:1 10784:1 10793:3 10800:3 10822:1 10828:3 10830:1 10857:2 10860:17 10886:1 10922:1 10951:4 10971:1 10989:1 11034:1 11113:1 11114:2 11126:1 11130:1 11178:1 11185:1 11189:1 11203:1 11209:1 11221:1 11257:1 11274:1 11289:1 11295:2 11304:2 11306:1 11313:2 11362:2 11383:1 11388:1 11404:3 11453:1 11467:13 11473:1 11484:1 11486:1 11489:1 11503:1 11514:1 11515:2 11520:1 11553:1 11557:2 11574:3 11591:2 11608:1 11654:1 11655:1 11661:2 11663:1 11693:1 11703:1 11710:5 11714:1 11730:1 11761:1 11766:1 11798:1 11820:1 11840:3 11854:1 11860:3 11863:2 11864:1 11866:1 11879:1 11883:1 11886:3 11887:1 11888:1 11893:1 11896:1 11929:1 11943:1 12001:1 12025:1 12026:1 12042:4 12048:1 12071:1 12072:1 12088:1 12094:1 12097:1 12098:1 12123:1 12145:1 12167:1 12213:1 12214:2 12220:2 12225:1 12228:1 12258:1 12266:1 12319:1 12327:1 12373:1 12399:1 12420:1 12427:1 12463:1 12475:1 12476:1 12489:1 12536:1 12551:1 12564:1 12574:1 12583:1 12595:2 12630:1 12646:2 12648:1 12653:1 12659:1 12665:2 12677:6 12680:2 12686:3 12704:1 12706:6 12716:2 12730:1 12735:1 12739:3 12745:1 12774:1 12778:1 12810:3 12838:1 12884:1 12890:1 12983:1 13027:1 13034:1 13053:1 13055:2 13062:1 13081:3 13086:1 13091:1 13098:1 13105:2 13142:1 13166:1 13188:1 13191:1 13209:2 13226:2 13230:1 13232:2 13270:1 13276:1 13319:1 13329:1 13337:1 13351:5 13363:1 13369:1 13387:2 13392:2 13405:1 13416:1 13457:1 13506:1 13544:1 13545:2 13550:1 13616:1 13637:1 13674:2 13698:1 13703:1 13736:5 13754:1 13762:10 13794:1 13797:1 13825:1 13834:1 13845:1 13855:1 13858:1 13936:2 13940:1 13987:1 13989:1 13993:1 14001:7 14052:1 14061:5 14082:1 14103:1 14204:1 14236:1 14250:2 14255:1 14257:1 14274:2 14295:1 14301:4 14311:1 14313:1 14314:1 14326:1 14328:2 14330:1 14355:1 14393:1 14395:1 14404:1 14417:1 14426:2 14450:2 14467:1 14474:1 14482:2 14483:1 14493:1 14514:1 14523:1 14524:1 14526:1 14544:1 14545:1 14549:1 14552:1 14557:2 14563:1 14582:1 14638:1 14661:1 14662:3 14670:1 14677:4 14717:1 14736:1 14744:4 14749:1 14752:2 14757:1 14760:1 14804:3 14837:1 14847:2 14859:1 14890:1 14914:1 14915:4 14936:2 14965:1 14972:1 14975:2 14987:1 14990:1 15026:1 15035:1 15059:1 15072:1 15078:1 15114:3 15154:2 15195:1 15210:1 15213:2 15219:1 15233:1 15252:1 15256:1 15338:1 15344:1 15375:1 15400:1 15433:1 15438:6 15455:1 15503:1 15510:1 15512:1 15528:1 15530:3 15535:1 15541:1 15551:2 15553:1 15558:1 15585:1 15604:17 15606:2 15608:1 15659:1 15660:1 15663:1 15710:5 15715:1 15744:1 15763:1 15764:1 15822:1 15828:1 15843:1 15852:1 15871:1 15925:1 15934:1 15951:1 15992:1 15994:1 15997:1 15999:1 16004:1 16006:3 16019:2 16046:1 16100:1 16121:1 16130:1 16132:1 16153:1 16158:2 16169:1 16175:1 16195:1 16196:2 16201:2 16224:1 16227:1 16236:1 16255:1 16256:5 16259:2 16288:1 16318:1 16330:1 16332:1 16335:1 16351:1 16375:10 16460:1 16461:1 16469:1 16481:1 16491:1 16506:1 16524:1 16539:4 16594:2 16612:1 16639:1 16642:1 16645:1 16699:2 16709:5 16712:1 16722:2 16732:1 16763:1 16780:1 16804:10 16806:1 16817:1 16825:1 16838:1 16869:1 16890:1 16913:2 16919:1 16952:1 16963:2 16972:1 16982:1 16995:1 17038:1 17058:2 17098:2 17107:1 17127:1 17145:1 17163:2 17164:4 17196:1 17200:2 17202:1 17204:2 17223:1 17236:1 17248:1 17267:2 17290:1 17291:1 17295:1 17302:2 17345:2 17361:2 17373:1 17413:1 17461:5 17482:1 17488:1 17490:1 17509:1 17514:2 17521:3 17522:1 17559:1 17561:1 17564:1 17572:1 17584:1 17588:1 17590:1 17599:1 17604:2 17610:1 17615:1 17658:1 17671:1 17678:1 17700:1 17717:1 17718:1 17792:1 17802:1 17828:1 17834:1 17835:2 17836:1 17848:2 17867:1 17882:1 17944:1 17958:1 17991:1 18028:1 18045:1 18068:1 18076:1 18108:1 18110:2 18114:1 18120:4 18167:1 18174:4 18218:1 18247:1 18286:1 18296:1 18334:1 18344:1 18366:1 18369:1 18373:1 18414:1 18421:1 18425:1 18427:2 18435:10 18438:2 18452:2 18457:2 18472:2 18479:4 18488:2 18515:1 18615:1 18616:1 18632:1 18635:1 18639:2 18643:1 18648:2 18713:1 18728:2 18743:1 18746:1 18752:2 18759:1 18783:2 18789:1 18793:1 18797:1 18833:1 18879:1 18910:1 18911:1 18918:1 18928:1 18934:2 18951:2 18964:2 18974:1 18984:2 18988:3 19004:1 19008:1 19013:1 19019:1 19021:3 19035:1 19036:1 19054:3 19057:3 19065:1 19066:1 19072:2 19077:2 19113:2 19118:4 19124:1 19132:1 19138:1 19155:1 19176:1 19182:1 19217:1 19226:1 19234:1 19266:2 19284:2 19287:1 19288:1 19291:1 19297:2 19372:1 19387:1 19390:1 19399:1 19401:2 19414:1 19418:1 19428:1 19443:1 19446:4 19450:1 19460:1 19472:2 19504:4 19511:4 19516:4 19521:1 19522:1 19557:1 19558:3 19571:3 19589:1 19636:1 19648:1 19664:1 19670:1 19671:2 19676:1 19757:1 19783:1 19802:6 19812:1 19847:1 19875:1 19879:1 19883:1 19906:1 19908:4 19925:1 19959:1 19980:17 20029:1 20034:2 20070:2 20083:2 20110:1 20129:3 20131:1 20174:2 20179:1 20268:17 20271:1 20293:2 20304:1 20326:1 20328:2198 20365:1 20372:1 20378:2 20407:1 20434:1 20439:1 20468:1 20471:1 20497:3 20521:1 20529:1 20530:1 20531:1 20551:1 20557:1 20565:5 20576:1 20578:5 20582:1 20584:1 20585:1 20596:1 20603:2 20662:1 20665:1 20669:1 20741:1 20743:1 20781:1 20796:1 20820:1 20825:1 20828:1 20915:1 20977:4 21007:1 21021:6 21023:3 21027:1 21044:1 21049:1 21072:1 21079:2 21092:1 21095:1 21097:1 21132:1 21140:1 21145:1 21146:2 21147:1 21156:1 21160:7 21192:2 21226:1 21237:4 21262:6 21276:1 21291:1 21298:10 21299:2 21308:1 21309:1 21326:2 21350:1 21359:1 21378:15 21391:1 21398:1 21399:1 21417:1 21425:3 21436:2 21442:1 21446:1 21464:1 21476:1 21511:1 21523:1 21524:2 21551:2 21580:1 21590:2 21597:1 21598:1 21603:1 21635:2 21652:1 21666:1 21667:1 21676:1 21747:1 21753:1 21755:4 21761:1 21777:1 21798:2 21832:1 21862:1 21863:1 21868:1 21875:3 21879:1 21888:1 21894:1 21905:1 21926:1 21936:1 21971:2 21972:1 21978:1 22010:1 22036:1 22045:4 22062:1 22066:2 22068:1 22084:6 22116:1 22117:1 22149:1 22159:1 22235:2 22240:1 22272:2 22287:1 22288:2 22307:1 22316:1 22325:4 22337:1 22339:2 22345:4 22367:1 22381:2 22387:1 22411:1 22446:1 22450:4 22456:2 22462:1 22476:1 22482:4 22507:1 22512:1 22513:1 22533:1 22538:1 22577:1 22585:1 22589:1 22604:1 22617:1 22622:1 22630:1 22635:2 22643:1 22655:6 22657:1 22674:6 22703:1 22704:1 22716:1 22724:1 22736:1 22747:1 22784:1 22786:1 22810:1 22812:1 22815:4 22819:1 22827:1 22838:1 22854:1 22870:1 22876:2 22902:1 22904:2 22939:1 22957:1 22987:1 22988:2 22992:1 23010:1 23019:1 23026:1 23034:1 23078:1 23084:4 23116:1 23129:1 23147:1 23168:2 23169:1 23178:1 23233:1 23242:1 23248:1 23257:1 23261:2 23276:2 23280:1 23303:1 23307:1 23322:1 23331:1 23346:2 23349:1 23363:1 23380:1 23382:1 23392:1 23399:1 23422:1 23458:2 23462:3 23476:2 23496:1 23511:2 23519:3 23535:2 23571:1 23572:1 23573:2 23583:1 23590:4 23615:1 23616:1 23657:1 23662:1 23723:2 23737:1 23744:1 23763:1 23803:1 23826:2 23836:1 23863:4 23870:1 23871:1 23878:1 23880:1 23893:1 23899:1 23921:6 23954:1 23958:1 23965:1 23973:1 23981:1 24008:1 24009:2 24023:1 24026:2 24055:1 24057:1 24078:1 24101:1 24115:1 24119:1 24148:1 24153:1 24159:1 24163:1 24164:1 24174:1 24181:1 24183:1 24225:1 24233:2 24254:1 24263:2 24272:1 24273:2 24275:1 24276:3 24283:1 24301:1 24307:1 24319:1 24327:1 24358:1 24360:1 24372:1 24382:1 24383:2 24386:3 24402:1 24407:2 24438:1 24450:2 24455:2 24475:1 24486:1 24487:1 24494:1 24495:3 24518:1 24534:1 24554:1 24568:1 24572:1 24583:1 24586:4 24590:2 24603:1 24613:2 24618:1 24620:2 24627:1 24633:1 24635:1 24651:1 24657:1 24663:1 24669:1 24676:1 24701:4 24716:1 24727:2 24735:1 24737:1 24772:1 24773:1 24777:1 24782:1 24786:3 24787:1 24795:2 24839:1 24862:2 24863:1 24945:1 24976:1 24981:1 25019:2 25032:1 25033:1 25044:1 25056:7 25091:5 25097:1 25105:1 25115:4 25148:3 25174:1 25191:1 25192:1 25193:1 25202:1 25214:1 25215:1 25253:1 25266:1 25271:1 25272:1 25280:2 25301:1 25302:1 25323:2 25330:1 25332:5 25340:1 25352:1 25353:1 25361:1 25376:1 25391:1 25392:1 25398:2 25410:1 25413:1 25421:4 25442:1 25450:1 25470:1 25472:2 25476:1 25490:1 25525:2 25545:1 25556:1 25572:1 25577:1 25593:1 25619:1 25630:2 25655:1 25674:2 25689:1 25694:1 25709:3 25736:1 25749:1 25766:2 25772:1 25781:1 25788:1 25798:4 25835:1 25844:2 25907:1 25919:2 25927:1 25928:1 25961:1 25995:1 26000:1 26011:1 26012:1 26014:1 26058:1 26065:1 26089:1 26092:1 26103:1 26107:1 26123:1 26125:3 26128:1 26133:1 26135:2 26136:1 26139:1 26143:1 26147:2 26154:1 26158:1 26164:1 26169:1 26213:1 26225:1 26235:2 26248:3 26263:1 26280:1 26281:1 26288:2 26293:1 26305:5 26339:3 26389:3 26438:1 26444:1 26447:1 26466:1 26491:1 26552:1 26560:1 26563:2 26589:1 26592:1 26594:1 26595:1 26604:1 26607:1 26608:1 26611:2 26618:1 26630:1 26631:1 26632:1 26642:1 26653:4 26660:1 26690:1 26692:1 26716:1 26727:1 26746:1 26749:1 26769:1 26781:5 26809:3 26821:2 26863:1 26894:1 26901:2 26915:1 26929:1 26931:1 26943:1 27033:1 27034:1 27037:2 27039:1 27052:1 27075:1 27088:3 27095:1 27097:1 27104:2 27113:1 27125:1 27138:1 27145:1 27163:1 27164:1 27177:1 27209:4 27216:1 27230:2 27232:1 27247:1 27253:1 27264:1 27273:1 27297:3 27302:2 27315:1 27326:1 27338:1 27352:2 27375:1 27390:1 27416:1 27422:1 27426:10 27427:1 27466:1 27472:2 27515:2 27559:1 27575:1 27582:2 27583:1 27588:2 27604:3 27605:1 27606:2 27620:2 27662:5 27667:2 27685:2 27690:2 27718:2 27737:3 27768:1 27785:1 27788:1 27799:1 27817:3 27822:1 27839:1 27851:7 27892:1 27906:1 27945:3 27950:1 27995:1 28000:1 28005:1 28025:1 28040:1 28046:1 28056:1 28072:1 28074:1 28084:2 28122:2 28128:1 28139:1 28149:1 28159:1 28160:1 28189:1 28193:1 28197:1 28207:1 28217:2 28256:1 28262:2 28275:1 28307:1 28400:1 28419:1 28428:3 28459:1 28474:1 28488:1 28527:1 28540:5 28555:1 28561:1 28575:1 28630:1 28658:2 28715:1 28728:1 28744:1 28754:2 28755:6 28764:1 28765:1 28778:6 28783:2 28792:1 28809:1 28823:1 28843:2 28858:5 28877:2 28883:1 28911:1 28916:1 28929:1 28933:17 28947:1 28960:1 28961:1 28977:1 28984:2 29024:1 29034:2 29039:1 29052:1 29063:1 29078:1 29090:1 29091:1 29126:1 29146:1 29154:1 29182:1 29193:1 29221:1 29231:1 29239:4 29240:1 29268:1 29272:1 29292:1 29314:1 29339:2 29349:2 29357:1 29387:2 29396:2 29404:1 29413:1 29422:1 29429:1 29431:3 29444:1 29457:4 29465:1 29471:2 29490:1 29495:2 29519:1 29535:1 29543:1 29546:1 29551:1 29557:3 29560:1 29602:1 29650:1 29652:2 29664:1 29675:1 29684:1 29730:1 29742:1 29748:1 29759:1 29762:1 29763:1 29775:1 29795:2 29798:1 29816:6 29855:1 29865:1 29866:1 29890:1 29901:1 29902:1 29930:1 29931:1 29935:1 29988:1 29990:1 29998:1 30003:1 30036:1 30056:2 30084:2 30113:3 30123:1 30137:11 30138:1 30145:1 30157:1 30162:3 30173:2 30180:2 30183:1 30184:2 30225:2 30226:1 30239:2 30241:8 30253:1 30263:1 30264:1 30277:2 30279:1 30280:1 30284:1 30312:1 30330:3 30334:1 30335:2 30339:2 30362:1 30385:1 30394:1 30396:4 30438:1 30447:1 30449:2 30459:1 30462:4 30466:1 30468:1 30508:1 30538:1 30541:1 30551:1 30561:2 30573:1 30580:1 30586:1 30592:1 30646:1 30654:1 30678:1 30679:1 30680:1 30682:2 30686:2 30716:2 30725:2 30760:2 30787:1 30795:2 30815:2 30823:1 30854:3 30868:1 30871:1 30872:1 30897:2 30898:1 30901:1 30902:1 30903:1 30927:1 30952:1 30962:1 30998:1 31028:1 31032:1 31034:1 31037:2 31060:1 31076:1 31089:4 31098:3 31115:1 31168:1 31184:2 31210:1 31215:1 31233:4 31258:1 31316:1 31331:1 31341:1 31353:1 31355:3 31359:1 31377:1 31378:1 31383:1 31407:2 31427:2 31432:1 31446:1 31447:1 31462:1 31478:2 31481:1 31489:4 31497:1 31505:3 31507:1 31510:1 31548:1 31550:1 31559:1 31567:1 31615:2 18 6:1 14:1 18:1 34:1 55:1 69:1 75:1 123:1 188:4 210:2 214:1 216:2 219:1 237:2 269:2 273:2 283:2 302:1 323:2 339:4 352:1 358:1 359:1 372:6 383:1 389:1 395:1 448:1 449:3 454:1 466:1 469:1 490:1 538:1 548:1 552:1 570:1 572:1 599:1 600:3 603:1 618:1 628:2 632:1 646:1 656:2 683:1 694:2 704:5 715:1 716:1 735:1 748:3 756:1 767:2 768:1 781:1 782:1 790:1 795:1 802:1 866:1 881:1 888:4 890:3 898:1 909:1 923:1 924:3 926:1 937:2 949:1 950:2 960:2 964:1 970:1 973:1 1011:1 1014:2 1130:1 1132:3 1148:1 1167:1 1181:1 1202:1 1248:4 1272:1 1279:2 1280:2 1281:1 1283:2 1295:1 1316:2 1342:1 1343:1 1351:2 1353:1 1434:1 1437:1 1447:1 1453:1 1454:2 1461:1 1465:1 1487:1 1500:3 1501:1 1506:1 1520:1 1522:1 1554:1 1556:2 1558:1 1562:1 1595:1 1604:1 1615:2 1619:1 1633:4 1636:1 1637:1 1647:2 1662:1 1664:1 1689:1 1706:1 1708:1 1720:2 1723:1 1752:1 1785:1 1789:3 1824:1 1842:4 1885:1 1960:1 1966:1 1979:2 1981:1 1985:1 1991:1 1993:3 2014:1 2043:2 2047:1 2073:1 2079:1 2091:1 2093:1 2117:1 2131:1 2133:3 2137:1 2140:14 2143:1 2147:1 2169:1 2183:1 2192:1 2212:1 2242:2 2253:1 2263:1 2273:1 2290:1 2300:3 2303:1 2310:1 2312:4 2314:1 2315:1 2319:4 2322:1 2326:1 2328:1 2329:4 2336:1 2342:1 2344:2 2361:2 2362:1 2363:1 2365:1 2369:1 2371:1 2374:1 2375:3 2377:2 2381:1 2382:1 2388:1 2393:2 2396:2 2397:4 2403:2 2412:1 2414:3 2416:1 2432:19 2442:1 2450:3 2506:4 2517:1 2541:1 2543:1 2545:1 2547:1 2557:4 2580:1 2608:1 2621:2 2649:1 2653:1 2662:1 2687:2 2699:3 2701:1 2717:1 2718:1 2720:2 2728:2 2737:1 2754:2 2793:1 2820:2 2827:2 2828:1 2847:1 2880:1 2889:1 2895:1 2896:1 2925:1 2931:1 2949:1 2952:6 2964:2 2974:1 2975:1 3050:2 3063:10 3066:3 3068:1 3088:1 3107:1 3116:1 3119:12 3126:1 3127:2 3143:2 3156:1 3164:2 3182:1 3184:1 3218:1 3221:1 3226:1 3230:1 3317:2 3330:6 3388:4 3401:1 3439:1 3442:1 3447:1 3448:3 3467:1 3479:1 3490:1 3494:1 3495:1 3500:1 3528:2 3537:2 3545:1 3563:1 3573:1 3581:1 3600:1 3619:1 3719:1 3728:1 3736:3 3798:1 3808:1 3828:1 3860:1 3861:1 3872:1 3928:2 3949:2 3952:2 3973:2 3982:1 4010:1 4019:1 4020:2 4025:2 4056:1 4058:1 4064:2 4065:4 4066:1 4077:1 4078:1 4086:2 4089:2 4115:3 4128:1 4129:2 4133:3 4173:1 4176:1 4185:2 4186:1 4197:1 4202:1 4232:1 4248:1 4255:1 4260:1 4281:1 4289:1 4301:1 4307:2 4313:2 4328:1 4348:1 4354:2 4376:1 4390:1 4410:1 4419:2 4422:3 4431:3 4437:1 4456:1 4467:2 4492:1 4496:1 4505:1 4526:1 4531:1 4549:1 4560:1 4631:2 4634:1 4661:1 4668:1 4677:1 4717:2 4754:2 4757:1 4779:1 4789:4 4803:1 4848:1 4851:2 4890:1 4917:1 4920:1 4921:1 4922:2 4933:1 4946:2 4968:1 4969:3 4992:1 5002:1 5009:1 5012:4 5024:2 5046:1 5080:1 5098:2 5104:1 5108:1 5116:2 5119:1 5121:1 5136:1 5154:1 5204:1 5212:2 5245:1 5268:3 5282:1 5300:1 5310:14 5314:1 5315:1 5325:1 5335:1 5365:1 5370:1 5380:1 5423:1 5440:1 5455:1 5474:1 5481:1 5526:2 5545:1 5567:1 5571:1 5575:1 5581:2 5582:1 5622:1 5648:2 5651:2 5683:1 5719:3 5746:2 5779:1 5783:1 5785:1 5790:2 5799:1 5800:1 5811:1 5817:1 5831:1 5859:6 5882:1 5887:1 5894:1 5900:1 5912:1 5919:1 5925:4 5942:2 5975:1 5992:1 6000:1 6006:1 6008:1 6014:1 6020:2 6049:1 6053:2 6057:1 6110:2 6127:1 6195:1 6227:2 6242:1 6294:1 6297:1 6341:4 6363:2 6378:2 6397:1 6442:2 6444:1 6445:1 6471:1 6480:1 6497:1 6555:1 6557:1 6571:1 6575:1 6590:2 6603:2 6612:1 6613:5 6630:2 6645:1 6654:1 6672:2 6698:3 6721:1 6763:4 6815:4 6826:2 6827:1 6828:1 6829:1 6832:4 6851:1 6875:1 6883:1 6894:3 6916:3 6917:1 6923:1 6931:1 6932:2 6935:1 6938:1 6939:1 6942:2 7005:1 7071:1 7081:1 7084:2 7093:3 7113:6 7169:1 7180:1 7197:2 7210:1 7230:1 7234:1 7239:6 7240:1 7268:1 7280:1 7302:8 7319:2 7333:1 7345:1 7369:1 7380:1 7388:1 7401:1 7419:1 7421:2 7428:2 7429:1 7434:1 7460:1 7463:1 7468:1 7532:1 7550:1 7560:2 7561:1 7575:1 7584:1 7651:1 7658:1 7694:1 7706:1 7750:5 7762:1 7764:1 7779:1 7814:2 7818:1 7823:1 7870:2 7901:1 7906:3 7944:1 7945:4 7969:1 7971:1 7978:1 7979:1 7996:1 8006:1 8030:2 8033:2 8055:1 8058:14 8068:2 8088:1 8104:1 8105:1 8126:1 8175:1 8179:1 8185:1 8241:2 8258:2 8289:2 8307:3 8327:1 8328:1 8329:2 8332:2 8333:5 8341:1 8351:3 8352:2 8359:6 8360:2 8364:1 8372:1 8377:1 8378:1 8386:19 8410:12 8413:1 8441:1 8452:1 8483:1 8513:1 8546:1 8560:1 8569:1 8592:3 8595:3 8624:1 8648:1 8682:1 8705:1 8710:3 8761:1 8766:2 8781:1 8819:2 8829:1 8841:1 8879:1 8883:1 8889:2 8921:10 8950:2 8976:12 8982:5 8984:2 8985:1 8986:1 9007:1 9020:1 9021:1 9073:1 9100:1 9117:1 9134:1 9138:4 9183:14 9220:6 9235:1 9250:1 9283:1 9285:1 9286:1 9290:2 9296:1 9299:1 9300:1 9301:1 9304:1 9312:1 9317:2 9355:1 9380:2 9381:4 9390:1 9395:1 9417:1 9490:1 9491:2 9508:1 9514:2 9520:1 9571:1 9597:1 9648:1 9652:2 9658:2 9675:1 9685:2 9701:1 9713:2 9715:1 9724:1 9725:2 9734:2 9743:2 9785:1 9799:1 9801:1 9815:2 9850:1 9856:1 9859:1 9910:2 9920:1 9932:1 9934:1 9957:1 9979:1 9985:1 10048:1 10062:1 10095:1 10116:3 10135:1 10178:1 10185:1 10206:1 10211:1 10214:1 10251:3 10255:1 10257:1 10273:1 10351:1 10372:3 10374:1 10377:6 10381:17 10383:1 10385:2 10392:2 10399:1 10406:1 10416:2 10430:1 10434:2 10450:4 10492:2 10503:1 10510:2 10516:2 10545:1 10552:1 10569:1 10608:1 10621:2 10649:1 10654:1 10655:1 10659:2 10678:4 10705:1 10716:1 10751:1 10757:2 10773:1 10777:1 10784:1 10793:3 10800:3 10822:1 10828:3 10830:1 10857:2 10860:19 10886:1 10922:1 10951:4 10971:1 10989:1 11034:1 11094:1 11113:1 11114:2 11126:1 11130:1 11178:1 11185:1 11189:1 11203:1 11209:1 11221:1 11257:1 11274:1 11289:1 11295:2 11304:2 11306:1 11313:2 11362:2 11383:1 11388:1 11404:3 11453:1 11467:14 11473:1 11484:1 11486:1 11489:1 11503:1 11514:1 11515:3 11520:1 11530:1 11553:1 11557:2 11574:3 11591:2 11608:1 11654:1 11655:1 11661:2 11663:1 11693:1 11703:1 11710:6 11714:1 11730:1 11761:1 11766:1 11798:1 11820:1 11840:3 11854:1 11860:4 11863:2 11864:1 11866:1 11879:1 11883:1 11886:3 11887:1 11888:1 11893:1 11896:1 11929:1 11943:1 12001:1 12025:1 12026:1 12042:4 12048:1 12071:1 12072:1 12088:1 12094:1 12097:1 12098:1 12123:1 12145:1 12167:1 12213:1 12214:2 12220:2 12225:1 12228:1 12258:1 12260:1 12266:1 12319:1 12327:1 12373:1 12399:1 12420:1 12425:1 12427:1 12463:1 12475:1 12476:1 12489:1 12536:1 12551:2 12564:1 12574:1 12583:1 12595:2 12630:1 12646:2 12648:1 12653:1 12659:1 12665:2 12677:6 12680:2 12686:3 12704:1 12706:6 12716:2 12730:1 12735:1 12739:3 12745:1 12774:1 12778:1 12810:3 12838:1 12884:1 12890:1 12983:1 13027:1 13034:1 13053:1 13055:2 13062:1 13081:3 13086:1 13091:1 13098:1 13105:2 13142:1 13166:1 13188:1 13191:1 13209:2 13226:2 13230:1 13232:2 13270:1 13276:1 13319:1 13329:1 13337:1 13351:6 13363:1 13369:1 13387:2 13392:2 13405:1 13416:1 13457:1 13506:1 13537:1 13544:1 13545:2 13550:1 13616:1 13637:1 13674:2 13698:1 13703:1 13736:6 13754:1 13762:10 13794:1 13797:1 13825:1 13834:1 13845:1 13855:1 13858:1 13936:2 13940:1 13987:1 13989:1 13990:1 13993:1 14001:7 14052:1 14061:5 14082:1 14103:1 14204:1 14236:1 14250:2 14255:1 14257:1 14274:2 14295:1 14301:4 14311:1 14313:1 14314:1 14326:1 14328:2 14330:1 14355:1 14393:1 14395:1 14404:1 14417:1 14426:2 14450:2 14467:2 14474:1 14482:2 14483:1 14493:1 14514:1 14523:1 14524:1 14526:1 14544:1 14545:1 14549:1 14552:1 14557:2 14563:1 14582:1 14638:1 14661:1 14662:3 14670:1 14677:4 14713:1 14717:1 14727:1 14736:1 14744:4 14749:1 14752:2 14757:1 14760:1 14804:3 14828:1 14837:1 14847:2 14859:1 14883:1 14890:1 14914:1 14915:4 14936:2 14965:1 14972:1 14975:2 14987:1 14990:1 15026:1 15035:1 15059:1 15072:1 15078:1 15114:3 15154:2 15195:1 15210:1 15213:2 15219:1 15233:1 15252:1 15256:1 15338:1 15344:1 15375:1 15400:1 15433:1 15438:6 15455:1 15503:1 15510:1 15512:1 15528:1 15530:3 15535:1 15541:1 15551:2 15553:1 15558:1 15585:1 15604:19 15606:2 15608:1 15659:1 15660:1 15663:1 15710:5 15715:1 15744:1 15763:1 15764:1 15822:1 15828:1 15843:1 15852:1 15871:1 15925:1 15934:1 15951:1 15992:1 15994:1 15997:1 15999:1 16004:1 16006:3 16019:2 16046:1 16100:1 16121:1 16130:1 16132:1 16153:1 16158:2 16165:1 16169:1 16175:1 16195:1 16196:2 16201:2 16224:1 16227:1 16236:1 16255:1 16256:6 16259:2 16288:1 16318:1 16330:1 16332:1 16335:1 16351:1 16375:10 16460:1 16461:1 16469:1 16481:1 16491:1 16506:1 16524:1 16539:4 16594:2 16612:1 16639:1 16642:1 16645:1 16699:2 16709:5 16712:1 16722:2 16732:1 16763:1 16780:1 16804:10 16806:1 16817:1 16825:1 16838:1 16869:1 16890:1 16913:3 16919:1 16952:1 16963:2 16972:1 16982:1 16995:1 17038:1 17058:2 17098:2 17107:1 17127:1 17145:1 17161:1 17163:2 17164:4 17196:1 17200:2 17202:1 17204:2 17223:1 17236:1 17248:1 17267:2 17290:1 17291:1 17295:1 17302:2 17345:2 17361:2 17373:1 17413:1 17461:5 17482:1 17488:1 17490:1 17509:1 17514:2 17521:3 17522:1 17559:1 17561:1 17564:1 17572:1 17584:1 17588:1 17590:1 17599:1 17604:2 17610:2 17615:1 17658:1 17671:1 17678:1 17700:1 17717:1 17718:1 17792:1 17802:1 17828:1 17834:1 17835:2 17836:1 17848:2 17867:1 17882:1 17944:1 17958:1 17991:2 18028:1 18045:1 18068:1 18076:1 18108:1 18110:2 18114:1 18120:4 18167:1 18174:5 18218:1 18247:1 18286:1 18296:1 18334:1 18344:1 18366:1 18369:1 18373:1 18414:1 18421:1 18425:1 18427:2 18435:10 18438:3 18452:2 18457:2 18472:2 18479:4 18488:2 18515:1 18615:1 18616:1 18632:1 18635:1 18639:2 18643:1 18648:2 18651:1 18661:1 18713:1 18728:2 18743:1 18746:1 18752:2 18759:1 18783:2 18789:1 18793:1 18797:1 18823:1 18833:1 18879:1 18885:1 18910:1 18911:1 18918:1 18928:1 18934:2 18951:2 18964:2 18974:1 18984:2 18988:3 19004:1 19008:1 19013:1 19019:1 19021:3 19035:1 19036:1 19054:3 19057:3 19065:1 19066:1 19072:2 19077:2 19113:2 19118:4 19124:1 19132:1 19138:1 19155:1 19176:1 19182:1 19217:1 19226:1 19234:1 19266:2 19284:3 19287:1 19288:1 19291:1 19297:2 19372:1 19387:1 19390:1 19399:1 19401:2 19414:1 19418:1 19428:1 19443:1 19446:4 19450:1 19460:1 19472:2 19504:4 19511:5 19516:4 19521:1 19522:1 19557:1 19558:3 19571:3 19589:1 19636:1 19648:1 19664:1 19670:1 19671:2 19676:1 19757:1 19783:1 19802:6 19812:1 19847:1 19875:1 19879:1 19883:1 19906:1 19908:4 19925:1 19959:2 19980:19 20029:1 20034:2 20070:2 20083:2 20110:1 20129:3 20131:1 20174:2 20179:1 20268:19 20271:1 20293:2 20304:1 20326:1 20328:2248 20365:1 20372:1 20378:2 20407:1 20434:1 20439:1 20468:1 20471:1 20497:3 20521:1 20529:1 20530:1 20531:1 20551:1 20557:1 20565:5 20576:1 20578:5 20582:1 20584:1 20585:1 20596:1 20603:2 20662:1 20665:1 20669:1 20741:1 20743:1 20781:1 20796:1 20820:1 20825:1 20828:1 20915:1 20977:4 21007:1 21021:7 21023:3 21027:1 21044:1 21049:1 21072:1 21079:2 21092:1 21095:1 21097:1 21101:1 21117:1 21132:1 21140:1 21145:1 21146:2 21147:1 21156:1 21160:7 21192:2 21226:1 21237:4 21262:6 21276:1 21291:1 21298:10 21299:2 21308:1 21309:1 21326:2 21350:1 21359:1 21378:15 21391:1 21398:1 21399:1 21417:1 21425:3 21436:2 21442:1 21446:1 21464:1 21476:1 21511:1 21523:1 21524:2 21551:3 21580:1 21590:2 21597:1 21598:2 21603:1 21635:2 21652:1 21666:1 21667:1 21676:1 21747:1 21753:1 21755:4 21761:1 21777:1 21798:2 21832:1 21862:1 21863:1 21868:1 21875:3 21879:1 21888:1 21894:1 21905:1 21926:1 21936:1 21971:2 21972:1 21978:1 22010:1 22036:1 22045:5 22062:1 22066:2 22068:1 22084:7 22116:1 22117:1 22149:1 22159:1 22235:2 22240:1 22272:2 22287:1 22288:2 22307:1 22316:1 22325:4 22337:1 22339:2 22345:4 22367:1 22381:2 22387:1 22411:1 22446:1 22450:4 22456:2 22462:1 22476:1 22482:4 22507:1 22512:1 22513:1 22533:1 22538:1 22577:1 22585:1 22589:1 22604:1 22617:1 22622:1 22630:1 22635:2 22643:1 22655:7 22657:1 22674:7 22703:1 22704:1 22716:1 22724:1 22736:1 22747:1 22784:1 22786:1 22810:1 22812:1 22815:4 22819:1 22827:1 22838:1 22854:1 22870:1 22876:2 22902:1 22904:2 22939:1 22957:1 22987:1 22988:2 22992:1 23010:1 23019:1 23026:1 23034:2 23078:1 23084:4 23116:1 23129:1 23147:1 23168:2 23169:1 23178:1 23233:1 23242:1 23248:1 23257:1 23261:2 23276:2 23280:1 23303:1 23307:1 23322:1 23325:1 23331:1 23346:2 23349:1 23363:1 23380:1 23382:1 23392:1 23399:1 23422:1 23458:2 23462:3 23476:2 23496:1 23511:2 23519:3 23535:2 23543:1 23571:1 23572:1 23573:2 23583:1 23590:4 23615:1 23616:1 23657:1 23662:1 23723:2 23737:1 23744:1 23763:1 23803:1 23826:2 23836:1 23863:4 23870:1 23871:1 23878:1 23880:1 23893:1 23899:1 23921:6 23954:1 23958:1 23965:1 23973:1 23981:1 24008:1 24009:2 24023:1 24026:2 24038:1 24055:1 24057:1 24078:1 24101:1 24115:1 24119:1 24148:1 24153:1 24159:1 24163:1 24164:1 24174:1 24181:1 24183:2 24225:1 24232:1 24233:2 24236:1 24254:1 24263:2 24272:1 24273:2 24275:1 24276:3 24283:1 24285:1 24301:1 24307:1 24311:1 24319:1 24327:1 24358:1 24360:1 24372:1 24382:1 24383:2 24386:3 24402:1 24407:2 24436:1 24438:1 24450:2 24455:2 24475:1 24486:1 24487:1 24494:1 24495:3 24518:1 24534:1 24554:1 24568:1 24572:1 24583:1 24586:4 24590:2 24603:1 24613:2 24618:1 24620:2 24627:1 24633:1 24635:1 24651:1 24657:1 24663:1 24669:1 24676:1 24701:5 24716:1 24727:2 24735:1 24737:1 24772:1 24773:1 24777:1 24782:1 24786:3 24787:1 24795:2 24839:1 24862:2 24863:1 24935:1 24945:1 24976:1 24981:1 25019:2 25032:1 25033:1 25044:1 25056:8 25091:5 25097:1 25105:1 25115:4 25148:3 25174:1 25191:1 25192:1 25193:1 25200:1 25202:1 25214:1 25215:1 25253:1 25266:1 25271:1 25272:1 25280:2 25301:1 25302:1 25323:2 25330:1 25332:5 25340:1 25352:1 25353:1 25361:1 25364:1 25376:1 25391:1 25392:1 25398:2 25410:1 25413:1 25421:4 25442:1 25450:1 25470:1 25472:2 25476:1 25490:1 25525:2 25545:1 25556:1 25572:1 25577:1 25593:1 25619:1 25630:2 25655:1 25674:2 25689:1 25694:1 25704:1 25709:3 25736:1 25749:1 25766:2 25772:1 25781:1 25788:1 25798:4 25802:1 25835:1 25844:2 25907:1 25919:2 25927:1 25928:1 25961:1 25995:1 26000:1 26011:1 26012:1 26014:1 26058:1 26065:1 26089:1 26092:1 26103:1 26107:1 26123:1 26125:3 26128:1 26133:1 26135:2 26136:1 26139:1 26143:1 26147:2 26154:1 26158:1 26164:1 26169:1 26213:1 26225:1 26235:2 26248:3 26263:1 26268:1 26280:1 26281:1 26288:2 26293:1 26305:5 26339:3 26389:3 26438:1 26444:1 26447:1 26466:1 26491:1 26552:1 26560:1 26563:2 26589:1 26592:1 26594:1 26595:1 26604:1 26607:1 26608:1 26611:2 26618:1 26630:1 26631:1 26632:1 26642:1 26653:4 26660:1 26690:1 26692:1 26716:1 26727:1 26746:1 26749:1 26755:1 26769:1 26781:5 26809:3 26821:2 26863:1 26894:1 26901:2 26904:1 26915:1 26929:1 26931:1 26943:1 27033:1 27034:1 27037:2 27039:1 27052:1 27075:1 27088:3 27095:1 27097:1 27104:2 27113:1 27125:1 27138:1 27145:1 27163:1 27164:1 27177:1 27209:4 27216:1 27230:2 27232:1 27247:1 27253:1 27264:1 27273:1 27297:3 27302:2 27315:1 27326:1 27338:1 27352:2 27375:1 27390:1 27416:1 27422:1 27426:10 27427:1 27466:1 27472:2 27488:1 27515:2 27559:1 27575:1 27582:2 27583:1 27588:2 27604:3 27605:1 27606:2 27620:2 27662:5 27667:2 27685:2 27690:2 27718:2 27737:4 27768:1 27785:1 27788:1 27799:1 27817:5 27822:1 27839:1 27851:7 27892:1 27906:1 27945:3 27950:1 27995:1 28000:1 28005:1 28025:1 28040:1 28046:1 28056:1 28072:1 28074:1 28084:2 28122:2 28128:1 28139:1 28149:1 28159:1 28160:1 28189:1 28193:1 28197:1 28207:1 28217:2 28256:1 28262:2 28275:1 28307:1 28400:1 28419:1 28428:3 28459:1 28474:1 28488:1 28502:1 28527:1 28540:6 28555:1 28561:2 28575:1 28630:1 28658:2 28715:1 28728:1 28744:1 28754:2 28755:6 28764:1 28765:1 28778:6 28783:2 28792:1 28809:1 28823:1 28843:2 28856:1 28858:6 28877:2 28883:1 28900:1 28911:1 28916:1 28929:1 28933:19 28947:1 28960:1 28961:1 28977:1 28984:2 29024:1 29034:2 29039:1 29052:2 29063:1 29078:1 29090:1 29091:1 29126:1 29146:1 29154:1 29161:1 29182:1 29193:1 29221:1 29231:1 29239:4 29240:1 29268:1 29272:2 29292:1 29314:1 29339:2 29349:2 29357:1 29387:2 29396:2 29404:1 29413:1 29422:1 29429:1 29431:3 29444:1 29457:4 29465:1 29471:2 29490:1 29495:2 29519:1 29535:1 29543:1 29546:1 29551:1 29557:3 29560:1 29602:1 29650:1 29652:2 29664:1 29675:1 29684:1 29708:1 29730:1 29742:1 29748:1 29759:1 29762:1 29763:1 29775:1 29795:2 29798:1 29816:6 29855:1 29865:1 29866:1 29890:1 29901:1 29902:1 29930:1 29931:1 29935:1 29988:1 29990:1 29998:1 30003:1 30036:1 30056:2 30084:2 30113:3 30123:1 30137:11 30138:1 30145:1 30157:1 30162:3 30173:2 30180:2 30183:1 30184:2 30225:2 30226:1 30239:2 30241:8 30253:1 30263:1 30264:1 30277:2 30279:1 30280:1 30284:1 30312:1 30330:3 30334:1 30335:2 30339:2 30362:1 30385:1 30394:1 30396:4 30438:1 30447:1 30449:2 30459:1 30462:4 30466:1 30468:1 30508:1 30538:1 30541:1 30551:1 30561:2 30573:1 30580:1 30586:1 30592:1 30607:1 30646:1 30654:1 30678:1 30679:1 30680:1 30682:2 30686:2 30716:2 30725:2 30760:2 30787:1 30795:2 30815:2 30823:1 30854:3 30868:1 30871:1 30872:1 30897:2 30898:1 30901:1 30902:1 30903:1 30927:1 30950:1 30952:1 30962:1 30998:1 31028:1 31032:1 31034:1 31037:2 31060:1 31076:1 31089:4 31095:1 31098:3 31115:1 31168:1 31184:2 31210:1 31215:1 31233:4 31258:1 31316:1 31331:1 31341:1 31353:1 31355:3 31359:1 31377:1 31378:1 31383:1 31407:2 31427:2 31432:1 31446:1 31447:1 31462:1 31478:2 31481:1 31489:4 31497:1 31505:3 31507:1 31510:1 31548:1 31550:1 31559:1 31567:1 31615:2 18 6:1 14:1 18:1 34:1 55:1 69:1 75:1 123:1 188:4 210:2 214:1 216:2 219:1 237:2 269:2 273:2 283:2 302:1 323:2 339:4 352:1 358:1 359:1 372:6 383:1 389:1 395:1 448:1 449:3 454:1 466:1 469:1 490:1 538:1 548:1 552:1 570:1 572:1 599:1 600:3 603:1 618:1 628:2 632:1 646:1 656:2 683:1 694:2 704:5 715:1 716:1 735:1 748:3 756:1 767:2 768:1 781:1 782:1 790:1 795:1 802:1 866:1 881:1 888:4 890:3 898:1 909:1 923:1 924:3 926:1 937:2 949:1 950:2 960:2 964:1 970:1 973:1 1011:1 1014:2 1130:1 1132:3 1148:1 1167:1 1181:1 1202:1 1248:4 1272:1 1279:2 1280:2 1281:1 1283:2 1295:1 1316:2 1342:1 1343:1 1351:2 1353:1 1434:1 1437:1 1447:1 1453:1 1454:2 1461:1 1465:1 1487:1 1500:3 1501:1 1506:1 1520:1 1522:1 1554:1 1556:2 1558:1 1562:1 1595:1 1604:1 1615:2 1619:1 1633:4 1636:1 1637:1 1647:2 1662:1 1664:1 1689:1 1706:1 1708:1 1720:2 1723:1 1752:1 1785:1 1789:3 1824:1 1842:4 1885:1 1960:1 1966:1 1979:2 1981:1 1985:1 1991:1 1993:3 2014:1 2043:2 2047:1 2073:1 2079:1 2091:1 2093:1 2117:1 2131:1 2133:3 2137:1 2140:14 2143:1 2147:1 2169:1 2183:1 2192:1 2212:1 2242:2 2253:2 2263:1 2273:1 2290:1 2300:3 2303:1 2310:1 2312:4 2314:1 2315:1 2319:4 2322:1 2326:1 2328:1 2329:4 2336:2 2342:1 2344:2 2361:2 2362:1 2363:1 2365:1 2369:1 2371:1 2374:1 2375:3 2377:2 2381:1 2382:1 2388:1 2393:2 2396:2 2397:4 2403:2 2412:1 2414:3 2416:1 2432:20 2442:1 2450:3 2456:1 2506:4 2517:1 2541:1 2543:1 2545:1 2547:1 2557:4 2580:1 2608:1 2621:2 2649:1 2653:1 2662:1 2687:2 2699:3 2701:1 2717:1 2718:1 2720:2 2728:2 2737:1 2754:2 2793:1 2820:2 2827:2 2828:1 2847:1 2880:1 2889:1 2895:1 2896:1 2925:1 2931:1 2949:1 2952:6 2964:2 2974:1 2975:1 3050:2 3063:10 3066:3 3068:1 3088:1 3107:1 3116:1 3119:12 3126:1 3127:2 3143:2 3156:1 3164:2 3182:1 3184:1 3218:1 3221:1 3226:1 3230:1 3317:2 3330:6 3388:4 3401:1 3439:1 3442:1 3447:1 3448:3 3467:1 3479:1 3490:1 3494:3 3495:1 3500:1 3528:2 3537:2 3545:1 3563:1 3573:1 3581:1 3600:1 3619:1 3719:1 3728:1 3736:3 3798:1 3808:1 3828:1 3838:1 3860:1 3861:1 3872:1 3928:2 3949:2 3952:2 3973:2 3982:1 4010:1 4019:1 4020:2 4025:2 4056:1 4058:1 4064:2 4065:4 4066:1 4077:1 4078:1 4086:2 4089:2 4115:3 4128:1 4129:2 4133:3 4173:1 4176:1 4185:2 4186:1 4197:1 4202:1 4232:1 4248:1 4255:1 4260:1 4281:1 4289:1 4301:1 4307:2 4313:2 4328:1 4348:1 4354:2 4376:1 4390:1 4410:1 4419:2 4422:3 4431:3 4437:1 4456:1 4467:2 4492:1 4496:1 4505:1 4526:1 4531:1 4549:1 4560:1 4631:2 4634:1 4661:1 4668:1 4677:1 4717:2 4754:2 4757:1 4779:1 4789:4 4803:1 4848:1 4851:2 4890:1 4917:1 4920:1 4921:1 4922:2 4933:1 4946:2 4968:1 4969:3 4992:1 5002:1 5009:1 5012:5 5024:2 5046:1 5080:1 5098:2 5104:1 5108:1 5116:2 5119:1 5121:1 5136:1 5154:1 5204:1 5212:2 5245:1 5268:3 5272:1 5282:1 5300:1 5310:14 5314:1 5315:1 5325:1 5335:1 5365:1 5370:1 5380:1 5423:1 5440:1 5455:1 5474:1 5481:1 5526:2 5545:1 5567:1 5571:1 5575:1 5581:2 5582:1 5622:1 5648:2 5651:2 5683:1 5719:3 5746:2 5779:1 5783:1 5785:1 5790:2 5799:1 5800:1 5811:1 5817:1 5831:1 5859:6 5882:1 5887:1 5894:1 5900:1 5912:1 5919:1 5925:5 5942:2 5975:1 5992:1 6000:1 6006:1 6008:1 6014:1 6020:2 6049:1 6053:2 6057:1 6110:2 6127:1 6195:1 6227:2 6242:1 6294:1 6297:1 6341:4 6363:2 6378:2 6397:1 6442:2 6444:1 6445:1 6471:1 6480:1 6497:1 6555:1 6557:1 6571:1 6575:1 6590:2 6603:2 6612:1 6613:5 6630:2 6645:1 6654:1 6672:2 6698:3 6721:1 6763:4 6815:4 6826:2 6827:1 6828:1 6829:1 6832:4 6851:1 6875:1 6883:1 6894:3 6916:3 6917:1 6923:1 6931:1 6932:2 6935:1 6938:1 6939:1 6942:2 7005:1 7071:1 7081:1 7084:2 7093:3 7113:6 7169:1 7180:1 7197:2 7210:1 7230:1 7234:1 7239:6 7240:1 7268:1 7280:1 7302:8 7319:2 7333:1 7345:1 7369:1 7380:1 7388:1 7401:1 7419:1 7421:2 7428:2 7429:1 7434:1 7460:1 7463:1 7468:1 7532:1 7550:1 7560:2 7561:1 7575:1 7584:1 7651:1 7658:1 7694:1 7706:1 7750:5 7762:1 7764:1 7779:1 7814:2 7818:1 7823:1 7870:2 7901:1 7906:3 7944:1 7945:4 7969:1 7971:1 7978:2 7979:1 7996:1 8006:1 8030:2 8033:2 8055:1 8058:14 8068:2 8088:1 8104:1 8105:1 8126:1 8175:1 8179:1 8185:1 8241:2 8258:2 8289:2 8307:3 8327:1 8328:1 8329:2 8332:2 8333:5 8341:1 8351:3 8352:2 8359:6 8360:2 8364:1 8372:1 8377:1 8378:1 8386:19 8410:12 8413:1 8441:1 8452:1 8483:1 8513:1 8546:1 8560:1 8569:1 8592:3 8595:3 8624:1 8648:1 8682:1 8705:1 8710:3 8761:1 8766:2 8781:1 8819:2 8829:1 8841:1 8879:1 8883:1 8889:2 8921:10 8950:2 8976:13 8982:5 8984:2 8985:1 8986:1 9007:1 9020:1 9021:1 9073:1 9100:1 9117:1 9134:1 9138:4 9183:14 9208:1 9220:6 9235:1 9250:1 9283:1 9285:1 9286:1 9290:2 9296:1 9299:1 9300:1 9301:1 9304:1 9312:1 9317:2 9355:1 9380:2 9381:4 9390:1 9395:1 9406:1 9417:1 9490:1 9491:2 9508:1 9514:2 9520:1 9561:1 9571:1 9597:2 9648:1 9652:2 9658:2 9675:1 9685:2 9701:1 9713:2 9715:1 9724:1 9725:2 9734:2 9743:2 9785:1 9799:1 9801:1 9815:2 9850:1 9856:1 9859:1 9910:2 9920:1 9932:1 9934:1 9957:2 9979:1 9985:1 10048:1 10062:1 10095:1 10116:3 10135:1 10178:1 10185:1 10206:1 10211:1 10214:1 10251:3 10255:1 10257:1 10273:1 10351:1 10372:3 10374:1 10377:6 10381:32 10383:1 10385:2 10387:1 10392:2 10399:1 10406:1 10416:2 10430:1 10434:2 10450:4 10492:2 10503:1 10510:2 10516:2 10545:1 10552:1 10569:1 10608:1 10621:2 10649:1 10654:1 10655:1 10659:2 10678:4 10705:1 10716:1 10751:1 10757:2 10773:1 10777:2 10784:1 10793:3 10800:3 10808:1 10822:1 10828:3 10830:1 10857:2 10860:20 10886:1 10922:1 10951:4 10971:1 10989:1 11034:1 11094:1 11113:1 11114:2 11126:1 11130:1 11178:1 11185:1 11189:1 11203:1 11209:1 11221:1 11257:1 11274:1 11289:1 11295:2 11304:2 11306:1 11313:2 11362:2 11383:1 11388:1 11404:3 11453:2 11467:14 11473:1 11484:1 11486:1 11489:1 11503:1 11514:1 11515:3 11520:1 11530:1 11553:1 11557:2 11574:3 11591:2 11608:1 11654:1 11655:1 11661:2 11663:1 11693:1 11703:1 11710:6 11714:1 11730:1 11761:1 11766:1 11798:1 11820:1 11840:3 11854:1 11860:4 11863:2 11864:1 11866:1 11879:1 11883:1 11886:3 11887:1 11888:1 11893:1 11896:1 11929:1 11943:1 12001:1 12025:1 12026:1 12042:4 12048:1 12071:1 12072:1 12088:1 12094:1 12097:1 12098:1 12123:1 12145:1 12167:1 12186:1 12191:1 12213:1 12214:2 12220:2 12225:1 12228:1 12258:1 12260:1 12266:1 12319:1 12327:1 12373:1 12399:1 12420:1 12425:1 12427:1 12463:1 12475:1 12476:1 12489:1 12536:2 12551:2 12564:1 12574:1 12583:1 12595:2 12630:1 12646:2 12648:1 12653:1 12659:1 12665:2 12677:6 12680:2 12686:3 12704:1 12706:6 12716:2 12730:1 12735:1 12739:3 12745:1 12774:1 12778:1 12810:3 12838:1 12884:1 12890:1 12983:1 13027:1 13034:1 13053:1 13055:2 13062:1 13081:3 13086:1 13091:1 13098:1 13105:2 13142:1 13166:1 13188:1 13191:1 13209:2 13226:2 13230:1 13232:2 13270:1 13276:1 13319:1 13329:1 13337:1 13351:6 13363:1 13364:1 13369:1 13387:2 13392:2 13405:1 13416:1 13457:1 13478:1 13506:1 13537:1 13544:1 13545:2 13550:1 13616:1 13637:1 13644:1 13674:2 13698:1 13703:1 13736:6 13754:1 13762:10 13794:1 13797:1 13825:1 13834:1 13845:1 13855:1 13858:1 13936:2 13940:1 13987:1 13989:1 13990:1 13993:1 14001:8 14052:1 14061:5 14082:1 14103:1 14204:1 14236:1 14250:2 14255:1 14257:1 14274:2 14295:1 14301:4 14311:1 14313:1 14314:1 14326:1 14328:2 14330:1 14355:1 14393:1 14395:1 14404:1 14417:1 14426:2 14450:2 14467:2 14474:1 14482:2 14483:1 14493:1 14514:1 14523:1 14524:1 14526:1 14544:1 14545:1 14549:1 14552:1 14557:2 14563:1 14582:1 14584:1 14638:1 14661:1 14662:3 14670:1 14677:4 14713:1 14717:2 14727:1 14736:1 14744:4 14749:1 14752:2 14757:1 14760:1 14804:3 14828:1 14837:1 14847:2 14859:1 14883:1 14890:1 14914:1 14915:4 14936:2 14965:1 14972:1 14975:2 14987:1 14990:1 15026:1 15035:1 15059:1 15072:1 15078:1 15114:3 15154:2 15195:1 15210:3 15213:2 15219:1 15233:2 15252:1 15256:1 15338:1 15344:1 15375:1 15400:1 15433:1 15438:6 15455:1 15503:1 15510:1 15512:1 15528:1 15530:3 15535:1 15541:1 15551:2 15553:1 15558:1 15585:1 15604:20 15606:2 15608:1 15659:2 15660:1 15663:1 15710:5 15715:1 15744:1 15763:1 15764:1 15822:1 15828:1 15843:1 15852:1 15871:1 15925:1 15934:1 15951:1 15992:1 15994:1 15997:1 15999:1 16004:1 16006:3 16019:2 16046:1 16100:1 16121:1 16130:1 16132:1 16153:1 16158:2 16165:1 16169:1 16175:1 16195:1 16196:2 16201:3 16224:1 16227:1 16236:1 16255:1 16256:6 16259:2 16288:1 16318:1 16330:1 16332:1 16335:1 16351:1 16375:10 16460:1 16461:1 16469:1 16481:1 16491:1 16506:1 16524:1 16539:4 16594:2 16612:1 16639:1 16642:1 16645:1 16699:2 16709:5 16712:1 16722:2 16732:1 16763:1 16780:1 16804:10 16806:1 16817:1 16825:1 16838:1 16869:1 16890:1 16913:3 16919:1 16952:1 16963:2 16972:1 16982:1 16995:1 17038:1 17058:2 17098:2 17107:1 17127:1 17145:1 17161:1 17163:2 17164:4 17196:1 17200:2 17202:1 17204:2 17223:1 17236:1 17248:1 17256:1 17267:2 17290:1 17291:1 17295:1 17302:2 17345:2 17361:2 17373:1 17413:1 17461:5 17482:1 17488:1 17490:1 17495:1 17509:1 17514:2 17521:3 17522:1 17559:1 17561:1 17564:1 17572:1 17584:1 17588:1 17590:1 17599:1 17604:2 17610:2 17615:1 17658:1 17671:1 17678:1 17700:1 17717:1 17718:1 17792:1 17802:1 17828:1 17834:1 17835:2 17836:1 17848:2 17867:1 17882:1 17932:1 17944:1 17958:1 17991:2 18028:1 18045:1 18068:1 18076:1 18108:1 18110:2 18114:1 18120:4 18167:1 18174:5 18218:1 18223:1 18247:1 18286:1 18296:1 18334:1 18344:1 18366:1 18369:1 18373:1 18414:1 18421:1 18425:1 18427:2 18435:10 18438:3 18452:3 18457:2 18472:2 18479:4 18488:2 18515:1 18615:1 18616:1 18632:1 18635:1 18639:2 18643:1 18648:2 18651:1 18661:1 18713:1 18728:2 18743:1 18746:1 18752:2 18759:1 18783:2 18789:2 18793:1 18797:1 18823:1 18833:1 18879:1 18885:1 18910:1 18911:1 18918:1 18928:1 18934:2 18951:2 18964:2 18974:2 18984:2 18988:3 19004:1 19008:1 19013:1 19019:1 19021:3 19035:1 19036:1 19054:3 19057:3 19065:1 19066:1 19072:2 19077:2 19113:2 19118:4 19124:1 19132:1 19138:1 19155:1 19176:1 19182:1 19217:1 19226:1 19234:1 19266:2 19284:3 19287:1 19288:1 19291:1 19297:2 19372:1 19387:1 19390:1 19399:1 19401:2 19414:1 19418:1 19428:1 19443:1 19446:4 19450:1 19460:1 19472:2 19504:4 19511:5 19516:4 19521:1 19522:1 19557:1 19558:3 19571:3 19589:1 19636:1 19648:1 19664:1 19670:1 19671:2 19676:1 19757:2 19783:1 19802:6 19812:1 19847:1 19875:1 19879:1 19883:1 19906:1 19908:4 19925:1 19959:2 19980:20 20029:1 20034:2 20070:2 20083:2 20110:1 20129:3 20131:1 20174:2 20179:1 20268:20 20271:1 20293:2 20304:1 20326:1 20328:2350 20365:1 20372:1 20378:2 20407:1 20434:1 20439:1 20468:1 20471:2 20497:3 20521:1 20529:1 20530:1 20531:1 20551:1 20557:1 20565:5 20576:1 20578:5 20582:1 20584:1 20585:1 20596:1 20603:2 20662:1 20665:1 20669:2 20741:1 20743:1 20781:1 20796:1 20820:1 20825:1 20828:1 20915:1 20977:4 21007:1 21021:7 21023:3 21027:1 21044:1 21049:1 21072:1 21079:2 21092:1 21095:1 21097:2 21101:1 21117:1 21132:1 21140:1 21145:1 21146:2 21147:1 21156:1 21160:7 21192:2 21226:1 21237:4 21262:6 21276:1 21291:1 21298:10 21299:2 21308:1 21309:1 21326:2 21350:1 21359:1 21378:16 21391:1 21398:1 21399:1 21417:1 21425:3 21436:2 21442:1 21446:1 21464:1 21476:1 21511:1 21523:1 21524:3 21551:3 21580:1 21590:2 21597:1 21598:2 21603:1 21635:2 21652:1 21666:1 21667:1 21676:1 21747:1 21753:1 21755:4 21761:1 21777:1 21798:2 21832:1 21862:1 21863:1 21868:1 21875:3 21879:1 21888:1 21894:1 21905:1 21926:1 21936:1 21971:2 21972:1 21978:1 22010:1 22036:1 22045:5 22062:1 22066:2 22068:1 22084:7 22116:1 22117:1 22149:1 22159:1 22235:2 22240:1 22272:2 22287:1 22288:2 22307:1 22316:1 22325:4 22337:1 22339:2 22345:4 22367:1 22381:2 22387:1 22411:1 22446:1 22450:4 22456:2 22462:1 22476:1 22482:4 22507:1 22512:1 22513:1 22533:1 22538:1 22577:1 22585:1 22589:1 22604:1 22617:1 22622:1 22630:1 22635:2 22643:1 22655:7 22657:1 22674:7 22703:1 22704:1 22716:1 22724:1 22736:1 22747:1 22784:1 22786:1 22810:1 22812:1 22815:4 22819:1 22827:1 22838:1 22854:1 22870:1 22876:2 22902:1 22904:2 22939:1 22957:1 22987:1 22988:2 22992:1 23010:1 23019:1 23026:1 23034:2 23078:1 23084:4 23116:1 23129:1 23147:1 23168:2 23169:1 23178:1 23233:1 23242:1 23248:1 23256:1 23257:1 23261:2 23276:2 23280:1 23303:1 23307:1 23322:1 23325:1 23331:1 23346:2 23349:1 23363:1 23380:1 23382:1 23392:1 23399:1 23422:1 23458:2 23462:3 23476:2 23496:1 23511:2 23519:3 23535:2 23543:1 23571:1 23572:1 23573:2 23583:1 23590:4 23615:1 23616:1 23657:1 23662:1 23723:2 23737:1 23744:1 23763:1 23803:1 23826:2 23836:1 23863:4 23870:1 23871:1 23878:1 23880:1 23893:1 23899:1 23921:6 23954:1 23958:1 23965:1 23973:1 23981:1 24008:1 24009:2 24023:1 24026:2 24038:1 24055:1 24057:1 24078:1 24101:1 24115:1 24119:1 24148:1 24153:1 24159:1 24163:1 24164:1 24172:1 24174:1 24181:1 24183:2 24225:1 24232:1 24233:2 24236:1 24254:1 24263:2 24272:1 24273:2 24275:1 24276:3 24283:1 24285:1 24301:1 24307:1 24311:1 24319:1 24327:1 24358:1 24360:1 24372:2 24382:1 24383:2 24386:3 24402:1 24407:2 24436:1 24438:1 24450:2 24455:2 24475:1 24486:1 24487:1 24494:1 24495:3 24518:1 24534:1 24554:1 24568:1 24572:1 24583:1 24586:4 24590:2 24603:1 24613:2 24618:1 24620:2 24627:1 24633:1 24635:1 24651:1 24657:1 24663:1 24669:1 24676:2 24701:5 24716:1 24727:2 24735:1 24737:1 24772:1 24773:1 24777:1 24782:1 24786:3 24787:1 24795:2 24839:1 24862:2 24863:1 24935:1 24945:1 24976:1 24981:1 25019:2 25032:1 25033:1 25044:1 25056:8 25071:1 25091:5 25097:1 25105:1 25115:4 25148:3 25174:1 25191:1 25192:1 25193:1 25200:1 25202:1 25214:1 25215:1 25253:1 25266:1 25271:1 25272:1 25280:2 25301:1 25302:1 25323:2 25330:1 25332:5 25340:1 25352:1 25353:1 25361:1 25364:1 25376:1 25391:1 25392:1 25398:2 25410:1 25413:1 25421:4 25442:1 25450:1 25470:1 25472:2 25476:1 25490:1 25525:2 25545:1 25556:1 25572:1 25577:1 25593:1 25619:1 25630:2 25655:1 25674:2 25689:1 25694:1 25704:1 25709:3 25736:1 25749:1 25766:2 25772:1 25781:1 25788:1 25798:4 25802:1 25835:1 25844:2 25907:1 25919:2 25927:1 25928:1 25961:1 25995:1 26000:1 26011:1 26012:1 26014:1 26058:1 26065:1 26089:1 26092:1 26103:1 26107:1 26123:1 26125:3 26128:1 26133:1 26135:2 26136:1 26139:1 26143:1 26147:2 26154:1 26158:1 26164:1 26169:1 26208:1 26213:1 26225:1 26235:2 26248:3 26263:1 26268:1 26280:1 26281:1 26288:2 26293:1 26305:5 26339:3 26389:3 26438:1 26444:1 26447:1 26466:1 26491:2 26552:1 26560:1 26563:2 26589:1 26592:1 26594:1 26595:1 26604:1 26607:1 26608:1 26611:2 26618:1 26630:1 26631:1 26632:1 26642:1 26653:4 26660:1 26690:1 26692:1 26716:1 26727:1 26746:1 26749:1 26755:1 26769:1 26781:5 26809:3 26821:2 26863:1 26894:1 26901:2 26904:1 26915:1 26929:1 26931:1 26943:1 27033:1 27034:1 27037:2 27039:1 27052:1 27075:1 27088:3 27095:1 27097:1 27104:2 27113:1 27125:1 27138:1 27145:1 27163:1 27164:1 27177:1 27209:4 27216:1 27230:2 27232:1 27247:1 27253:1 27264:1 27273:1 27297:3 27302:2 27315:1 27326:1 27338:1 27352:2 27375:1 27390:1 27416:1 27422:1 27426:10 27427:1 27466:1 27472:2 27488:1 27515:2 27559:1 27575:1 27582:2 27583:1 27588:2 27604:3 27605:1 27606:2 27620:2 27662:5 27667:2 27685:2 27690:2 27718:2 27737:4 27768:1 27785:1 27788:1 27799:1 27817:5 27822:1 27839:1 27851:7 27892:1 27906:1 27945:3 27950:1 27969:1 27995:1 28000:1 28005:1 28025:1 28040:1 28046:1 28056:1 28072:1 28074:1 28084:2 28122:2 28128:1 28139:1 28149:1 28159:1 28160:1 28189:1 28193:1 28197:1 28207:1 28217:2 28256:1 28262:2 28275:1 28307:1 28400:1 28419:1 28428:3 28459:1 28474:1 28488:1 28499:1 28502:1 28527:2 28540:6 28555:1 28561:2 28575:1 28630:1 28658:2 28715:1 28728:1 28744:1 28754:2 28755:6 28764:1 28765:1 28778:6 28783:2 28792:1 28809:1 28823:1 28843:2 28856:1 28858:6 28877:2 28883:1 28900:1 28911:1 28916:1 28929:1 28933:20 28947:1 28960:1 28961:1 28977:1 28984:2 29024:1 29034:2 29039:1 29052:2 29063:1 29078:1 29090:1 29091:1 29126:1 29146:1 29154:1 29161:1 29182:1 29193:1 29221:1 29231:1 29239:4 29240:1 29268:1 29272:2 29292:1 29314:1 29339:2 29349:2 29357:1 29387:2 29396:2 29404:1 29413:1 29422:1 29429:1 29431:3 29444:1 29457:4 29465:1 29471:2 29490:1 29495:2 29519:1 29535:1 29543:2 29546:1 29551:1 29557:3 29560:1 29602:1 29650:1 29652:2 29664:1 29675:1 29684:1 29708:1 29730:1 29742:1 29748:1 29759:1 29762:1 29763:1 29764:1 29775:1 29795:2 29798:1 29816:6 29855:1 29865:1 29866:1 29890:1 29901:1 29902:1 29930:1 29931:1 29935:1 29988:1 29990:1 29998:1 30003:1 30036:1 30056:2 30084:3 30113:3 30123:1 30137:11 30138:1 30145:1 30157:1 30162:3 30173:2 30180:2 30183:1 30184:2 30225:2 30226:1 30239:2 30241:8 30253:1 30263:1 30264:1 30277:2 30279:1 30280:1 30284:1 30312:1 30330:3 30334:1 30335:2 30339:2 30362:1 30385:1 30394:1 30396:4 30438:1 30447:1 30449:2 30459:1 30462:4 30466:1 30468:1 30508:1 30538:1 30541:1 30551:1 30561:2 30573:1 30580:1 30586:1 30592:1 30607:1 30646:1 30653:1 30654:1 30678:1 30679:1 30680:1 30682:2 30686:2 30716:2 30725:2 30760:2 30787:1 30795:2 30815:4 30823:1 30854:3 30868:1 30871:1 30872:1 30897:2 30898:1 30901:1 30902:1 30903:1 30927:1 30950:1 30952:1 30962:1 30998:1 31028:1 31032:1 31034:1 31037:2 31060:1 31076:1 31089:4 31095:1 31098:3 31115:1 31168:1 31184:2 31210:1 31215:1 31233:4 31258:1 31316:1 31331:1 31341:1 31353:1 31355:3 31359:1 31377:1 31378:1 31383:1 31407:2 31427:2 31432:1 31446:1 31447:2 31462:1 31478:2 31481:1 31489:4 31497:1 31505:3 31507:1 31510:1 31548:1 31550:1 31559:1 31567:1 31615:2 18 6:1 14:1 18:1 34:1 55:1 69:1 75:1 80:1 123:1 188:4 210:2 214:1 216:2 219:1 237:2 269:2 273:2 283:2 302:1 323:2 339:4 352:1 358:1 359:1 372:7 383:1 384:1 389:1 394:1 395:1 448:1 449:3 454:1 466:1 469:1 490:1 538:1 548:2 552:1 570:1 572:1 595:1 599:1 600:3 603:1 618:1 628:2 632:1 646:1 656:2 683:1 694:2 704:5 715:1 716:1 735:1 748:3 756:1 767:2 768:1 781:1 782:1 790:1 795:1 802:1 866:1 881:1 888:4 890:3 898:1 909:1 923:1 924:3 926:1 937:2 949:1 950:2 960:2 964:1 970:1 973:1 1011:1 1014:2 1130:1 1132:3 1148:1 1167:1 1181:1 1202:1 1248:4 1272:1 1279:2 1280:2 1281:1 1283:2 1295:1 1316:2 1332:1 1342:1 1343:1 1351:2 1353:1 1371:1 1434:1 1437:1 1447:1 1453:2 1454:2 1461:1 1465:1 1487:1 1500:3 1501:1 1506:1 1520:1 1522:1 1554:1 1556:2 1558:1 1562:1 1595:1 1604:1 1615:2 1619:1 1633:4 1636:1 1637:1 1647:2 1662:1 1664:1 1689:1 1706:1 1708:1 1720:2 1723:1 1749:1 1752:1 1785:1 1789:3 1824:1 1842:4 1885:1 1960:1 1966:1 1979:2 1981:1 1985:1 1991:1 1993:3 2014:1 2043:2 2047:1 2073:1 2079:1 2091:1 2093:1 2117:1 2131:1 2133:3 2137:1 2140:14 2143:1 2144:1 2147:1 2169:1 2183:1 2192:1 2212:1 2242:2 2253:2 2263:1 2273:1 2290:1 2300:3 2303:1 2310:1 2312:4 2314:1 2315:1 2318:1 2319:4 2322:1 2326:1 2328:1 2329:4 2336:2 2342:1 2344:2 2361:2 2362:1 2363:1 2365:1 2369:1 2371:1 2374:1 2375:3 2377:2 2381:1 2382:1 2388:1 2393:2 2396:2 2397:4 2403:2 2412:1 2414:3 2416:1 2423:1 2432:20 2442:1 2450:3 2456:1 2506:4 2517:1 2541:1 2543:1 2545:1 2547:1 2557:4 2565:1 2580:1 2608:1 2621:2 2649:1 2653:1 2662:1 2687:2 2699:3 2701:1 2717:1 2718:1 2720:2 2728:2 2737:1 2754:2 2793:1 2820:2 2827:2 2828:1 2847:1 2880:1 2889:1 2895:1 2896:1 2925:1 2931:1 2949:1 2952:6 2964:2 2974:1 2975:1 3050:2 3063:11 3066:3 3068:1 3088:1 3107:1 3116:1 3119:13 3126:1 3127:2 3143:2 3156:1 3164:2 3182:1 3184:1 3218:1 3221:1 3226:1 3230:1 3317:2 3330:6 3388:4 3401:1 3439:1 3442:1 3447:1 3448:3 3467:1 3479:1 3490:1 3494:3 3495:1 3500:1 3528:2 3537:2 3545:1 3563:1 3573:1 3581:1 3600:1 3619:1 3719:1 3728:1 3736:3 3798:1 3808:1 3828:1 3838:1 3860:1 3861:1 3872:1 3928:2 3949:2 3952:2 3973:2 3982:1 4010:1 4019:1 4020:2 4025:2 4056:1 4058:1 4064:2 4065:4 4066:1 4077:1 4078:1 4086:2 4089:2 4115:3 4123:1 4128:1 4129:2 4133:3 4173:1 4176:1 4181:1 4185:2 4186:1 4197:1 4202:1 4232:1 4248:1 4255:1 4260:1 4281:1 4289:1 4301:1 4307:2 4313:2 4328:1 4348:1 4354:2 4376:1 4390:1 4410:1 4419:2 4422:3 4431:3 4437:1 4456:1 4467:2 4492:1 4496:1 4505:1 4526:1 4531:1 4549:1 4560:1 4631:2 4634:1 4661:1 4668:1 4677:1 4717:2 4754:2 4757:1 4779:1 4789:4 4803:1 4848:1 4851:2 4890:1 4917:1 4920:1 4921:1 4922:2 4933:1 4946:2 4968:1 4969:3 4992:1 5002:1 5009:1 5012:5 5024:2 5046:1 5080:1 5098:2 5104:1 5108:1 5116:2 5119:1 5121:1 5136:1 5154:1 5155:1 5204:1 5212:2 5245:1 5268:3 5272:1 5282:1 5300:1 5310:14 5314:2 5315:1 5325:1 5335:1 5365:1 5370:1 5380:1 5423:1 5440:1 5455:1 5474:1 5481:1 5526:2 5545:1 5567:1 5571:1 5575:1 5581:3 5582:1 5622:1 5648:2 5651:2 5683:1 5719:3 5743:1 5746:2 5779:1 5783:1 5785:1 5790:2 5799:1 5800:1 5811:1 5817:1 5831:1 5859:6 5882:1 5887:1 5894:1 5900:1 5912:1 5919:1 5925:5 5942:2 5975:1 5992:1 6000:1 6006:1 6008:1 6014:1 6020:2 6029:1 6049:1 6053:2 6057:1 6087:1 6090:1 6110:2 6127:1 6195:1 6227:2 6242:1 6294:1 6297:1 6341:4 6363:2 6378:2 6397:1 6442:2 6444:1 6445:1 6471:1 6480:1 6497:1 6555:2 6557:1 6571:1 6575:1 6590:2 6603:2 6612:1 6613:5 6630:2 6645:1 6654:1 6672:2 6698:3 6721:1 6763:6 6815:5 6826:2 6827:1 6828:1 6829:1 6832:4 6851:1 6875:1 6883:1 6894:3 6916:3 6917:1 6923:1 6931:1 6932:2 6935:1 6938:1 6939:1 6941:1 6942:2 7005:1 7071:1 7081:1 7084:2 7090:1 7093:3 7113:6 7128:1 7169:1 7180:1 7197:2 7210:1 7230:1 7234:1 7239:6 7240:1 7268:1 7280:1 7302:8 7319:2 7333:1 7345:1 7369:1 7380:1 7388:1 7401:1 7419:1 7421:2 7428:2 7429:1 7434:1 7439:1 7460:1 7463:1 7468:1 7532:1 7550:1 7560:2 7561:1 7575:1 7584:1 7651:1 7658:1 7694:1 7706:1 7750:5 7762:1 7763:1 7764:1 7779:1 7781:1 7814:2 7818:1 7823:1 7870:2 7901:1 7906:3 7936:1 7944:1 7945:4 7969:1 7971:1 7978:2 7979:1 7996:1 8006:1 8030:2 8033:2 8055:1 8058:14 8068:3 8088:1 8104:1 8105:1 8126:1 8175:1 8179:1 8185:1 8241:3 8258:2 8289:2 8307:4 8327:1 8328:1 8329:2 8332:2 8333:5 8341:1 8351:3 8352:2 8359:6 8360:2 8364:1 8372:1 8377:1 8378:1 8386:19 8410:13 8413:1 8441:1 8452:1 8483:1 8513:1 8546:1 8560:1 8569:1 8592:3 8595:3 8624:1 8648:1 8682:1 8705:1 8710:3 8712:1 8761:1 8766:2 8781:1 8819:2 8829:1 8841:1 8879:1 8883:1 8889:2 8921:10 8950:2 8976:13 8982:6 8984:2 8985:1 8986:1 9007:1 9020:1 9021:1 9073:1 9100:1 9117:1 9134:1 9138:4 9183:14 9208:1 9220:6 9235:1 9250:1 9283:1 9285:1 9286:1 9290:2 9296:1 9299:1 9300:1 9301:1 9304:1 9312:1 9317:2 9355:1 9380:2 9381:5 9390:1 9395:1 9403:1 9406:1 9417:1 9490:1 9491:2 9508:1 9514:2 9520:1 9561:1 9570:1 9571:1 9597:2 9648:1 9652:2 9658:2 9675:1 9685:2 9701:1 9713:2 9715:1 9724:1 9725:2 9734:2 9743:2 9785:1 9799:1 9801:1 9815:2 9850:1 9856:1 9859:1 9910:2 9920:1 9932:1 9934:1 9957:2 9979:1 9985:1 10048:1 10062:1 10095:1 10116:3 10135:1 10178:1 10185:1 10206:1 10211:1 10214:1 10251:3 10255:1 10257:1 10273:1 10351:1 10372:3 10374:1 10377:6 10381:32 10383:1 10385:2 10387:1 10392:2 10399:1 10402:1 10406:1 10416:2 10430:1 10434:2 10450:4 10491:1 10492:2 10503:1 10510:2 10516:2 10545:1 10552:1 10569:1 10608:1 10621:2 10649:1 10654:1 10655:1 10659:2 10678:4 10705:1 10716:1 10751:1 10757:2 10773:1 10777:2 10784:1 10793:3 10800:3 10808:1 10822:1 10828:3 10830:1 10836:1 10857:2 10860:20 10886:1 10922:1 10951:4 10971:1 10989:1 11034:1 11094:1 11113:1 11114:2 11126:1 11130:1 11178:1 11185:1 11189:1 11203:1 11209:1 11221:1 11257:1 11274:1 11289:1 11295:2 11304:2 11306:1 11313:2 11362:2 11383:1 11388:1 11404:3 11453:2 11467:14 11473:1 11484:1 11486:1 11489:1 11503:1 11514:1 11515:3 11520:1 11530:1 11553:1 11557:2 11574:4 11591:2 11608:1 11654:1 11655:1 11661:2 11663:1 11693:1 11703:1 11710:6 11714:1 11730:1 11761:1 11766:1 11785:1 11798:1 11820:1 11840:3 11854:1 11860:4 11863:2 11864:1 11866:1 11879:1 11883:1 11886:3 11887:1 11888:2 11893:2 11896:1 11900:1 11929:1 11943:1 12001:1 12025:1 12026:1 12042:4 12048:1 12071:1 12072:1 12088:1 12094:1 12097:1 12098:1 12123:1 12145:1 12167:1 12186:1 12191:1 12213:1 12214:2 12220:2 12225:1 12228:1 12258:1 12260:1 12266:1 12319:1 12327:1 12373:1 12399:1 12420:1 12425:1 12427:1 12463:1 12475:1 12476:1 12489:1 12505:1 12536:2 12551:3 12564:1 12574:1 12583:1 12595:2 12630:1 12646:3 12648:1 12653:1 12659:1 12665:2 12677:6 12680:2 12686:3 12704:1 12706:6 12716:2 12730:1 12735:1 12739:3 12745:1 12774:1 12778:1 12787:1 12810:3 12838:1 12884:1 12890:1 12983:1 13027:1 13034:1 13053:1 13055:2 13062:1 13081:3 13086:1 13091:1 13098:1 13105:2 13142:1 13166:1 13188:1 13191:1 13209:2 13226:2 13230:1 13232:2 13270:1 13276:1 13319:1 13329:1 13337:1 13351:6 13363:1 13364:1 13369:1 13387:2 13392:2 13405:1 13416:1 13457:1 13478:1 13506:1 13537:1 13544:1 13545:2 13550:1 13616:1 13637:1 13640:1 13644:1 13674:2 13698:1 13703:1 13736:6 13754:1 13762:11 13794:1 13797:1 13825:1 13834:1 13845:1 13855:1 13858:1 13936:2 13940:1 13987:1 13989:1 13990:2 13993:1 14001:9 14052:1 14061:5 14082:1 14103:1 14204:1 14236:1 14250:2 14255:1 14257:1 14274:2 14295:1 14301:4 14311:1 14313:1 14314:1 14326:1 14328:2 14330:1 14355:1 14393:1 14395:1 14404:1 14417:1 14426:2 14450:2 14467:2 14474:1 14482:2 14483:1 14493:1 14514:1 14523:1 14524:1 14526:1 14544:1 14545:1 14549:1 14552:1 14557:2 14563:1 14582:1 14584:1 14638:1 14661:1 14662:3 14670:1 14677:4 14713:1 14717:2 14727:1 14736:1 14744:4 14749:1 14752:2 14757:1 14760:1 14804:3 14828:1 14837:1 14847:2 14859:2 14883:1 14890:1 14914:1 14915:5 14936:2 14965:1 14972:1 14975:2 14987:1 14990:1 15026:1 15035:1 15059:1 15072:1 15078:1 15114:3 15144:1 15154:2 15195:1 15210:3 15213:2 15219:1 15233:2 15252:1 15256:1 15338:1 15344:1 15375:1 15400:1 15433:1 15438:6 15455:1 15503:1 15510:1 15512:1 15528:1 15530:3 15535:1 15541:1 15551:2 15553:1 15558:1 15585:1 15604:20 15606:2 15608:1 15659:3 15660:1 15663:1 15710:5 15715:1 15737:1 15744:1 15763:1 15764:1 15822:1 15828:1 15843:1 15852:1 15871:1 15925:1 15934:1 15951:1 15975:1 15992:1 15994:1 15997:1 15999:1 16004:1 16006:3 16019:2 16046:1 16100:1 16121:1 16130:1 16132:1 16153:1 16158:2 16162:1 16165:1 16169:1 16175:1 16195:1 16196:3 16201:3 16224:1 16227:1 16236:1 16255:1 16256:6 16259:2 16288:1 16318:1 16330:1 16332:1 16335:1 16351:1 16375:11 16460:1 16461:1 16469:1 16481:1 16491:1 16506:1 16524:1 16539:4 16594:2 16612:1 16639:1 16642:1 16645:1 16699:2 16709:5 16712:1 16722:2 16732:1 16763:1 16780:1 16804:10 16806:1 16817:1 16825:1 16838:1 16869:1 16890:1 16913:4 16919:1 16952:1 16963:2 16972:1 16982:1 16995:1 17038:1 17058:3 17098:2 17107:1 17127:1 17145:1 17161:1 17163:3 17164:4 17196:1 17200:2 17202:1 17204:2 17223:1 17236:1 17248:1 17256:1 17267:2 17290:1 17291:1 17295:1 17302:2 17345:2 17361:2 17373:1 17413:1 17461:5 17482:1 17488:1 17490:1 17495:1 17505:1 17509:1 17514:2 17521:3 17522:1 17559:1 17561:1 17564:1 17572:1 17584:1 17588:1 17590:1 17599:1 17604:2 17610:2 17615:1 17658:1 17671:1 17678:2 17680:1 17700:1 17717:1 17718:1 17792:1 17802:1 17828:1 17834:1 17835:2 17836:1 17848:2 17867:1 17882:1 17932:1 17944:1 17958:1 17991:2 18028:1 18045:1 18068:1 18076:1 18108:1 18110:2 18114:1 18120:4 18167:1 18174:6 18218:1 18223:1 18247:1 18260:1 18286:1 18296:1 18334:1 18344:1 18366:1 18369:1 18373:1 18414:1 18421:1 18425:1 18427:2 18435:10 18438:4 18452:4 18457:2 18472:2 18479:4 18488:2 18515:1 18615:1 18616:1 18632:1 18635:1 18639:2 18643:1 18648:2 18651:1 18661:1 18713:1 18728:2 18743:1 18746:1 18752:2 18759:1 18783:2 18789:3 18793:1 18797:1 18823:1 18833:1 18879:1 18885:1 18910:1 18911:1 18918:1 18928:1 18934:2 18951:2 18964:2 18974:2 18984:2 18988:3 19004:1 19008:1 19013:1 19019:1 19021:3 19035:1 19036:1 19054:3 19057:3 19065:1 19066:1 19072:2 19077:2 19113:2 19118:4 19124:1 19132:1 19138:1 19155:1 19176:1 19182:1 19217:1 19226:1 19234:1 19266:2 19284:3 19287:1 19288:1 19291:1 19297:2 19372:1 19387:1 19390:1 19399:1 19401:2 19414:1 19418:2 19428:1 19443:1 19446:4 19450:1 19460:1 19472:2 19504:4 19511:5 19516:4 19521:1 19522:1 19537:1 19557:1 19558:3 19571:4 19589:1 19636:1 19648:1 19664:1 19670:1 19671:2 19676:1 19757:2 19783:1 19802:6 19812:1 19847:1 19875:1 19879:1 19883:1 19906:1 19908:4 19916:1 19925:1 19959:3 19980:20 20029:1 20034:2 20070:2 20083:2 20110:1 20129:4 20131:1 20174:2 20179:1 20268:20 20271:1 20293:2 20304:1 20326:1 20328:2479 20365:1 20372:1 20378:2 20407:1 20434:1 20439:1 20468:1 20471:2 20497:3 20521:1 20529:1 20530:1 20531:1 20551:1 20557:2 20565:5 20576:1 20578:5 20582:1 20584:1 20585:1 20596:1 20603:2 20662:1 20665:1 20669:2 20741:1 20743:1 20781:1 20796:1 20820:1 20825:1 20828:1 20856:1 20915:1 20977:4 21007:1 21021:7 21023:3 21027:1 21044:1 21049:1 21050:1 21072:1 21079:2 21092:1 21095:1 21097:2 21101:1 21117:1 21132:1 21140:1 21145:1 21146:2 21147:1 21156:1 21160:7 21192:2 21216:1 21226:1 21237:4 21262:6 21276:1 21291:1 21298:11 21299:2 21308:1 21309:1 21326:2 21350:1 21359:1 21378:16 21391:1 21398:1 21399:1 21417:1 21425:3 21436:2 21442:1 21446:1 21464:1 21476:1 21511:1 21523:1 21524:3 21551:4 21580:1 21590:2 21597:2 21598:2 21603:1 21635:2 21652:1 21666:1 21667:1 21676:1 21747:1 21753:1 21755:4 21761:1 21777:1 21798:2 21832:1 21862:1 21863:1 21868:1 21875:3 21879:1 21888:1 21894:1 21905:1 21926:1 21936:1 21971:2 21972:1 21978:1 22010:1 22021:1 22036:1 22045:6 22062:1 22066:2 22068:1 22084:7 22116:1 22117:1 22149:1 22159:1 22235:2 22240:1 22272:2 22287:1 22288:2 22307:1 22316:1 22325:4 22337:1 22339:2 22345:4 22367:1 22381:2 22387:1 22411:1 22446:1 22450:4 22456:2 22462:1 22476:1 22482:4 22507:1 22512:1 22513:1 22533:2 22538:1 22577:1 22585:1 22589:1 22604:1 22617:1 22622:1 22630:1 22635:2 22643:2 22655:7 22657:1 22674:7 22703:1 22704:1 22716:1 22724:1 22736:1 22747:1 22784:1 22786:1 22810:1 22812:1 22815:4 22819:1 22827:2 22838:1 22854:1 22870:1 22876:2 22902:1 22904:2 22939:1 22957:1 22987:1 22988:2 22991:1 22992:1 23010:1 23019:1 23026:1 23034:2 23058:1 23078:1 23084:4 23116:1 23129:1 23147:1 23168:2 23169:1 23178:1 23233:1 23242:1 23248:1 23256:1 23257:1 23261:2 23276:3 23280:1 23303:1 23307:1 23322:1 23325:1 23331:1 23346:2 23349:1 23363:1 23380:1 23382:1 23392:1 23399:1 23422:1 23458:2 23462:3 23476:2 23496:1 23511:2 23519:3 23535:2 23543:1 23554:1 23556:1 23571:1 23572:1 23573:2 23583:1 23590:4 23615:1 23616:1 23657:1 23662:1 23723:2 23737:1 23744:1 23763:1 23803:1 23826:2 23836:1 23863:4 23870:1 23871:1 23878:1 23880:1 23893:1 23899:1 23921:6 23954:1 23958:1 23965:1 23973:1 23981:1 24008:1 24009:2 24023:1 24026:2 24038:1 24055:1 24057:1 24078:1 24101:1 24115:1 24119:1 24148:1 24153:1 24159:1 24163:1 24164:1 24172:1 24174:1 24181:1 24183:2 24225:1 24232:1 24233:2 24236:1 24254:1 24263:2 24272:1 24273:2 24275:1 24276:3 24283:1 24285:1 24301:1 24307:1 24311:1 24319:1 24327:1 24332:1 24358:1 24360:1 24372:2 24382:1 24383:2 24386:3 24402:1 24407:2 24436:1 24438:1 24450:2 24455:2 24475:1 24486:1 24487:1 24494:1 24495:3 24518:1 24534:1 24554:1 24568:1 24572:1 24583:1 24586:4 24590:2 24603:1 24613:2 24618:1 24620:2 24627:1 24633:1 24635:1 24651:1 24657:1 24663:1 24669:1 24676:2 24701:5 24716:1 24727:2 24735:1 24737:1 24772:1 24773:1 24777:1 24782:1 24786:3 24787:1 24795:2 24839:1 24862:2 24863:1 24935:1 24945:1 24976:1 24981:1 25019:2 25032:1 25033:1 25044:1 25047:1 25056:9 25071:1 25091:5 25097:1 25105:1 25115:4 25148:3 25174:1 25191:1 25192:1 25193:1 25200:1 25202:1 25214:1 25215:1 25253:1 25266:1 25267:1 25271:1 25272:1 25280:2 25301:1 25302:1 25323:2 25330:1 25332:5 25340:1 25352:1 25353:1 25361:1 25364:1 25376:1 25391:1 25392:1 25398:2 25410:1 25413:1 25421:4 25442:1 25450:1 25470:1 25472:2 25476:1 25490:1 25525:2 25545:1 25556:1 25572:1 25577:1 25593:1 25619:1 25630:3 25655:1 25674:2 25689:1 25694:1 25704:1 25709:3 25736:1 25749:1 25766:2 25772:1 25781:1 25788:1 25798:4 25802:1 25835:1 25844:2 25907:1 25919:2 25927:1 25928:1 25937:1 25961:1 25995:1 26000:1 26011:1 26012:1 26014:1 26058:1 26065:1 26089:1 26092:1 26103:1 26107:1 26123:1 26125:3 26128:1 26133:1 26135:2 26136:1 26139:2 26143:1 26147:2 26154:1 26158:1 26164:1 26169:1 26178:1 26208:2 26213:1 26225:1 26235:2 26248:3 26263:1 26268:1 26280:1 26281:1 26288:2 26293:1 26305:5 26339:3 26389:3 26438:1 26444:1 26447:1 26466:1 26491:2 26552:1 26560:1 26563:2 26589:1 26592:1 26594:1 26595:1 26604:1 26607:1 26608:2 26611:2 26618:1 26630:1 26631:1 26632:1 26642:1 26653:4 26660:1 26690:1 26692:1 26716:1 26727:1 26746:1 26749:1 26755:1 26762:1 26769:1 26781:7 26809:3 26821:2 26863:1 26894:1 26901:2 26904:1 26915:1 26929:1 26931:1 26943:1 27033:1 27034:1 27037:2 27039:1 27052:1 27075:1 27088:3 27095:1 27097:1 27104:2 27113:1 27125:1 27138:1 27145:1 27163:1 27164:1 27177:1 27202:1 27209:4 27216:1 27230:2 27232:1 27247:1 27253:1 27264:1 27273:1 27297:3 27302:2 27315:1 27326:1 27338:1 27352:2 27362:1 27375:1 27390:1 27400:1 27416:1 27422:1 27426:10 27427:1 27466:1 27472:2 27488:1 27515:2 27546:1 27559:1 27575:1 27582:2 27583:1 27588:2 27604:3 27605:1 27606:2 27614:1 27620:2 27662:6 27667:2 27685:2 27690:2 27693:1 27718:2 27737:4 27768:1 27785:1 27788:1 27799:1 27817:5 27822:1 27839:1 27851:7 27892:1 27906:1 27945:3 27950:1 27969:1 27995:1 28000:1 28005:1 28025:1 28040:1 28046:1 28056:1 28072:1 28074:1 28084:2 28094:1 28122:2 28128:1 28139:1 28149:1 28159:1 28160:1 28189:1 28193:1 28197:1 28207:1 28217:2 28256:1 28262:2 28275:1 28301:1 28307:1 28400:1 28419:1 28428:3 28459:1 28474:1 28488:1 28499:1 28502:1 28505:1 28527:2 28540:6 28555:1 28561:2 28575:1 28630:1 28658:2 28715:1 28728:1 28744:1 28754:2 28755:6 28764:1 28765:1 28778:6 28783:2 28792:1 28809:1 28823:1 28843:2 28856:1 28858:6 28877:2 28883:1 28900:1 28911:1 28916:1 28929:1 28933:20 28947:1 28960:1 28961:1 28977:1 28984:2 29024:1 29034:2 29039:1 29052:2 29063:1 29078:1 29090:1 29091:1 29126:1 29146:1 29154:1 29161:1 29182:1 29193:1 29221:1 29231:1 29239:4 29240:1 29268:1 29272:2 29292:1 29314:1 29339:2 29349:2 29357:1 29387:2 29396:2 29404:1 29413:1 29422:1 29429:1 29431:3 29444:1 29457:4 29465:1 29471:2 29490:1 29495:2 29519:1 29535:1 29543:2 29546:1 29551:1 29557:3 29560:1 29602:1 29650:1 29652:2 29664:1 29675:1 29684:1 29708:1 29730:1 29742:1 29748:1 29749:1 29759:1 29761:1 29762:1 29763:1 29764:1 29775:1 29795:2 29798:1 29816:6 29855:1 29865:1 29866:1 29890:1 29901:1 29902:1 29930:1 29931:1 29935:1 29988:1 29990:1 29998:1 30003:1 30036:1 30056:2 30084:3 30088:1 30113:3 30123:1 30137:11 30138:1 30145:1 30157:1 30162:3 30173:2 30180:2 30183:1 30184:2 30225:2 30226:1 30239:2 30241:8 30253:1 30263:1 30264:1 30277:2 30279:1 30280:1 30284:1 30312:1 30330:3 30334:1 30335:2 30339:2 30362:1 30385:1 30394:1 30396:4 30438:1 30447:1 30449:2 30459:1 30462:4 30466:1 30468:1 30508:1 30538:1 30541:1 30551:1 30561:2 30573:1 30580:1 30586:1 30592:1 30607:1 30646:1 30653:1 30654:1 30678:1 30679:1 30680:1 30682:2 30686:2 30716:2 30725:2 30760:2 30787:1 30795:2 30815:4 30823:1 30854:3 30868:1 30871:1 30872:1 30897:2 30898:1 30901:1 30902:1 30903:1 30906:1 30927:1 30950:1 30952:1 30962:1 30998:1 31028:1 31032:1 31034:1 31037:2 31060:1 31076:1 31089:4 31095:1 31098:4 31115:1 31168:1 31184:2 31210:1 31215:1 31233:4 31258:1 31316:1 31331:1 31341:1 31353:1 31355:3 31359:1 31377:1 31378:1 31383:1 31407:2 31427:2 31432:1 31446:1 31447:2 31462:1 31478:2 31481:1 31489:4 31497:1 31505:3 31507:1 31510:1 31514:1 31548:1 31550:1 31559:1 31567:1 31615:2 18 6:1 14:1 18:1 34:1 55:1 69:1 75:1 80:1 123:1 188:4 210:2 214:1 216:2 219:1 237:2 269:2 273:2 283:2 302:1 323:2 339:4 352:1 358:1 359:1 372:7 383:1 384:1 389:1 394:1 395:1 448:1 449:3 454:1 466:1 469:1 490:1 538:1 548:2 552:1 570:1 572:1 595:1 599:1 600:3 603:1 618:1 628:2 632:1 646:2 656:3 683:1 694:2 704:5 715:1 716:1 735:1 748:3 756:1 767:2 768:1 781:1 782:1 790:1 795:1 802:1 866:1 881:1 888:4 890:3 898:1 909:1 923:1 924:3 926:1 937:2 949:1 950:2 960:2 964:1 970:1 973:1 1011:1 1014:2 1130:1 1132:3 1135:1 1148:1 1152:1 1167:1 1181:1 1202:1 1248:4 1272:1 1279:2 1280:2 1281:1 1283:2 1295:1 1316:2 1332:1 1342:1 1343:1 1351:2 1353:1 1371:1 1434:1 1437:1 1447:1 1453:2 1454:2 1461:1 1465:1 1487:2 1500:3 1501:1 1506:1 1518:1 1520:1 1522:1 1554:1 1556:2 1558:1 1562:1 1595:1 1604:1 1615:2 1619:1 1633:4 1636:1 1637:3 1647:2 1662:1 1664:1 1689:1 1706:1 1708:1 1720:2 1723:1 1749:1 1752:1 1785:1 1789:3 1824:1 1842:4 1885:1 1960:1 1966:1 1979:2 1981:1 1985:1 1991:1 1993:3 2014:1 2043:2 2047:1 2073:1 2079:1 2091:1 2093:2 2117:1 2131:2 2133:3 2137:1 2140:14 2143:1 2144:1 2147:1 2169:1 2183:1 2187:1 2192:1 2212:1 2225:1 2242:2 2253:2 2263:1 2273:1 2290:1 2300:3 2303:1 2310:1 2312:4 2314:1 2315:1 2318:1 2319:4 2322:1 2326:1 2328:1 2329:4 2336:2 2342:2 2344:2 2361:2 2362:1 2363:1 2365:1 2369:1 2371:1 2374:1 2375:3 2377:2 2381:1 2382:1 2388:1 2393:2 2396:2 2397:4 2403:2 2407:1 2412:1 2414:3 2416:1 2423:1 2432:20 2442:1 2450:3 2456:1 2506:4 2517:1 2528:1 2541:1 2543:1 2545:1 2547:1 2557:4 2565:1 2580:1 2608:1 2621:2 2645:1 2649:1 2653:1 2662:1 2687:2 2699:3 2701:1 2717:1 2718:1 2720:2 2728:2 2737:1 2754:2 2793:1 2820:2 2827:2 2828:1 2847:1 2873:1 2880:1 2889:1 2895:1 2896:1 2925:1 2931:1 2949:1 2952:6 2956:1 2964:2 2974:1 2975:1 3050:2 3059:1 3063:11 3066:3 3068:1 3088:1 3107:1 3116:1 3119:14 3126:1 3127:2 3143:2 3156:1 3164:2 3182:1 3184:1 3218:1 3221:1 3226:1 3230:1 3317:2 3330:6 3388:4 3401:1 3439:1 3442:1 3447:1 3448:3 3467:1 3479:1 3489:1 3490:1 3494:3 3495:1 3500:1 3528:2 3537:2 3545:1 3563:1 3573:1 3581:1 3600:1 3619:1 3719:1 3728:1 3736:3 3791:1 3798:1 3808:1 3828:1 3838:1 3860:1 3861:1 3872:1 3928:2 3949:2 3952:2 3973:2 3982:1 4010:1 4019:1 4020:3 4025:2 4056:1 4058:1 4064:2 4065:4 4066:1 4077:1 4078:1 4086:2 4089:2 4115:3 4123:1 4128:1 4129:2 4133:3 4166:1 4167:1 4173:1 4176:1 4181:1 4185:3 4186:1 4197:1 4202:1 4232:1 4248:1 4255:1 4260:1 4281:1 4289:1 4301:1 4307:2 4313:2 4328:1 4348:1 4354:2 4376:1 4390:1 4410:1 4419:2 4422:3 4431:3 4437:1 4456:1 4467:2 4492:1 4496:1 4505:1 4526:1 4531:1 4540:2 4549:1 4560:1 4631:2 4634:1 4661:1 4668:1 4677:1 4715:1 4717:2 4754:2 4757:1 4779:1 4789:4 4803:1 4848:1 4851:2 4868:1 4890:1 4917:1 4920:1 4921:1 4922:3 4933:1 4946:2 4968:1 4969:3 4992:1 5002:1 5009:1 5012:5 5024:2 5046:1 5080:1 5098:3 5104:1 5108:1 5116:2 5119:1 5121:1 5136:1 5154:1 5155:1 5204:1 5212:2 5245:1 5268:3 5272:1 5282:1 5300:1 5310:14 5314:2 5315:1 5325:1 5335:1 5365:1 5370:1 5380:1 5423:1 5440:1 5455:1 5474:1 5478:1 5481:1 5526:2 5545:1 5567:1 5571:1 5575:1 5581:3 5582:1 5622:1 5648:2 5651:2 5683:1 5699:1 5719:3 5743:1 5746:2 5779:1 5783:1 5785:1 5790:2 5799:1 5800:1 5811:1 5817:1 5831:1 5859:6 5882:1 5887:1 5894:1 5900:1 5912:1 5919:1 5925:5 5942:2 5975:1 5992:1 6000:1 6006:1 6008:1 6014:1 6020:2 6027:1 6029:1 6049:1 6053:2 6057:1 6087:1 6090:1 6110:2 6127:1 6195:2 6227:2 6242:1 6294:1 6297:1 6341:4 6363:2 6378:2 6397:1 6442:2 6444:1 6445:2 6471:1 6480:1 6497:1 6555:2 6557:1 6571:1 6575:1 6590:2 6603:3 6612:1 6613:7 6630:3 6645:1 6654:1 6672:2 6698:3 6699:1 6721:1 6763:6 6815:6 6826:2 6827:1 6828:1 6829:1 6832:4 6842:1 6851:1 6875:1 6883:1 6894:3 6916:3 6917:1 6923:1 6931:1 6932:2 6935:1 6938:1 6939:1 6941:1 6942:2 7005:1 7065:1 7071:1 7081:1 7084:2 7090:1 7093:3 7113:6 7128:1 7169:1 7180:1 7197:2 7210:1 7230:1 7234:1 7239:7 7240:1 7268:1 7280:1 7296:1 7302:8 7319:2 7333:1 7345:1 7369:1 7380:1 7388:1 7401:1 7419:1 7421:2 7428:2 7429:1 7434:1 7439:1 7460:1 7463:1 7468:1 7532:1 7550:1 7560:2 7561:1 7575:1 7576:1 7584:1 7651:1 7658:1 7694:1 7706:1 7750:6 7762:1 7763:1 7764:1 7779:1 7781:1 7814:2 7818:1 7823:1 7870:2 7901:1 7906:3 7936:1 7944:1 7945:4 7969:1 7971:1 7978:2 7979:1 7996:1 8006:1 8030:2 8033:2 8055:1 8058:14 8068:3 8088:1 8104:1 8105:1 8126:1 8175:1 8179:1 8185:1 8241:3 8258:2 8289:2 8307:4 8309:1 8327:1 8328:1 8329:2 8332:2 8333:5 8341:1 8351:3 8352:2 8359:6 8360:2 8364:1 8372:1 8377:1 8378:1 8386:20 8410:14 8413:1 8441:1 8452:1 8483:1 8513:1 8546:1 8560:1 8569:1 8592:3 8595:3 8624:1 8648:1 8682:1 8705:1 8710:3 8712:1 8761:1 8766:3 8781:1 8819:2 8829:1 8839:1 8841:1 8879:1 8883:1 8889:2 8921:11 8950:2 8976:13 8982:6 8984:2 8985:1 8986:1 9007:1 9020:1 9021:1 9059:1 9073:1 9100:1 9117:1 9120:1 9134:1 9138:4 9183:14 9208:1 9220:7 9235:1 9250:1 9283:1 9285:1 9286:1 9290:2 9296:1 9299:1 9300:1 9301:1 9304:1 9312:1 9315:1 9317:2 9355:1 9380:2 9381:5 9390:1 9395:1 9403:1 9406:1 9417:1 9490:1 9491:2 9508:1 9514:2 9520:1 9561:1 9570:1 9571:1 9597:2 9648:1 9652:2 9658:2 9675:1 9685:2 9701:1 9713:2 9715:1 9724:1 9725:2 9734:3 9740:1 9743:2 9781:1 9785:1 9799:1 9801:1 9815:2 9850:1 9856:1 9859:1 9910:2 9920:1 9932:1 9934:1 9957:2 9979:1 9985:1 10048:1 10062:1 10095:1 10116:3 10135:1 10178:1 10185:1 10206:1 10211:1 10214:1 10251:3 10255:1 10257:1 10273:1 10283:1 10351:1 10372:3 10374:1 10377:6 10381:32 10383:1 10385:2 10387:1 10392:2 10399:1 10402:1 10406:1 10416:2 10430:1 10434:2 10450:4 10491:1 10492:2 10503:1 10510:2 10516:2 10545:1 10552:1 10569:1 10608:1 10621:2 10649:1 10654:1 10655:1 10659:2 10678:4 10705:1 10716:1 10751:1 10757:2 10773:1 10776:1 10777:2 10784:1 10793:3 10800:3 10808:1 10822:1 10828:3 10830:1 10836:1 10857:2 10860:20 10886:1 10922:1 10951:4 10971:1 10989:1 11034:1 11094:1 11113:1 11114:2 11126:1 11130:1 11178:1 11185:1 11189:1 11203:1 11209:1 11221:1 11257:1 11274:1 11289:1 11295:2 11304:2 11306:1 11313:2 11362:2 11383:1 11388:1 11404:3 11453:2 11467:14 11473:1 11484:1 11486:1 11489:1 11498:1 11503:1 11514:1 11515:3 11520:1 11530:1 11553:1 11557:2 11574:4 11585:1 11591:2 11598:1 11608:1 11634:1 11654:1 11655:1 11661:2 11663:1 11693:1 11703:1 11710:7 11714:1 11730:1 11761:1 11766:1 11785:1 11798:1 11820:1 11840:3 11854:1 11860:4 11863:2 11864:1 11866:1 11879:1 11883:1 11886:3 11887:1 11888:2 11893:2 11896:1 11900:1 11929:1 11943:1 12001:1 12025:1 12026:1 12042:4 12048:1 12071:1 12072:1 12088:1 12094:1 12097:1 12098:1 12123:1 12145:1 12167:1 12186:1 12191:1 12213:1 12214:2 12220:2 12225:1 12228:1 12258:1 12260:1 12266:1 12289:1 12319:1 12327:1 12373:1 12399:1 12419:1 12420:1 12425:1 12427:1 12463:1 12475:1 12476:1 12489:1 12505:1 12536:2 12551:3 12564:1 12574:1 12583:1 12595:2 12630:1 12646:3 12648:1 12653:1 12659:1 12665:2 12677:6 12680:2 12686:3 12704:1 12706:6 12716:2 12730:1 12735:1 12739:3 12745:1 12774:1 12778:1 12787:1 12810:3 12838:1 12884:1 12890:1 12983:1 13027:1 13034:1 13053:1 13055:2 13062:1 13081:3 13086:1 13091:1 13098:1 13105:2 13142:1 13166:1 13188:1 13191:1 13209:2 13226:2 13230:1 13232:2 13270:1 13276:1 13319:1 13329:1 13337:1 13351:7 13363:1 13364:1 13369:1 13387:2 13392:2 13405:1 13416:1 13457:1 13478:1 13506:1 13537:1 13544:1 13545:2 13550:1 13616:1 13637:1 13640:1 13644:1 13674:2 13698:1 13703:1 13736:7 13754:1 13762:11 13794:1 13797:1 13825:1 13834:1 13835:1 13845:1 13855:1 13858:1 13936:2 13940:1 13987:1 13989:1 13990:2 13993:1 14001:9 14052:1 14061:5 14082:1 14103:1 14204:1 14236:1 14250:2 14255:1 14257:1 14274:2 14295:1 14301:4 14311:1 14313:1 14314:1 14326:1 14328:2 14330:1 14355:1 14393:1 14395:1 14404:1 14417:1 14426:2 14450:2 14460:1 14467:2 14474:1 14482:2 14483:1 14493:1 14514:1 14523:1 14524:1 14526:1 14544:1 14545:1 14549:1 14552:2 14557:2 14563:1 14582:1 14584:1 14638:1 14661:1 14662:4 14670:1 14677:4 14713:1 14717:2 14727:1 14736:1 14744:4 14749:1 14752:2 14757:1 14760:1 14804:3 14828:1 14837:1 14847:2 14859:2 14883:1 14890:1 14914:1 14915:6 14936:2 14965:1 14972:1 14975:2 14987:1 14990:1 15026:1 15035:1 15059:1 15072:1 15078:1 15114:3 15144:1 15154:2 15195:1 15210:3 15213:2 15219:1 15233:2 15252:1 15256:1 15338:1 15344:1 15375:1 15400:1 15433:1 15438:6 15455:1 15503:1 15510:1 15512:1 15528:1 15530:3 15535:1 15541:1 15551:2 15553:1 15558:1 15585:1 15604:20 15606:2 15608:1 15659:3 15660:1 15663:1 15710:5 15715:1 15737:1 15744:1 15763:1 15764:1 15822:1 15828:1 15843:1 15852:1 15871:1 15905:1 15925:1 15934:1 15951:1 15975:1 15992:1 15994:1 15997:1 15999:1 16004:1 16006:3 16019:2 16046:1 16100:1 16121:1 16130:1 16132:1 16153:1 16158:2 16162:1 16165:1 16169:1 16175:1 16195:1 16196:3 16201:4 16224:1 16227:1 16236:1 16255:1 16256:6 16259:2 16288:1 16318:1 16330:1 16332:1 16335:1 16351:1 16375:11 16460:1 16461:1 16469:1 16481:1 16491:1 16506:1 16524:1 16539:4 16594:2 16612:1 16639:1 16642:1 16645:1 16699:2 16709:5 16712:1 16722:2 16732:1 16763:1 16772:1 16780:1 16804:11 16806:1 16817:1 16825:1 16838:2 16869:1 16890:1 16913:4 16919:1 16952:1 16958:1 16963:2 16972:1 16982:1 16995:1 17004:1 17038:1 17058:3 17074:1 17075:1 17098:2 17107:1 17127:1 17145:1 17161:1 17163:3 17164:4 17196:1 17200:2 17202:1 17204:2 17223:1 17236:1 17248:1 17256:1 17267:2 17290:1 17291:1 17295:1 17302:2 17345:2 17361:2 17373:1 17413:1 17461:5 17482:1 17488:1 17490:1 17495:1 17505:1 17509:1 17514:2 17521:3 17522:1 17559:1 17561:1 17564:1 17572:1 17584:1 17588:1 17590:1 17591:1 17599:1 17604:2 17610:2 17615:1 17658:1 17671:1 17678:2 17679:1 17680:1 17700:1 17717:1 17718:1 17792:1 17802:1 17828:1 17834:1 17835:2 17836:1 17848:2 17867:1 17882:1 17932:1 17944:1 17958:1 17991:2 18028:1 18045:1 18068:1 18076:1 18108:1 18110:2 18114:1 18120:5 18167:1 18174:6 18218:1 18223:1 18247:1 18260:1 18286:1 18296:1 18334:1 18344:1 18366:1 18369:1 18373:1 18414:1 18421:1 18425:1 18427:2 18435:11 18438:4 18452:4 18457:2 18472:2 18479:4 18488:2 18515:1 18615:2 18616:1 18632:1 18635:1 18639:2 18643:1 18648:2 18651:1 18661:1 18713:1 18728:2 18743:1 18746:1 18752:2 18759:1 18783:2 18789:3 18793:1 18797:1 18823:1 18833:1 18841:1 18879:1 18885:1 18910:1 18911:1 18918:1 18928:1 18934:2 18951:2 18964:2 18974:2 18984:2 18988:3 19004:1 19008:1 19013:1 19019:1 19021:3 19035:1 19036:1 19054:3 19057:3 19065:1 19066:1 19072:2 19077:3 19113:2 19118:4 19124:1 19132:1 19138:1 19155:1 19176:1 19182:1 19217:1 19226:1 19234:1 19266:2 19284:3 19287:1 19288:1 19291:1 19297:2 19372:1 19387:1 19390:1 19399:1 19401:2 19414:1 19418:2 19428:1 19443:1 19446:4 19450:1 19460:1 19472:2 19504:5 19511:6 19516:4 19521:1 19522:1 19537:1 19557:1 19558:3 19571:4 19589:1 19636:1 19648:1 19664:1 19670:1 19671:2 19676:1 19757:2 19783:1 19802:6 19812:1 19847:1 19875:1 19879:1 19883:1 19906:1 19908:5 19916:1 19925:1 19959:3 19980:20 20029:1 20034:2 20070:2 20083:2 20110:1 20129:4 20131:1 20174:2 20179:1 20268:20 20271:1 20293:2 20304:1 20326:1 20328:2522 20365:1 20372:1 20378:2 20407:1 20411:1 20434:1 20439:1 20468:1 20471:2 20497:3 20503:1 20521:1 20529:1 20530:1 20531:1 20551:1 20557:2 20565:5 20569:1 20576:1 20578:5 20582:1 20584:1 20585:1 20596:1 20603:2 20647:1 20662:1 20665:1 20669:2 20741:1 20743:1 20781:1 20796:1 20820:1 20825:1 20828:1 20856:1 20915:1 20977:5 20985:1 21007:1 21021:7 21023:3 21027:1 21044:1 21049:1 21050:1 21072:1 21079:2 21092:1 21095:1 21097:2 21101:1 21117:1 21132:1 21140:1 21145:1 21146:2 21147:1 21156:1 21160:7 21192:2 21216:1 21226:1 21237:4 21262:6 21276:1 21279:1 21291:1 21298:11 21299:2 21308:1 21309:1 21326:2 21350:1 21359:1 21378:17 21391:1 21398:1 21399:1 21417:1 21425:3 21436:2 21442:1 21446:1 21464:1 21476:1 21511:1 21523:1 21524:3 21542:1 21551:4 21580:1 21590:2 21597:2 21598:2 21603:1 21635:2 21652:1 21666:1 21667:1 21676:1 21747:1 21753:1 21755:4 21761:1 21777:1 21798:2 21832:1 21862:1 21863:1 21868:1 21875:3 21879:1 21888:1 21894:1 21905:1 21926:1 21936:1 21971:2 21972:1 21978:1 22001:1 22010:1 22021:1 22036:1 22045:6 22062:1 22066:2 22068:1 22084:8 22116:1 22117:1 22149:1 22159:1 22235:2 22240:1 22272:2 22284:1 22287:1 22288:2 22299:1 22307:1 22316:1 22325:4 22337:1 22339:2 22345:4 22367:1 22381:2 22387:1 22411:1 22446:1 22450:4 22456:2 22462:1 22476:1 22482:4 22507:1 22512:1 22513:1 22533:2 22538:1 22577:1 22585:1 22589:1 22604:1 22617:1 22622:1 22630:1 22635:2 22643:2 22655:7 22657:1 22674:8 22703:1 22704:1 22716:1 22724:1 22736:1 22747:1 22784:1 22786:1 22810:1 22812:1 22815:4 22819:1 22827:2 22829:1 22838:1 22854:1 22870:1 22876:2 22902:1 22904:2 22939:1 22957:1 22987:1 22988:2 22991:1 22992:1 23010:1 23019:1 23026:1 23034:2 23058:1 23078:1 23084:4 23116:1 23129:1 23147:1 23168:2 23169:1 23178:1 23233:1 23242:1 23245:1 23248:1 23256:1 23257:1 23261:2 23276:3 23280:1 23303:1 23307:1 23317:1 23322:1 23325:1 23331:1 23346:2 23349:1 23363:1 23368:1 23380:1 23382:1 23392:1 23399:1 23422:1 23458:2 23462:3 23476:2 23496:1 23511:2 23519:3 23535:2 23543:1 23554:1 23556:1 23571:1 23572:1 23573:2 23583:1 23590:4 23615:1 23616:1 23657:1 23662:1 23723:2 23737:1 23744:1 23763:1 23803:1 23811:1 23826:2 23836:1 23863:4 23870:1 23871:1 23878:1 23880:1 23893:1 23899:1 23921:6 23954:1 23958:1 23965:1 23973:1 23981:1 23988:1 24008:1 24009:2 24023:1 24026:2 24032:1 24038:1 24055:1 24057:1 24063:1 24078:1 24101:1 24115:1 24119:1 24148:1 24153:1 24159:1 24163:1 24164:1 24172:1 24174:1 24181:1 24183:2 24190:1 24198:1 24225:1 24232:2 24233:2 24236:1 24254:1 24263:2 24272:1 24273:2 24275:1 24276:3 24283:1 24285:1 24301:1 24307:1 24311:1 24319:1 24327:1 24332:1 24358:1 24360:1 24372:2 24382:1 24383:2 24386:3 24402:1 24407:2 24436:1 24438:1 24450:2 24455:2 24475:1 24486:1 24487:1 24494:1 24495:3 24518:1 24534:1 24554:1 24568:1 24572:1 24583:1 24586:4 24590:2 24603:1 24613:2 24618:1 24620:2 24627:1 24633:1 24635:1 24651:1 24657:1 24663:1 24669:1 24676:2 24701:5 24716:1 24719:1 24727:2 24735:1 24737:1 24772:1 24773:2 24777:1 24782:1 24786:3 24787:1 24795:2 24808:1 24839:1 24862:2 24863:1 24935:1 24945:1 24976:1 24981:1 25019:2 25032:1 25033:1 25044:1 25047:1 25056:10 25071:1 25091:5 25097:1 25105:1 25115:5 25148:3 25174:1 25191:1 25192:1 25193:1 25200:1 25202:1 25214:1 25215:1 25253:1 25266:1 25267:1 25271:1 25272:1 25280:2 25301:1 25302:1 25323:2 25330:1 25332:5 25340:1 25352:1 25353:1 25361:1 25364:1 25376:1 25391:1 25392:1 25398:2 25410:1 25413:1 25421:4 25442:1 25450:1 25470:1 25472:2 25476:1 25490:1 25525:2 25545:1 25556:1 25572:1 25577:1 25593:1 25619:1 25630:3 25655:1 25674:2 25689:1 25694:1 25704:1 25709:3 25736:1 25749:1 25766:2 25772:1 25781:1 25788:1 25798:4 25802:1 25803:1 25808:1 25835:1 25844:2 25891:1 25907:1 25919:2 25927:1 25928:1 25937:1 25940:1 25961:1 25995:1 26000:1 26011:1 26012:1 26014:1 26058:1 26065:1 26089:1 26092:1 26103:1 26107:1 26123:1 26125:3 26128:1 26133:1 26135:2 26136:1 26139:2 26143:1 26147:2 26154:1 26155:1 26158:1 26164:1 26169:1 26178:1 26192:1 26208:2 26213:1 26225:1 26235:2 26248:4 26263:1 26268:2 26280:1 26281:1 26288:2 26293:1 26305:5 26315:1 26339:3 26389:3 26438:1 26444:1 26447:1 26466:1 26491:2 26552:1 26560:1 26563:2 26589:1 26592:1 26594:1 26595:1 26604:1 26607:1 26608:2 26611:3 26618:1 26630:1 26631:1 26632:1 26642:1 26653:4 26660:1 26690:1 26692:1 26716:1 26727:1 26746:1 26749:1 26755:1 26762:1 26769:1 26781:7 26809:3 26821:2 26863:1 26894:1 26901:2 26904:1 26915:1 26916:1 26929:1 26931:1 26943:1 27033:1 27034:1 27037:2 27039:1 27052:1 27075:1 27088:3 27095:1 27097:1 27104:2 27113:1 27125:1 27138:1 27145:1 27163:1 27164:1 27177:1 27202:1 27209:4 27216:1 27230:2 27232:1 27247:1 27253:1 27264:1 27273:1 27297:3 27302:2 27315:1 27326:1 27338:1 27352:3 27362:1 27375:1 27390:1 27400:1 27402:1 27416:1 27422:1 27426:10 27427:1 27466:1 27472:2 27488:1 27515:2 27546:1 27559:1 27575:1 27582:2 27583:1 27588:2 27604:3 27605:1 27606:2 27614:1 27620:2 27639:1 27662:6 27667:2 27685:2 27690:2 27693:1 27718:2 27737:4 27768:1 27785:1 27788:1 27799:1 27817:5 27822:1 27839:1 27851:7 27892:1 27906:1 27945:3 27950:1 27969:1 27995:1 28000:1 28005:1 28025:1 28040:1 28046:1 28056:1 28072:1 28074:1 28084:2 28094:1 28122:2 28128:1 28139:1 28149:1 28159:1 28160:1 28189:1 28193:1 28197:1 28207:1 28217:2 28256:1 28262:2 28275:1 28301:1 28307:1 28400:1 28419:1 28428:3 28459:1 28474:1 28488:1 28499:1 28502:1 28504:1 28505:1 28527:2 28540:7 28555:1 28561:2 28575:1 28630:1 28658:2 28715:1 28728:1 28744:1 28754:2 28755:6 28764:1 28765:1 28778:6 28783:2 28792:1 28809:1 28823:1 28843:2 28856:1 28858:7 28877:2 28883:1 28900:1 28911:1 28916:1 28929:1 28933:20 28947:1 28960:1 28961:1 28977:1 28984:2 29024:1 29034:2 29039:1 29052:2 29063:1 29078:1 29090:1 29091:1 29126:1 29146:1 29154:1 29161:1 29182:1 29193:1 29221:1 29231:1 29239:4 29240:1 29268:1 29272:2 29292:1 29314:1 29339:2 29349:2 29357:1 29387:2 29396:2 29404:1 29413:1 29422:1 29429:1 29430:1 29431:3 29444:1 29457:4 29465:1 29471:2 29490:1 29495:2 29519:1 29535:1 29543:2 29546:1 29551:1 29557:3 29560:1 29602:1 29650:1 29652:2 29664:1 29675:1 29684:1 29708:1 29730:1 29742:1 29748:1 29749:1 29759:1 29761:1 29762:1 29763:1 29764:1 29775:1 29795:2 29798:1 29816:6 29855:1 29865:1 29866:1 29890:1 29901:1 29902:1 29930:1 29931:1 29935:1 29988:1 29990:1 29998:1 30003:1 30036:1 30056:2 30084:3 30088:1 30113:3 30123:1 30137:12 30138:1 30145:1 30157:1 30162:3 30173:2 30180:2 30183:1 30184:2 30225:2 30226:1 30239:2 30241:8 30253:1 30263:1 30264:2 30277:2 30279:1 30280:1 30284:1 30294:1 30312:1 30330:3 30334:1 30335:2 30339:2 30362:1 30385:1 30394:1 30396:5 30438:1 30447:1 30449:2 30459:1 30462:4 30466:1 30468:1 30508:1 30538:1 30541:1 30551:1 30561:2 30573:1 30580:1 30586:1 30592:1 30607:1 30646:1 30653:1 30654:1 30678:1 30679:1 30680:1 30682:2 30686:2 30716:2 30725:2 30760:3 30787:1 30795:2 30815:4 30823:1 30854:3 30868:1 30871:1 30872:1 30897:2 30898:1 30901:1 30902:1 30903:1 30906:1 30927:1 30950:1 30952:1 30962:1 30998:1 31028:1 31032:1 31034:1 31037:2 31060:1 31076:1 31089:4 31095:1 31098:4 31105:1 31115:1 31168:1 31184:2 31210:1 31215:1 31233:4 31258:1 31316:1 31331:1 31341:1 31342:1 31353:1 31355:3 31359:1 31377:1 31378:1 31383:1 31407:2 31427:2 31432:1 31446:1 31447:2 31462:1 31478:2 31481:1 31489:4 31497:1 31505:4 31507:1 31510:1 31514:1 31548:1 31550:1 31559:1 31567:1 31615:2 18 6:1 14:1 18:1 34:1 55:1 69:1 75:1 80:1 123:1 188:4 210:2 214:1 216:2 219:1 237:2 269:2 273:2 283:2 302:1 323:2 339:4 352:1 358:1 359:1 372:7 383:1 384:1 389:1 394:1 395:1 448:1 449:3 454:1 466:1 469:1 490:1 501:1 538:1 548:2 552:1 570:1 572:1 595:1 599:1 600:3 603:1 618:1 628:2 632:1 646:2 656:3 664:1 683:1 694:2 704:5 715:1 716:1 735:1 748:3 756:1 767:2 768:1 781:1 782:1 790:1 795:1 802:1 866:1 881:1 888:4 890:3 898:1 909:1 923:1 924:3 926:1 937:2 949:1 950:2 960:2 964:1 970:1 973:1 1011:1 1014:2 1130:1 1132:3 1135:2 1148:1 1152:1 1167:1 1181:1 1202:1 1248:4 1272:1 1279:2 1280:2 1281:1 1283:2 1295:1 1316:3 1332:1 1342:1 1343:1 1351:2 1353:1 1371:1 1434:1 1437:1 1447:1 1453:2 1454:2 1461:1 1465:1 1487:2 1500:3 1501:1 1506:1 1518:1 1520:1 1522:1 1554:1 1556:2 1558:1 1562:1 1595:1 1604:1 1615:2 1619:1 1633:4 1636:1 1637:3 1647:2 1662:1 1664:1 1689:1 1706:1 1708:1 1720:2 1723:1 1749:1 1752:1 1785:1 1789:3 1824:1 1842:4 1885:1 1960:1 1966:1 1979:2 1981:1 1985:1 1991:1 1993:3 2014:1 2043:2 2047:1 2073:1 2079:1 2091:1 2093:2 2117:1 2131:2 2133:3 2137:1 2140:14 2143:1 2144:1 2147:1 2169:1 2183:1 2187:1 2192:1 2212:1 2225:1 2242:2 2253:2 2263:1 2273:1 2290:1 2300:3 2303:1 2310:1 2312:4 2314:1 2315:1 2318:1 2319:4 2321:1 2322:1 2326:1 2328:1 2329:4 2336:2 2342:2 2344:2 2361:2 2362:1 2363:1 2365:1 2369:1 2371:1 2374:1 2375:3 2377:2 2381:1 2382:1 2388:1 2393:2 2396:2 2397:4 2403:2 2407:1 2412:1 2414:3 2416:1 2423:1 2432:20 2442:1 2450:3 2456:1 2506:4 2517:1 2521:1 2528:1 2541:1 2543:1 2545:1 2547:1 2557:4 2565:1 2580:1 2608:1 2621:2 2645:1 2649:1 2653:1 2662:1 2687:2 2699:4 2701:1 2717:1 2718:1 2720:2 2728:2 2737:1 2754:2 2793:1 2820:2 2827:2 2828:1 2847:1 2873:1 2880:1 2889:1 2895:1 2896:1 2925:1 2931:1 2949:1 2952:6 2956:1 2964:2 2974:1 2975:1 3050:2 3059:1 3063:11 3066:3 3068:1 3088:1 3107:1 3116:1 3119:15 3126:1 3127:2 3143:2 3156:1 3164:3 3182:1 3184:1 3218:1 3221:1 3226:1 3230:1 3317:2 3330:6 3388:4 3401:1 3439:1 3442:1 3447:1 3448:3 3467:1 3479:1 3489:1 3490:1 3494:3 3495:1 3500:1 3528:3 3537:2 3545:1 3563:1 3573:1 3581:1 3595:1 3600:1 3619:1 3719:1 3728:1 3736:4 3791:1 3798:1 3808:1 3828:1 3838:1 3860:1 3861:1 3872:1 3928:2 3949:2 3952:2 3973:2 3982:1 3997:1 4010:1 4019:1 4020:3 4025:2 4056:1 4058:1 4064:2 4065:4 4066:1 4077:1 4078:1 4086:2 4089:2 4115:3 4123:1 4128:1 4129:2 4133:3 4166:1 4167:1 4173:1 4176:1 4181:1 4185:3 4186:1 4197:1 4202:1 4232:1 4242:1 4248:1 4255:1 4260:1 4281:1 4289:1 4301:1 4307:2 4313:2 4328:1 4348:1 4354:2 4376:1 4390:1 4410:1 4419:2 4422:3 4431:3 4437:1 4456:1 4467:2 4492:1 4496:1 4505:1 4526:1 4531:1 4540:2 4549:1 4560:1 4631:2 4634:1 4661:1 4668:1 4677:1 4715:1 4717:2 4754:2 4757:1 4779:1 4789:4 4798:1 4803:1 4848:1 4851:2 4868:1 4890:1 4917:1 4920:1 4921:1 4922:3 4933:1 4946:2 4968:1 4969:3 4992:1 5002:1 5009:1 5012:5 5024:2 5039:1 5041:1 5046:1 5080:1 5098:3 5104:1 5108:1 5116:2 5119:1 5121:1 5136:1 5154:1 5155:1 5204:1 5212:2 5245:1 5249:1 5268:3 5272:1 5282:1 5300:1 5310:14 5314:2 5315:1 5325:1 5335:1 5365:1 5370:1 5380:1 5423:1 5440:1 5444:1 5455:1 5474:1 5478:1 5481:1 5526:2 5531:1 5545:1 5567:1 5571:1 5575:1 5581:3 5582:1 5622:1 5648:2 5651:2 5683:1 5699:1 5719:3 5743:1 5746:2 5779:1 5783:1 5785:1 5790:2 5795:1 5799:1 5800:1 5811:1 5817:1 5831:1 5859:6 5882:1 5887:1 5894:1 5900:1 5912:1 5919:1 5921:1 5925:5 5942:2 5975:1 5992:1 6000:1 6006:1 6008:1 6014:1 6020:2 6027:1 6029:1 6049:1 6053:2 6057:1 6087:1 6090:1 6110:2 6127:1 6195:2 6227:2 6242:1 6266:1 6294:1 6297:1 6334:1 6341:4 6363:2 6378:2 6397:1 6442:2 6444:1 6445:2 6471:1 6480:1 6492:1 6497:1 6555:2 6557:1 6571:1 6575:1 6590:2 6603:3 6612:1 6613:7 6630:3 6645:1 6654:1 6672:2 6698:3 6699:1 6721:1 6763:6 6815:6 6826:2 6827:1 6828:1 6829:1 6832:4 6842:1 6851:1 6875:1 6883:1 6894:3 6916:3 6917:1 6923:1 6931:1 6932:2 6935:1 6938:1 6939:1 6941:1 6942:2 7005:1 7065:1 7071:1 7081:1 7084:2 7090:1 7093:3 7113:6 7128:1 7169:1 7180:1 7197:2 7210:1 7230:1 7234:1 7239:8 7240:1 7268:1 7280:1 7296:1 7302:8 7319:2 7333:1 7345:1 7369:1 7380:1 7388:1 7401:1 7419:1 7421:2 7428:2 7429:1 7434:1 7439:1 7460:1 7463:1 7468:1 7532:1 7550:1 7560:2 7561:1 7575:1 7576:1 7584:1 7651:1 7658:1 7694:1 7706:1 7750:6 7762:1 7763:1 7764:2 7779:1 7781:1 7814:2 7818:1 7823:1 7870:2 7901:1 7906:3 7936:1 7944:1 7945:4 7969:1 7971:1 7978:3 7979:1 7996:1 8006:1 8030:2 8033:2 8055:1 8058:14 8068:3 8088:1 8104:1 8105:1 8126:1 8175:1 8179:1 8185:1 8241:4 8258:2 8289:2 8307:4 8309:1 8327:1 8328:1 8329:2 8332:2 8333:5 8341:1 8351:3 8352:2 8359:6 8360:2 8364:1 8372:1 8377:1 8378:1 8386:20 8410:15 8413:1 8441:1 8452:1 8483:1 8513:1 8544:1 8546:1 8560:1 8569:1 8592:3 8595:3 8624:1 8648:1 8682:1 8705:1 8710:3 8712:1 8761:1 8766:3 8781:1 8819:2 8829:1 8839:1 8841:1 8879:1 8883:1 8889:2 8921:11 8950:2 8976:13 8982:6 8984:2 8985:1 8986:1 9007:1 9020:1 9021:1 9059:1 9073:1 9100:1 9117:1 9120:1 9134:1 9138:4 9183:14 9208:1 9220:8 9235:1 9250:1 9283:1 9285:1 9286:1 9290:2 9296:1 9299:1 9300:1 9301:1 9304:1 9312:1 9315:1 9317:2 9355:1 9380:2 9381:5 9390:1 9395:1 9403:1 9406:1 9417:1 9490:1 9491:2 9508:1 9514:2 9520:1 9561:1 9570:1 9571:1 9597:2 9648:1 9652:2 9658:2 9675:1 9685:2 9701:1 9713:2 9715:1 9724:1 9725:2 9734:3 9740:1 9743:2 9781:1 9785:1 9789:1 9792:1 9799:1 9801:1 9815:2 9850:1 9856:1 9859:1 9910:2 9920:1 9932:1 9934:1 9957:2 9979:1 9985:1 10048:1 10062:1 10095:1 10116:3 10135:1 10178:1 10185:1 10206:1 10211:1 10214:1 10251:3 10255:1 10257:1 10273:1 10283:2 10351:1 10372:3 10374:1 10377:6 10381:32 10383:1 10385:2 10387:1 10392:2 10399:1 10402:1 10406:1 10416:2 10420:1 10430:1 10434:2 10450:4 10491:1 10492:2 10503:1 10510:2 10516:2 10532:1 10545:1 10552:1 10569:1 10608:1 10621:2 10649:1 10654:1 10655:1 10659:2 10678:4 10705:1 10716:1 10751:1 10757:2 10773:1 10776:1 10777:2 10784:1 10793:3 10800:3 10808:1 10822:1 10828:3 10830:1 10836:1 10857:2 10860:20 10886:1 10922:1 10951:4 10971:1 10989:1 11034:1 11094:1 11113:1 11114:2 11126:1 11130:1 11139:1 11178:1 11185:1 11189:1 11203:1 11209:1 11221:1 11257:1 11274:1 11289:1 11295:2 11304:2 11306:1 11313:2 11362:2 11383:1 11388:1 11404:3 11408:1 11453:2 11467:14 11473:1 11484:1 11486:1 11489:1 11498:1 11503:1 11514:1 11515:4 11520:1 11530:1 11553:1 11557:2 11574:4 11585:1 11591:2 11598:1 11608:1 11634:1 11654:1 11655:1 11661:2 11663:1 11693:1 11703:1 11710:8 11714:1 11730:1 11761:1 11766:1 11785:1 11798:1 11820:1 11840:3 11854:1 11860:4 11863:2 11864:1 11866:1 11879:1 11883:1 11886:3 11887:1 11888:2 11893:2 11896:1 11900:1 11929:1 11943:1 12001:1 12025:1 12026:1 12042:4 12048:1 12071:1 12072:1 12088:1 12094:1 12097:1 12098:1 12123:1 12145:1 12167:1 12186:1 12191:1 12213:1 12214:2 12220:2 12225:1 12227:1 12228:1 12258:1 12260:1 12266:1 12289:1 12319:1 12327:1 12373:1 12399:1 12419:1 12420:1 12424:1 12425:1 12427:1 12463:1 12475:1 12476:1 12489:1 12505:1 12530:1 12536:3 12551:4 12564:1 12574:1 12583:1 12595:2 12630:2 12646:3 12648:1 12653:1 12659:1 12665:2 12677:6 12680:2 12686:3 12704:1 12706:6 12716:2 12730:1 12735:1 12739:3 12745:1 12774:1 12778:1 12787:1 12810:3 12838:1 12884:1 12890:1 12983:1 13000:1 13027:1 13034:1 13053:1 13055:2 13062:1 13081:3 13086:1 13091:1 13098:1 13105:2 13142:1 13166:1 13188:1 13191:1 13209:2 13226:2 13230:1 13232:2 13270:1 13276:1 13319:1 13329:1 13337:2 13351:7 13363:1 13364:1 13369:1 13387:2 13392:2 13405:1 13416:1 13457:1 13478:1 13506:1 13537:1 13544:1 13545:2 13550:1 13616:1 13637:1 13640:1 13644:1 13674:2 13698:1 13703:1 13736:9 13754:1 13762:11 13794:1 13797:1 13825:1 13834:1 13835:1 13845:1 13855:1 13858:1 13936:2 13940:1 13987:1 13989:1 13990:2 13993:1 14001:9 14052:1 14061:5 14082:1 14095:1 14103:1 14204:1 14232:1 14236:1 14250:2 14255:1 14257:1 14274:2 14295:1 14301:4 14311:1 14313:1 14314:1 14326:1 14328:2 14330:1 14355:1 14393:1 14395:1 14404:1 14411:1 14417:1 14426:2 14450:2 14460:1 14467:2 14474:1 14482:2 14483:1 14493:1 14514:1 14523:1 14524:1 14526:1 14544:1 14545:1 14549:1 14552:2 14557:2 14563:1 14582:1 14584:1 14626:1 14638:1 14661:1 14662:4 14670:1 14677:4 14713:1 14717:2 14727:1 14736:1 14744:4 14749:1 14752:2 14757:1 14760:1 14799:1 14804:3 14828:1 14837:1 14847:2 14859:2 14883:1 14890:1 14914:1 14915:6 14936:2 14965:1 14972:1 14975:2 14987:1 14990:1 15026:1 15035:1 15059:1 15072:1 15078:1 15114:3 15144:2 15154:2 15195:1 15210:3 15213:2 15219:1 15233:2 15252:1 15256:1 15287:1 15338:1 15344:1 15375:1 15400:1 15433:1 15438:6 15448:1 15455:1 15503:1 15510:1 15512:1 15528:1 15530:3 15535:1 15541:1 15551:2 15553:1 15558:1 15585:1 15604:20 15606:2 15608:1 15659:3 15660:1 15663:1 15710:5 15715:1 15737:1 15744:1 15763:1 15764:1 15822:1 15828:1 15843:1 15852:1 15871:1 15905:1 15925:1 15934:1 15951:1 15975:1 15992:1 15994:1 15997:1 15999:1 16004:1 16006:3 16019:2 16046:1 16100:1 16121:1 16130:1 16132:1 16153:1 16158:2 16162:1 16165:1 16169:1 16175:1 16195:1 16196:3 16201:4 16224:1 16227:1 16236:1 16255:1 16256:6 16259:2 16288:1 16318:1 16330:1 16332:1 16335:1 16351:1 16364:1 16375:11 16450:1 16460:1 16461:1 16469:1 16481:1 16491:1 16506:1 16524:1 16539:4 16594:2 16612:1 16639:1 16642:1 16645:1 16699:2 16709:5 16712:1 16722:2 16732:1 16763:1 16772:1 16780:1 16804:11 16806:1 16817:1 16824:1 16825:1 16838:2 16869:1 16890:1 16913:5 16919:1 16952:1 16958:1 16963:2 16972:1 16982:1 16995:1 17004:1 17038:1 17058:3 17074:1 17075:1 17098:2 17107:1 17127:1 17145:1 17161:1 17163:3 17164:4 17196:1 17200:2 17202:1 17204:2 17214:1 17223:1 17236:1 17248:1 17256:1 17267:2 17290:1 17291:1 17295:1 17302:2 17345:2 17361:2 17373:1 17413:1 17461:5 17482:1 17488:1 17490:1 17495:1 17505:1 17509:1 17514:2 17521:3 17522:1 17559:1 17561:1 17564:1 17572:1 17584:1 17588:1 17590:1 17591:1 17599:1 17604:2 17610:2 17615:1 17658:1 17671:1 17678:2 17679:1 17680:1 17700:1 17717:1 17718:1 17792:1 17802:1 17828:1 17834:1 17835:2 17836:1 17848:2 17867:1 17882:1 17932:1 17933:1 17944:1 17958:1 17991:2 18028:1 18045:1 18068:1 18076:1 18108:1 18110:2 18114:2 18120:6 18167:1 18174:7 18218:1 18223:1 18247:1 18260:1 18286:1 18296:1 18334:1 18344:1 18366:1 18369:1 18373:1 18414:1 18421:1 18425:2 18427:2 18435:11 18438:5 18452:4 18457:2 18472:2 18479:4 18488:2 18515:1 18615:2 18616:1 18632:1 18635:1 18639:2 18643:1 18648:2 18651:1 18661:1 18713:1 18728:2 18743:1 18746:1 18752:2 18759:1 18783:2 18789:3 18793:1 18797:1 18823:1 18833:1 18841:1 18879:1 18885:1 18910:1 18911:1 18918:1 18928:1 18934:2 18951:2 18964:2 18974:2 18984:2 18988:3 19004:1 19008:1 19013:1 19019:1 19021:3 19035:1 19036:1 19054:3 19057:3 19065:1 19066:1 19072:2 19077:3 19113:2 19118:4 19124:1 19130:1 19132:1 19138:1 19155:1 19176:1 19182:1 19217:1 19226:1 19234:1 19266:2 19284:3 19287:1 19288:1 19291:1 19297:2 19341:1 19372:1 19387:1 19390:1 19399:1 19401:2 19414:1 19418:2 19428:1 19443:1 19446:4 19450:1 19460:1 19472:2 19504:6 19511:6 19516:4 19521:1 19522:1 19537:1 19557:1 19558:3 19571:4 19589:1 19636:1 19648:1 19664:1 19670:1 19671:2 19676:1 19757:2 19783:1 19802:6 19812:1 19847:1 19875:1 19879:1 19880:1 19883:1 19906:1 19908:6 19916:1 19925:1 19959:4 19980:20 20029:1 20034:2 20070:2 20083:2 20110:1 20129:4 20131:1 20174:2 20179:1 20268:20 20271:1 20293:2 20304:1 20326:1 20328:2611 20365:1 20372:1 20378:2 20407:1 20411:1 20434:1 20439:1 20468:1 20471:2 20497:3 20503:1 20521:1 20529:1 20530:1 20531:1 20551:1 20557:2 20565:5 20569:1 20576:1 20578:5 20582:1 20584:1 20585:1 20596:1 20603:2 20647:1 20662:1 20665:1 20669:3 20741:1 20743:1 20781:1 20796:1 20802:1 20820:1 20825:1 20828:1 20856:1 20915:1 20977:6 20985:1 21007:1 21021:7 21023:3 21027:1 21044:1 21049:1 21050:1 21072:1 21079:2 21092:1 21095:1 21097:2 21101:1 21117:1 21132:1 21140:1 21145:1 21146:2 21147:1 21156:1 21160:7 21192:2 21216:1 21226:1 21237:4 21262:6 21276:1 21279:1 21291:1 21298:11 21299:2 21308:1 21309:1 21326:2 21350:1 21359:1 21378:17 21391:1 21398:1 21399:1 21417:1 21425:3 21436:2 21442:1 21446:1 21464:1 21476:1 21511:1 21523:1 21524:3 21542:1 21551:5 21580:1 21590:2 21597:3 21598:2 21603:1 21635:2 21652:1 21666:1 21667:1 21676:1 21747:1 21753:1 21755:4 21761:1 21777:1 21798:2 21832:1 21862:1 21863:1 21868:1 21875:3 21879:1 21888:1 21894:1 21905:1 21926:1 21936:1 21971:2 21972:1 21978:1 22001:1 22010:1 22021:1 22036:1 22045:7 22062:1 22064:1 22066:2 22068:1 22084:8 22116:1 22117:1 22149:1 22159:1 22235:2 22240:1 22272:2 22284:1 22287:1 22288:2 22299:1 22307:1 22316:1 22325:4 22337:1 22339:2 22345:4 22367:1 22381:2 22387:1 22411:1 22446:1 22450:4 22456:2 22462:1 22476:1 22482:4 22507:1 22512:1 22513:1 22533:2 22538:1 22577:1 22585:1 22589:1 22604:1 22617:1 22622:1 22630:1 22635:2 22636:1 22643:2 22655:7 22657:1 22674:8 22703:1 22704:1 22716:1 22724:1 22736:1 22747:1 22784:1 22786:1 22810:1 22812:1 22815:4 22819:1 22827:2 22829:1 22838:1 22854:1 22870:1 22876:2 22902:1 22904:2 22939:1 22957:1 22987:1 22988:2 22991:1 22992:1 23010:1 23019:1 23026:1 23034:2 23058:1 23078:1 23084:4 23116:1 23129:1 23147:1 23168:2 23169:1 23178:1 23233:1 23242:1 23245:1 23248:1 23256:1 23257:1 23261:2 23276:3 23280:1 23303:1 23307:1 23317:1 23322:1 23325:1 23331:1 23346:2 23349:1 23363:1 23368:1 23380:1 23382:1 23392:1 23399:1 23422:1 23458:2 23462:3 23476:2 23496:1 23511:2 23519:3 23535:2 23543:2 23554:1 23556:1 23566:1 23571:1 23572:1 23573:2 23583:1 23590:4 23615:1 23616:1 23657:1 23662:1 23723:2 23737:1 23744:1 23763:1 23803:1 23811:1 23826:2 23836:1 23863:4 23870:1 23871:1 23878:1 23880:1 23893:1 23899:1 23921:6 23954:1 23958:1 23965:1 23973:1 23979:1 23981:1 23988:1 24008:1 24009:2 24023:1 24026:2 24032:1 24038:1 24055:1 24057:1 24063:1 24078:1 24101:1 24115:1 24119:1 24144:1 24148:1 24153:1 24159:1 24163:1 24164:1 24172:1 24174:1 24181:1 24183:2 24190:1 24198:1 24225:1 24232:2 24233:2 24236:1 24254:1 24263:2 24272:1 24273:2 24275:1 24276:3 24283:1 24285:2 24301:1 24307:1 24311:1 24316:1 24319:1 24327:1 24332:2 24358:1 24360:1 24372:2 24382:1 24383:2 24386:3 24400:1 24402:1 24407:2 24436:1 24438:1 24450:2 24455:2 24475:1 24486:1 24487:1 24494:1 24495:3 24518:1 24534:1 24554:1 24568:1 24572:1 24573:1 24583:1 24586:4 24590:2 24603:1 24613:2 24618:1 24620:2 24627:1 24633:1 24635:1 24651:1 24657:1 24663:1 24669:1 24676:2 24701:5 24708:1 24716:1 24719:1 24727:2 24735:1 24737:1 24772:1 24773:2 24777:1 24782:1 24786:3 24787:1 24795:2 24805:1 24808:1 24820:1 24839:1 24862:2 24863:1 24935:1 24945:1 24976:1 24981:1 25019:2 25032:1 25033:1 25044:1 25047:1 25056:10 25071:1 25091:5 25097:1 25105:1 25115:6 25148:3 25174:1 25191:1 25192:1 25193:1 25200:1 25202:1 25214:1 25215:1 25253:1 25266:1 25267:1 25271:1 25272:1 25280:2 25301:1 25302:1 25323:2 25330:1 25332:5 25340:1 25352:1 25353:1 25361:1 25364:1 25376:1 25391:1 25392:1 25398:2 25410:1 25413:1 25421:4 25442:1 25450:1 25470:1 25472:2 25476:1 25490:1 25525:2 25545:1 25556:1 25572:1 25577:1 25593:1 25619:1 25630:3 25655:1 25674:2 25689:1 25694:1 25704:1 25709:3 25736:1 25749:1 25766:2 25772:1 25781:1 25788:1 25793:1 25798:4 25802:2 25803:1 25808:1 25835:1 25844:2 25891:1 25907:1 25919:2 25927:1 25928:1 25937:1 25940:1 25961:1 25970:1 25995:1 26000:1 26011:1 26012:1 26014:1 26058:1 26065:1 26089:1 26092:1 26103:1 26107:1 26123:1 26125:3 26128:1 26133:1 26135:2 26136:1 26139:2 26143:1 26147:2 26154:1 26155:1 26158:1 26164:1 26169:1 26178:2 26192:1 26208:2 26213:1 26225:1 26235:2 26248:4 26262:1 26263:1 26268:3 26271:1 26280:1 26281:1 26288:2 26293:1 26305:5 26315:1 26339:3 26389:3 26438:1 26444:1 26447:1 26466:1 26491:2 26552:1 26560:1 26563:2 26589:1 26592:1 26594:1 26595:1 26604:1 26607:1 26608:2 26611:3 26618:1 26630:1 26631:1 26632:1 26642:1 26653:4 26660:1 26690:1 26692:1 26716:1 26727:1 26746:1 26749:1 26755:1 26762:2 26769:1 26781:7 26809:3 26821:2 26863:1 26894:1 26901:2 26904:2 26915:1 26916:1 26929:1 26931:1 26943:1 27033:1 27034:1 27037:2 27039:1 27052:1 27075:1 27088:3 27095:1 27097:1 27104:2 27113:1 27125:1 27138:1 27145:1 27163:1 27164:1 27177:1 27202:1 27209:4 27216:1 27230:2 27232:1 27247:1 27253:1 27264:1 27273:1 27297:3 27302:2 27315:1 27326:1 27338:1 27352:3 27362:1 27375:1 27390:1 27400:1 27402:1 27416:1 27422:1 27426:10 27427:1 27466:1 27472:2 27488:1 27515:2 27546:1 27559:1 27575:1 27582:2 27583:1 27588:2 27604:3 27605:1 27606:2 27614:1 27620:2 27639:1 27662:7 27667:2 27685:2 27690:2 27693:1 27718:2 27737:4 27768:1 27785:1 27788:1 27799:1 27817:5 27822:1 27839:1 27851:7 27892:1 27906:1 27945:3 27950:1 27969:1 27995:1 28000:1 28005:1 28025:1 28040:1 28046:1 28056:1 28072:1 28074:1 28084:2 28094:1 28122:2 28128:1 28139:1 28149:1 28159:1 28160:1 28189:1 28193:1 28197:1 28207:1 28217:2 28256:1 28262:2 28275:1 28301:1 28307:1 28400:1 28419:1 28428:3 28459:1 28474:1 28488:1 28499:1 28502:1 28504:1 28505:1 28527:3 28540:8 28555:1 28561:2 28575:1 28630:1 28658:2 28715:1 28728:1 28744:1 28754:2 28755:7 28764:1 28765:1 28778:6 28783:2 28792:1 28809:1 28823:1 28843:2 28856:1 28858:8 28877:2 28883:1 28900:1 28911:1 28916:1 28929:1 28933:20 28947:1 28960:1 28961:1 28977:1 28984:2 29024:1 29034:2 29039:1 29052:2 29063:1 29078:1 29090:1 29091:1 29126:1 29146:1 29154:1 29161:1 29182:1 29193:1 29221:1 29231:1 29239:4 29240:1 29268:1 29272:3 29292:1 29314:1 29339:2 29348:1 29349:2 29357:1 29387:2 29396:2 29404:1 29413:1 29422:1 29429:1 29430:2 29431:3 29444:1 29457:4 29465:1 29471:2 29490:1 29495:2 29519:1 29535:1 29537:1 29543:2 29546:1 29551:1 29557:3 29560:1 29602:1 29650:1 29652:2 29664:1 29675:1 29684:1 29708:1 29730:1 29742:1 29748:1 29749:1 29759:1 29761:1 29762:1 29763:1 29764:1 29775:1 29795:2 29798:1 29816:6 29855:1 29865:1 29866:2 29890:1 29901:1 29902:1 29930:1 29931:1 29935:1 29988:1 29990:1 29998:1 30003:1 30013:1 30036:1 30047:1 30056:2 30084:3 30088:1 30113:3 30123:1 30137:12 30138:1 30145:1 30157:1 30162:3 30173:2 30180:2 30183:1 30184:2 30225:2 30226:1 30239:2 30241:8 30253:1 30263:1 30264:2 30277:2 30279:1 30280:1 30284:1 30294:1 30312:1 30330:3 30334:1 30335:2 30339:2 30362:1 30385:1 30394:1 30396:6 30438:1 30447:1 30449:2 30459:1 30462:4 30466:1 30468:1 30508:1 30538:1 30541:1 30549:1 30551:1 30561:2 30573:1 30580:1 30586:1 30592:1 30607:1 30637:1 30646:1 30653:1 30654:1 30678:1 30679:1 30680:1 30682:2 30686:2 30716:2 30725:2 30760:3 30787:1 30795:2 30815:4 30823:1 30854:3 30868:1 30871:1 30872:1 30897:2 30898:1 30901:1 30902:1 30903:1 30906:1 30927:1 30950:2 30952:1 30962:1 30998:1 31028:1 31032:1 31034:1 31037:2 31060:1 31076:1 31089:4 31095:1 31098:4 31105:2 31115:1 31168:1 31184:2 31210:1 31215:1 31233:4 31258:1 31316:1 31331:1 31341:1 31342:1 31353:1 31355:3 31359:1 31377:1 31378:1 31383:1 31407:2 31421:1 31427:2 31432:1 31446:1 31447:2 31462:1 31478:2 31481:1 31489:4 31497:1 31505:4 31507:1 31508:1 31510:1 31514:1 31548:1 31550:1 31559:1 31567:1 31615:2 18 6:1 14:1 18:1 34:1 55:1 69:1 75:1 80:1 123:1 188:4 210:2 214:1 216:2 219:1 237:2 269:2 273:2 283:2 302:1 323:2 339:4 352:1 358:1 359:1 372:7 383:1 384:1 389:1 394:1 395:1 448:1 449:3 454:1 466:1 469:1 490:1 501:1 538:1 548:2 552:1 570:1 572:1 595:1 599:1 600:3 603:1 618:1 628:3 632:1 646:2 656:3 664:1 683:1 694:2 704:5 715:1 716:1 735:1 748:3 756:1 767:2 768:1 781:1 782:1 790:1 795:1 802:1 866:1 881:1 888:4 890:3 898:1 909:1 923:1 924:3 926:1 937:2 949:1 950:2 960:2 964:1 970:1 973:1 1011:1 1014:2 1130:1 1132:3 1135:2 1148:1 1152:1 1167:1 1181:1 1202:1 1248:4 1272:1 1279:2 1280:2 1281:1 1283:2 1295:1 1316:3 1332:1 1342:1 1343:1 1351:2 1353:1 1371:1 1434:1 1437:1 1444:1 1447:1 1453:2 1454:2 1461:1 1465:1 1487:2 1500:3 1501:1 1506:1 1518:1 1520:1 1522:1 1554:1 1556:2 1558:1 1562:1 1595:1 1604:1 1615:2 1619:1 1633:4 1636:1 1637:3 1647:2 1662:1 1664:1 1689:1 1706:1 1708:2 1720:2 1723:1 1749:1 1752:1 1785:1 1789:3 1824:1 1842:4 1885:1 1960:1 1963:1 1966:1 1979:2 1981:2 1985:1 1991:1 1993:3 2014:1 2043:2 2047:1 2073:1 2079:1 2085:1 2091:1 2093:2 2117:1 2131:2 2133:3 2137:1 2140:14 2143:1 2144:1 2147:1 2169:1 2183:1 2187:1 2192:1 2212:1 2225:1 2242:2 2253:2 2263:1 2273:1 2290:1 2300:3 2303:1 2310:1 2312:5 2314:1 2315:1 2318:1 2319:4 2321:1 2322:1 2326:1 2328:1 2329:4 2336:2 2342:2 2344:2 2361:2 2362:1 2363:1 2365:1 2369:1 2371:1 2374:1 2375:3 2377:2 2381:2 2382:1 2388:1 2393:2 2396:2 2397:4 2403:2 2407:1 2412:1 2414:3 2416:1 2423:1 2432:20 2442:1 2450:3 2456:1 2506:4 2517:1 2521:1 2528:1 2541:1 2543:1 2545:1 2547:1 2557:4 2565:1 2580:1 2608:1 2621:2 2645:1 2649:1 2653:1 2662:1 2687:2 2699:4 2701:1 2717:1 2718:1 2720:2 2728:2 2737:1 2754:2 2793:1 2820:2 2827:2 2828:1 2847:1 2873:1 2880:1 2889:1 2895:1 2896:1 2925:1 2931:1 2949:1 2952:6 2956:1 2964:2 2974:1 2975:1 3040:1 3050:2 3059:1 3063:11 3066:3 3068:1 3088:1 3107:1 3116:1 3119:16 3126:1 3127:2 3143:2 3156:1 3164:3 3182:1 3184:1 3218:1 3221:1 3226:1 3230:1 3317:2 3330:6 3388:4 3401:1 3439:1 3442:1 3447:1 3448:3 3467:1 3479:1 3489:1 3490:1 3494:3 3495:1 3500:1 3528:3 3537:2 3545:1 3563:1 3573:1 3581:1 3595:1 3600:1 3619:1 3719:1 3728:1 3736:4 3791:1 3798:1 3808:1 3828:1 3838:1 3860:1 3861:1 3872:1 3928:2 3949:2 3952:3 3973:2 3982:1 3997:1 4010:1 4019:1 4020:3 4025:2 4056:1 4058:1 4063:1 4064:3 4065:4 4066:1 4077:1 4078:1 4086:2 4089:2 4115:3 4123:1 4128:1 4129:2 4133:3 4166:1 4167:1 4173:1 4176:1 4181:1 4185:3 4186:1 4197:1 4202:1 4232:1 4242:1 4248:1 4255:1 4260:1 4281:1 4289:1 4301:1 4307:2 4313:2 4328:1 4348:1 4354:2 4376:1 4390:1 4410:1 4419:2 4422:3 4431:3 4437:1 4456:1 4467:2 4492:1 4496:1 4505:1 4526:1 4531:1 4540:2 4549:1 4560:1 4609:1 4631:2 4634:1 4661:1 4668:1 4677:1 4715:1 4717:2 4754:2 4757:1 4779:1 4789:5 4798:1 4803:1 4848:1 4851:2 4868:1 4890:1 4917:1 4920:1 4921:1 4922:3 4928:1 4933:1 4946:2 4968:1 4969:3 4992:1 5002:1 5009:1 5012:5 5024:3 5039:1 5041:1 5046:1 5080:1 5082:1 5098:3 5104:1 5108:1 5116:2 5119:1 5121:1 5136:1 5154:1 5155:1 5204:1 5212:2 5245:1 5249:1 5268:3 5272:1 5282:1 5300:1 5310:14 5314:2 5315:1 5325:1 5335:1 5365:1 5370:1 5380:1 5423:1 5440:1 5444:1 5455:1 5474:1 5478:1 5481:1 5526:2 5531:1 5545:1 5546:1 5567:1 5571:1 5575:1 5581:3 5582:1 5622:1 5648:2 5651:2 5683:1 5699:1 5719:3 5743:1 5746:2 5759:1 5779:1 5783:1 5785:1 5790:2 5795:1 5799:1 5800:1 5811:1 5817:1 5831:1 5859:6 5882:1 5887:1 5894:1 5900:1 5912:1 5919:1 5921:1 5925:5 5942:2 5975:1 5992:1 6000:1 6006:1 6008:1 6014:1 6020:2 6027:1 6029:1 6049:1 6053:2 6057:1 6087:1 6090:1 6110:2 6127:1 6195:2 6227:2 6242:1 6266:1 6294:1 6297:1 6334:1 6341:4 6363:2 6378:2 6397:1 6442:2 6444:1 6445:2 6471:1 6480:1 6492:1 6497:1 6555:2 6557:1 6571:1 6575:1 6590:2 6603:3 6612:1 6613:7 6630:3 6645:1 6654:1 6672:2 6698:3 6699:1 6721:1 6763:6 6815:6 6826:2 6827:1 6828:1 6829:1 6832:5 6842:1 6851:1 6875:1 6883:1 6894:3 6916:3 6917:1 6923:1 6931:1 6932:2 6935:1 6938:1 6939:1 6941:1 6942:2 7005:1 7065:1 7071:1 7081:1 7084:2 7090:1 7093:3 7113:6 7128:1 7169:1 7180:1 7197:2 7210:1 7230:1 7234:1 7239:8 7240:1 7268:1 7280:1 7296:1 7302:8 7319:2 7333:1 7345:1 7369:1 7380:1 7388:1 7401:1 7419:1 7421:2 7428:2 7429:1 7434:2 7439:1 7460:1 7463:1 7468:1 7532:1 7550:1 7560:2 7561:1 7575:1 7576:1 7584:1 7651:1 7658:1 7694:1 7706:1 7750:6 7762:1 7763:1 7764:2 7779:1 7781:1 7814:2 7818:1 7823:1 7870:2 7901:1 7906:3 7936:1 7944:1 7945:4 7969:1 7971:1 7978:3 7979:1 7996:1 8006:1 8030:2 8033:2 8055:1 8058:14 8068:3 8088:1 8104:1 8105:1 8126:1 8175:1 8179:1 8185:1 8241:4 8258:2 8289:2 8307:4 8309:1 8327:1 8328:1 8329:2 8332:2 8333:5 8341:1 8351:3 8352:2 8359:6 8360:2 8364:1 8372:1 8377:1 8378:1 8386:21 8410:16 8413:1 8441:1 8452:1 8483:1 8513:1 8544:1 8546:1 8560:1 8569:1 8592:3 8595:3 8624:1 8648:1 8682:1 8705:2 8710:3 8712:1 8761:1 8766:3 8781:1 8819:2 8829:1 8839:1 8841:1 8879:1 8883:1 8889:2 8921:11 8950:2 8976:13 8982:6 8984:2 8985:1 8986:1 9007:1 9020:1 9021:1 9059:1 9073:1 9100:1 9117:1 9120:1 9134:1 9138:4 9183:14 9208:1 9220:8 9235:1 9250:1 9283:1 9285:1 9286:1 9290:2 9296:1 9299:1 9300:1 9301:1 9304:1 9312:1 9315:1 9317:2 9355:1 9380:2 9381:6 9390:1 9395:1 9403:1 9406:1 9417:1 9490:1 9491:2 9508:1 9514:2 9520:1 9561:1 9570:1 9571:1 9597:2 9648:1 9652:2 9658:2 9675:1 9685:2 9701:1 9713:2 9715:1 9724:1 9725:2 9734:3 9740:1 9743:2 9781:1 9785:1 9789:1 9792:1 9799:1 9801:1 9815:2 9844:1 9850:1 9856:1 9859:1 9910:2 9911:1 9920:1 9932:1 9934:1 9957:2 9979:1 9985:1 10048:1 10062:1 10095:1 10116:3 10135:1 10178:1 10185:1 10206:1 10211:1 10214:1 10251:3 10255:1 10257:1 10273:1 10283:2 10342:1 10351:1 10372:3 10374:1 10377:6 10381:32 10383:1 10385:3 10387:1 10392:2 10399:1 10402:1 10406:1 10416:3 10420:1 10423:1 10430:1 10434:2 10450:4 10491:1 10492:2 10503:1 10510:2 10516:2 10532:1 10545:1 10552:1 10569:1 10608:1 10621:2 10649:1 10654:1 10655:1 10659:2 10678:4 10705:1 10716:1 10751:1 10757:2 10773:1 10776:1 10777:2 10784:1 10793:3 10800:3 10808:1 10822:1 10828:3 10830:1 10836:1 10857:2 10860:20 10886:1 10922:1 10951:4 10971:1 10989:1 11034:1 11094:1 11113:1 11114:2 11126:1 11130:1 11139:1 11178:1 11185:1 11189:1 11203:1 11209:1 11221:1 11257:1 11274:1 11289:1 11295:2 11304:2 11306:1 11313:2 11362:2 11383:1 11388:1 11404:3 11408:1 11453:2 11467:14 11473:1 11484:1 11486:1 11489:1 11498:1 11503:1 11514:1 11515:4 11520:1 11530:1 11553:1 11557:2 11574:4 11585:1 11591:2 11598:1 11608:1 11634:1 11654:1 11655:1 11661:2 11663:1 11693:1 11703:1 11710:8 11714:1 11728:1 11730:1 11761:1 11766:1 11785:1 11798:1 11820:1 11840:3 11854:1 11860:4 11863:2 11864:1 11866:1 11879:1 11883:1 11886:3 11887:1 11888:2 11893:2 11896:1 11900:1 11929:1 11943:1 12001:1 12025:1 12026:1 12042:4 12048:1 12071:1 12072:1 12088:1 12094:1 12097:1 12098:1 12123:1 12145:1 12167:1 12174:1 12186:1 12191:1 12213:1 12214:2 12220:2 12225:1 12227:1 12228:1 12258:1 12260:1 12266:1 12289:1 12319:1 12327:1 12373:1 12399:1 12419:1 12420:1 12424:1 12425:1 12427:1 12463:1 12475:1 12476:1 12489:1 12505:1 12530:1 12536:3 12551:4 12564:2 12574:1 12583:1 12595:2 12630:2 12646:3 12648:1 12653:1 12659:1 12665:2 12677:6 12680:2 12686:3 12704:1 12706:6 12716:2 12730:1 12735:1 12739:3 12745:1 12774:1 12778:1 12787:1 12810:3 12838:1 12884:1 12890:1 12983:1 13000:1 13027:1 13034:1 13053:1 13055:2 13061:1 13062:1 13081:3 13086:1 13091:1 13098:1 13105:2 13142:1 13166:1 13188:1 13191:1 13209:2 13226:2 13230:1 13232:2 13270:1 13276:1 13319:1 13329:1 13337:2 13351:7 13363:1 13364:1 13369:1 13387:2 13392:2 13405:1 13416:1 13457:1 13478:1 13506:1 13537:1 13544:1 13545:2 13550:1 13616:1 13637:1 13640:1 13644:1 13674:2 13698:1 13703:1 13736:9 13754:1 13762:11 13794:1 13797:1 13825:1 13834:1 13835:1 13845:1 13855:1 13858:1 13936:2 13940:1 13941:1 13987:1 13989:1 13990:2 13993:1 14001:9 14052:1 14061:5 14082:1 14095:1 14103:1 14204:1 14232:1 14236:1 14250:2 14255:1 14257:1 14274:2 14295:1 14301:4 14311:1 14313:1 14314:1 14326:1 14328:2 14330:1 14355:1 14393:1 14395:1 14404:1 14411:1 14417:1 14426:2 14450:2 14460:1 14467:2 14474:1 14482:2 14483:1 14493:1 14514:1 14523:1 14524:1 14526:1 14544:1 14545:1 14549:1 14552:2 14557:2 14563:1 14582:1 14584:1 14626:1 14638:1 14661:1 14662:4 14670:1 14677:4 14713:1 14717:2 14727:1 14736:1 14744:4 14749:1 14752:2 14757:1 14760:1 14799:1 14804:3 14828:1 14837:1 14847:2 14859:2 14883:1 14890:1 14914:1 14915:6 14936:2 14965:1 14972:1 14975:2 14987:1 14990:1 15026:1 15035:1 15059:1 15072:1 15078:1 15114:3 15144:2 15154:2 15195:1 15210:3 15213:2 15219:1 15233:2 15252:1 15256:1 15274:1 15287:1 15338:1 15344:1 15375:1 15400:1 15433:1 15438:6 15448:1 15455:1 15503:1 15510:1 15512:1 15528:1 15530:3 15535:1 15541:1 15551:2 15553:1 15558:1 15585:1 15604:20 15606:2 15608:1 15659:3 15660:1 15663:1 15710:5 15715:1 15737:1 15744:1 15763:1 15764:1 15822:1 15828:1 15843:1 15852:1 15871:1 15905:1 15925:1 15934:1 15951:1 15975:1 15992:1 15994:1 15997:1 15999:1 16004:1 16006:3 16019:2 16046:1 16100:1 16121:1 16130:1 16132:1 16153:1 16158:2 16162:1 16165:1 16169:1 16175:1 16195:1 16196:3 16201:4 16224:1 16227:1 16236:1 16255:1 16256:6 16259:2 16274:1 16288:1 16318:1 16330:1 16332:1 16335:1 16351:1 16364:1 16375:12 16450:1 16460:1 16461:1 16469:1 16481:1 16491:1 16506:1 16524:1 16539:4 16589:1 16594:2 16612:1 16639:1 16642:1 16645:1 16663:1 16699:2 16702:1 16709:5 16712:1 16722:2 16732:1 16763:1 16772:1 16780:1 16804:12 16806:1 16817:1 16824:1 16825:1 16838:2 16869:1 16890:1 16913:5 16919:1 16952:1 16958:1 16963:2 16972:1 16982:1 16995:1 17004:1 17038:1 17058:3 17074:1 17075:1 17098:2 17107:1 17127:1 17145:1 17161:1 17163:3 17164:4 17196:1 17200:2 17202:1 17204:2 17214:1 17223:1 17236:1 17248:1 17256:1 17267:2 17290:1 17291:1 17295:1 17302:2 17345:2 17361:2 17373:1 17413:1 17461:6 17482:1 17488:1 17490:2 17495:1 17505:1 17509:1 17514:2 17521:3 17522:1 17559:1 17561:1 17564:1 17572:1 17584:1 17588:1 17590:1 17591:1 17599:1 17604:2 17610:2 17615:1 17658:1 17671:1 17678:2 17679:1 17680:1 17700:1 17717:1 17718:1 17792:2 17802:1 17828:1 17834:1 17835:2 17836:1 17848:2 17867:1 17882:1 17932:1 17933:1 17944:1 17958:1 17991:2 18028:1 18045:1 18068:1 18076:1 18108:1 18110:2 18114:2 18120:6 18167:1 18174:8 18218:1 18223:1 18247:1 18260:1 18286:2 18296:1 18334:1 18344:1 18366:1 18369:1 18373:1 18414:1 18415:1 18421:1 18424:1 18425:2 18427:2 18435:12 18438:5 18452:5 18457:2 18472:2 18479:4 18488:2 18515:1 18579:1 18615:2 18616:1 18632:1 18635:1 18639:2 18643:1 18648:2 18651:1 18661:1 18713:1 18728:2 18743:1 18746:1 18752:2 18759:1 18783:2 18789:3 18793:1 18797:1 18823:1 18833:1 18841:1 18879:1 18885:1 18910:1 18911:1 18918:1 18928:1 18934:2 18951:2 18964:2 18974:2 18984:2 18988:3 19004:1 19008:1 19013:1 19019:1 19021:3 19026:1 19035:1 19036:1 19054:3 19057:3 19065:1 19066:1 19072:2 19077:3 19113:2 19118:4 19124:1 19130:1 19132:1 19138:1 19155:1 19176:1 19182:1 19217:1 19226:1 19234:1 19266:2 19284:3 19287:1 19288:1 19291:1 19297:2 19341:1 19372:1 19387:1 19390:1 19399:1 19401:2 19414:1 19418:2 19428:1 19443:1 19446:4 19450:1 19460:1 19472:2 19504:6 19511:6 19516:5 19521:1 19522:1 19537:1 19557:1 19558:4 19571:4 19589:1 19636:1 19648:1 19664:1 19670:1 19671:2 19676:1 19757:2 19783:1 19802:6 19812:1 19847:1 19875:1 19879:1 19880:1 19883:1 19906:1 19908:6 19916:1 19925:1 19959:4 19980:20 20029:1 20034:2 20070:2 20083:2 20110:1 20129:4 20131:1 20174:2 20179:1 20268:20 20271:1 20293:2 20304:1 20326:1 20328:2639 20365:1 20372:1 20378:2 20407:1 20411:1 20434:1 20439:1 20468:1 20471:2 20497:3 20503:1 20521:1 20529:1 20530:1 20531:1 20551:1 20557:2 20565:5 20569:1 20576:1 20578:5 20582:1 20584:1 20585:1 20596:1 20603:2 20647:1 20662:1 20665:1 20669:3 20741:1 20743:1 20781:1 20796:1 20802:1 20820:1 20825:1 20828:1 20856:1 20915:1 20977:6 20985:1 21007:1 21021:7 21023:3 21027:1 21044:1 21049:1 21050:1 21072:1 21079:2 21092:1 21095:1 21097:2 21101:1 21117:1 21132:1 21140:1 21145:1 21146:2 21147:1 21156:1 21160:7 21192:2 21216:1 21226:1 21237:4 21262:6 21276:1 21279:1 21291:1 21298:12 21299:2 21308:1 21309:1 21326:2 21350:1 21359:1 21378:18 21391:1 21398:2 21399:1 21417:1 21425:3 21436:2 21442:1 21446:1 21464:1 21476:1 21511:1 21523:1 21524:3 21542:1 21551:5 21573:1 21580:1 21590:2 21597:3 21598:2 21603:1 21635:2 21652:1 21666:1 21667:1 21676:1 21747:1 21753:1 21755:4 21761:1 21777:1 21798:2 21832:1 21862:1 21863:1 21868:1 21875:3 21879:1 21888:1 21894:1 21905:1 21926:1 21936:1 21971:2 21972:1 21978:1 22001:1 22010:1 22021:1 22036:1 22045:8 22062:1 22064:1 22066:2 22068:1 22084:8 22116:1 22117:1 22149:1 22159:1 22235:2 22240:1 22272:2 22284:1 22287:1 22288:2 22299:1 22307:1 22316:1 22325:4 22337:1 22339:2 22345:4 22367:1 22381:2 22387:1 22411:1 22446:1 22450:4 22456:2 22462:1 22476:1 22482:4 22507:1 22512:1 22513:1 22533:2 22538:1 22577:1 22585:1 22589:1 22604:1 22617:1 22622:1 22630:1 22635:2 22636:1 22643:2 22655:7 22657:1 22674:9 22703:1 22704:1 22716:1 22724:1 22736:1 22747:1 22784:1 22786:1 22810:1 22812:1 22815:4 22819:1 22827:2 22829:1 22838:1 22854:1 22868:1 22870:1 22876:2 22902:1 22904:2 22939:1 22957:1 22987:1 22988:2 22991:1 22992:1 23010:1 23019:1 23026:1 23034:2 23037:1 23058:1 23078:1 23084:4 23116:1 23129:1 23147:1 23168:2 23169:1 23178:1 23233:1 23242:1 23245:1 23248:1 23256:1 23257:1 23261:2 23276:3 23280:1 23303:1 23307:1 23317:1 23322:1 23325:1 23331:1 23346:2 23349:1 23363:1 23368:1 23380:1 23382:1 23392:1 23399:1 23422:1 23458:2 23462:3 23476:2 23496:1 23511:2 23519:3 23535:2 23543:2 23554:1 23556:1 23566:1 23571:1 23572:1 23573:2 23583:1 23590:4 23615:1 23616:1 23657:1 23662:1 23723:2 23737:1 23744:1 23763:1 23803:1 23811:1 23826:2 23836:1 23863:4 23870:1 23871:1 23878:1 23880:1 23893:1 23899:1 23912:1 23921:6 23954:1 23958:1 23965:1 23973:1 23979:1 23981:1 23988:1 24008:1 24009:2 24023:1 24026:2 24032:1 24038:1 24055:1 24057:1 24063:1 24078:1 24101:1 24115:1 24119:1 24144:1 24148:1 24153:1 24159:1 24163:1 24164:1 24172:1 24174:1 24181:1 24183:2 24190:1 24198:1 24225:1 24232:2 24233:2 24236:1 24254:1 24263:2 24272:1 24273:2 24275:1 24276:3 24283:1 24285:2 24301:1 24307:1 24311:1 24316:1 24319:1 24327:1 24332:2 24358:1 24360:1 24372:2 24382:1 24383:2 24386:3 24400:1 24402:1 24407:2 24436:1 24438:1 24450:2 24455:2 24475:1 24486:1 24487:1 24494:1 24495:3 24518:1 24534:1 24554:1 24568:1 24572:1 24573:1 24583:1 24586:4 24590:2 24603:1 24613:2 24618:1 24620:2 24627:1 24633:1 24635:1 24651:1 24657:1 24663:1 24669:1 24676:2 24701:5 24708:1 24716:1 24719:1 24727:2 24735:1 24737:1 24772:1 24773:2 24777:1 24782:1 24786:3 24787:1 24795:2 24805:1 24808:1 24820:1 24839:1 24862:2 24863:1 24935:1 24945:1 24976:1 24981:1 25019:2 25032:1 25033:1 25044:1 25047:1 25056:11 25071:1 25091:5 25097:1 25105:1 25115:6 25148:3 25174:1 25191:2 25192:1 25193:1 25200:1 25202:1 25214:1 25215:1 25253:1 25266:1 25267:1 25271:1 25272:1 25280:2 25301:1 25302:1 25323:2 25330:1 25332:5 25340:1 25352:1 25353:1 25361:1 25364:1 25376:1 25391:1 25392:1 25398:2 25410:1 25413:1 25421:4 25442:1 25450:1 25470:1 25472:2 25476:1 25490:1 25525:2 25545:1 25556:1 25572:1 25577:1 25593:1 25619:1 25630:3 25655:1 25674:3 25689:1 25694:1 25704:1 25709:3 25736:1 25749:1 25766:2 25772:1 25781:1 25788:1 25793:1 25798:4 25802:2 25803:1 25808:1 25835:1 25844:2 25891:1 25907:1 25919:2 25927:1 25928:1 25937:1 25940:1 25961:1 25970:1 25995:1 26000:1 26011:1 26012:1 26014:1 26058:1 26065:1 26089:1 26092:1 26103:1 26107:1 26123:1 26125:3 26128:1 26133:1 26135:2 26136:1 26139:2 26143:1 26147:2 26154:1 26155:1 26158:1 26164:1 26169:1 26178:2 26192:1 26208:2 26213:1 26225:1 26235:2 26248:4 26262:1 26263:1 26268:3 26271:1 26280:1 26281:1 26288:2 26293:1 26305:5 26315:1 26339:3 26389:3 26438:1 26444:1 26447:1 26466:1 26491:2 26552:1 26553:1 26560:1 26563:2 26589:1 26592:1 26594:1 26595:1 26604:1 26607:1 26608:2 26611:3 26618:1 26630:1 26631:1 26632:1 26642:1 26653:4 26660:1 26690:1 26692:1 26696:1 26716:1 26727:1 26746:1 26749:1 26755:1 26762:2 26769:1 26781:7 26809:3 26821:2 26863:1 26894:1 26901:2 26904:2 26915:1 26916:1 26929:1 26931:1 26943:1 27033:1 27034:1 27037:2 27039:1 27052:1 27075:2 27088:3 27095:1 27097:1 27104:2 27113:1 27125:1 27138:1 27145:1 27163:1 27164:1 27177:1 27202:1 27209:4 27216:1 27230:2 27232:1 27247:1 27253:1 27264:1 27273:1 27297:3 27302:2 27315:1 27326:1 27338:1 27352:3 27362:1 27375:1 27390:1 27400:1 27402:1 27416:1 27422:1 27426:11 27427:1 27466:1 27472:2 27488:1 27515:2 27546:1 27559:1 27575:1 27582:2 27583:1 27588:2 27604:3 27605:1 27606:2 27614:1 27620:2 27639:1 27662:7 27667:2 27685:2 27690:2 27693:1 27718:2 27737:4 27768:1 27785:1 27788:1 27799:1 27817:5 27822:1 27839:1 27851:7 27892:1 27906:1 27945:3 27950:1 27969:1 27995:1 28000:1 28005:1 28025:1 28040:1 28046:1 28056:1 28072:1 28074:1 28084:2 28094:1 28122:2 28128:1 28139:1 28149:1 28159:1 28160:1 28189:1 28193:1 28197:1 28207:1 28217:2 28256:1 28262:2 28275:1 28301:1 28307:1 28400:1 28419:1 28428:3 28459:1 28474:1 28488:1 28499:1 28502:1 28504:1 28505:1 28527:3 28540:8 28555:1 28561:2 28575:1 28630:1 28658:2 28715:1 28728:1 28744:1 28754:2 28755:7 28764:1 28765:1 28778:6 28783:2 28792:1 28809:1 28823:1 28843:2 28856:1 28858:8 28877:2 28883:1 28900:1 28911:1 28916:1 28929:1 28933:20 28947:1 28960:1 28961:1 28977:1 28984:2 29024:1 29034:2 29039:1 29052:2 29063:1 29078:1 29090:1 29091:1 29126:1 29146:1 29154:1 29161:1 29182:1 29193:1 29221:1 29231:1 29239:4 29240:1 29268:1 29272:3 29292:1 29314:1 29339:2 29348:1 29349:2 29357:1 29387:2 29396:2 29404:1 29413:1 29422:1 29429:1 29430:2 29431:3 29444:1 29457:4 29465:1 29471:3 29490:1 29495:2 29519:1 29535:1 29537:1 29543:2 29546:1 29551:1 29557:3 29560:1 29602:1 29650:1 29652:2 29664:1 29675:1 29684:1 29708:1 29730:1 29742:1 29748:1 29749:1 29759:1 29761:1 29762:1 29763:1 29764:1 29775:1 29795:2 29798:1 29816:6 29855:1 29865:1 29866:2 29890:1 29901:1 29902:1 29930:1 29931:1 29932:1 29935:1 29988:1 29990:1 29998:1 30003:1 30013:1 30036:1 30047:1 30056:2 30084:3 30088:1 30113:3 30123:1 30137:12 30138:1 30145:1 30157:1 30162:3 30173:2 30180:2 30183:1 30184:2 30225:2 30226:1 30239:3 30241:8 30253:1 30263:1 30264:2 30277:2 30279:1 30280:1 30284:1 30294:1 30312:1 30330:3 30334:1 30335:2 30339:3 30362:1 30385:1 30394:1 30396:6 30438:1 30447:1 30449:2 30459:1 30462:4 30466:1 30468:1 30508:1 30538:1 30541:1 30549:1 30551:1 30561:2 30573:1 30580:1 30586:1 30592:1 30607:1 30637:1 30646:1 30653:1 30654:1 30678:1 30679:1 30680:1 30682:2 30686:2 30716:2 30725:2 30760:3 30787:1 30795:2 30815:4 30823:1 30854:3 30868:1 30871:1 30872:1 30897:2 30898:1 30901:1 30902:1 30903:1 30906:1 30927:1 30950:2 30952:1 30962:1 30998:1 31028:1 31032:1 31034:1 31037:2 31060:1 31076:1 31089:4 31095:1 31098:4 31105:2 31115:1 31168:1 31184:2 31210:1 31215:1 31233:4 31258:1 31316:1 31331:1 31341:1 31342:1 31353:1 31355:3 31359:1 31377:1 31378:1 31383:1 31407:3 31421:1 31427:2 31432:1 31446:1 31447:2 31462:1 31478:2 31481:1 31489:5 31495:1 31497:1 31505:5 31507:1 31508:1 31510:1 31514:1 31548:1 31550:1 31559:1 31567:1 31615:2 18 6:1 8:1 14:1 18:1 21:1 34:1 55:1 69:1 75:1 80:1 123:1 188:4 210:2 214:1 216:2 219:1 237:2 269:2 273:2 283:2 302:1 323:2 339:4 352:1 358:1 359:1 372:7 383:1 384:1 389:1 394:1 395:1 448:1 449:3 454:1 466:1 469:1 490:1 501:1 538:1 548:2 552:1 570:1 572:1 595:1 599:1 600:3 603:1 618:1 628:3 632:1 646:2 656:3 664:1 683:1 694:2 704:5 715:1 716:1 735:1 748:3 756:1 767:2 768:1 781:1 782:1 790:1 795:1 802:1 866:1 881:1 888:4 890:3 898:1 909:1 923:1 924:3 926:1 937:2 949:1 950:2 960:2 964:1 970:1 973:1 992:1 1011:1 1014:2 1050:1 1130:1 1132:3 1135:2 1148:1 1152:1 1167:1 1181:1 1202:1 1248:4 1270:2 1272:1 1279:2 1280:2 1281:1 1283:2 1295:1 1316:3 1332:1 1342:1 1343:1 1351:2 1353:1 1371:1 1434:1 1437:1 1444:1 1447:1 1453:2 1454:2 1461:1 1465:1 1487:2 1500:3 1501:1 1506:1 1518:1 1520:1 1522:1 1554:1 1556:2 1558:1 1562:1 1595:1 1604:1 1615:2 1619:1 1633:4 1636:1 1637:3 1647:2 1662:1 1664:1 1689:1 1706:1 1708:2 1720:2 1723:1 1749:1 1752:1 1785:1 1789:3 1824:1 1842:4 1866:1 1885:1 1960:1 1963:1 1966:1 1979:2 1981:2 1985:1 1991:1 1993:3 2014:1 2043:2 2047:1 2073:1 2079:1 2085:1 2091:1 2093:2 2117:1 2131:2 2133:3 2137:1 2140:15 2143:1 2144:1 2147:1 2169:1 2183:1 2187:1 2192:1 2212:1 2225:1 2242:2 2253:2 2263:1 2273:1 2290:1 2300:3 2303:1 2310:1 2312:5 2314:1 2315:1 2318:1 2319:4 2321:1 2322:1 2326:1 2328:1 2329:4 2336:2 2342:2 2344:2 2361:2 2362:1 2363:1 2365:1 2369:1 2371:1 2374:1 2375:3 2377:2 2381:2 2382:1 2388:1 2393:2 2396:2 2397:4 2403:2 2407:1 2410:1 2412:1 2414:3 2416:1 2423:1 2432:20 2442:1 2450:3 2456:1 2506:4 2517:1 2521:1 2528:1 2541:1 2543:1 2545:1 2547:1 2557:4 2565:1 2580:1 2608:1 2621:2 2645:1 2649:1 2653:1 2662:1 2687:2 2699:5 2701:1 2717:1 2718:1 2720:2 2728:3 2737:1 2754:2 2793:1 2820:2 2827:2 2828:1 2836:1 2847:1 2850:1 2873:1 2880:1 2883:1 2889:1 2895:1 2896:1 2925:1 2931:1 2949:1 2952:6 2956:1 2964:2 2974:1 2975:1 3040:1 3050:2 3059:1 3063:11 3066:3 3068:1 3088:1 3107:1 3116:1 3119:18 3126:1 3127:2 3143:2 3148:1 3156:1 3164:3 3182:1 3184:1 3218:1 3221:1 3226:1 3230:1 3317:2 3330:6 3388:4 3401:1 3439:1 3442:1 3447:1 3448:3 3467:1 3479:1 3489:1 3490:1 3494:3 3495:1 3500:1 3528:3 3537:2 3545:1 3563:2 3573:1 3581:1 3588:1 3595:1 3600:1 3619:1 3719:1 3728:1 3736:4 3791:1 3798:1 3808:1 3820:1 3828:1 3838:1 3860:1 3861:1 3872:1 3928:2 3949:2 3952:3 3973:2 3982:1 3997:1 4010:1 4019:1 4020:3 4025:2 4056:1 4058:1 4063:1 4064:3 4065:4 4066:1 4077:1 4078:1 4086:2 4089:2 4115:3 4123:1 4128:1 4129:2 4133:3 4166:1 4167:1 4173:1 4176:1 4181:1 4185:3 4186:1 4197:1 4202:1 4232:1 4242:1 4248:1 4255:1 4260:1 4281:1 4289:1 4301:1 4307:2 4313:2 4328:1 4348:1 4354:2 4376:1 4390:1 4410:1 4419:2 4422:3 4431:4 4437:1 4456:1 4467:2 4492:1 4496:1 4505:1 4526:1 4531:1 4540:2 4549:1 4560:1 4609:1 4631:2 4634:1 4661:1 4668:1 4677:2 4715:1 4717:2 4754:2 4757:1 4779:1 4789:5 4798:1 4803:1 4848:1 4851:2 4868:1 4890:1 4917:1 4920:1 4921:1 4922:3 4928:2 4933:1 4946:2 4968:1 4969:3 4992:1 5002:1 5009:1 5012:5 5024:3 5031:1 5039:1 5041:1 5046:1 5080:1 5082:1 5098:3 5104:1 5108:1 5116:2 5119:1 5121:1 5136:1 5154:1 5155:1 5204:1 5212:2 5245:1 5249:1 5268:3 5272:1 5282:1 5300:1 5310:14 5314:2 5315:1 5325:1 5335:1 5365:1 5370:1 5380:1 5423:1 5440:1 5444:1 5455:1 5474:1 5478:1 5481:1 5526:2 5531:1 5545:1 5546:1 5562:1 5567:1 5571:1 5575:1 5581:3 5582:1 5622:1 5648:2 5651:2 5683:1 5699:1 5719:3 5743:1 5746:2 5759:1 5779:1 5783:1 5785:1 5790:2 5795:1 5799:1 5800:1 5811:1 5817:1 5831:1 5859:6 5882:1 5887:1 5894:1 5900:1 5912:1 5919:1 5921:2 5925:5 5942:2 5975:1 5992:1 6000:1 6006:1 6008:1 6014:1 6020:2 6027:1 6029:1 6049:1 6053:2 6057:1 6087:1 6090:1 6110:2 6127:1 6195:2 6227:2 6242:1 6266:1 6294:1 6297:1 6334:1 6341:4 6363:2 6378:2 6397:1 6442:2 6444:1 6445:2 6471:1 6480:1 6492:1 6497:1 6555:2 6557:1 6571:1 6575:1 6590:2 6603:3 6612:1 6613:9 6630:3 6645:1 6654:1 6672:2 6698:3 6699:1 6721:1 6763:6 6815:6 6826:2 6827:1 6828:1 6829:1 6832:5 6842:1 6849:1 6851:1 6875:1 6883:1 6894:3 6916:3 6917:1 6923:1 6931:1 6932:2 6935:1 6938:1 6939:1 6941:1 6942:2 6945:1 7005:1 7065:1 7071:1 7081:1 7084:2 7090:1 7093:3 7113:6 7128:1 7169:1 7180:1 7197:2 7210:1 7230:1 7234:1 7239:8 7240:1 7268:1 7280:1 7296:1 7302:8 7319:2 7333:1 7345:1 7369:1 7380:2 7388:1 7401:1 7419:1 7421:2 7428:3 7429:1 7434:3 7439:1 7460:1 7463:1 7468:1 7516:1 7532:1 7550:2 7560:2 7561:1 7575:1 7576:1 7584:1 7643:1 7651:1 7658:1 7694:1 7706:1 7750:6 7762:1 7763:1 7764:2 7779:1 7781:1 7814:2 7818:1 7823:1 7870:2 7901:1 7906:3 7936:1 7944:1 7945:4 7969:1 7971:1 7978:3 7979:1 7996:1 8006:1 8030:2 8033:2 8055:1 8058:15 8068:3 8088:1 8104:1 8105:1 8126:1 8175:1 8179:1 8185:1 8241:4 8258:2 8289:2 8307:4 8309:1 8327:1 8328:1 8329:2 8332:2 8333:5 8341:1 8351:3 8352:2 8359:6 8360:2 8364:1 8372:1 8377:1 8378:1 8386:22 8410:18 8413:1 8441:1 8452:1 8483:1 8513:1 8544:1 8546:1 8560:1 8569:1 8592:3 8595:3 8624:1 8648:1 8682:1 8705:2 8710:3 8712:1 8761:1 8766:3 8781:1 8819:2 8829:1 8839:1 8841:1 8879:1 8883:1 8889:2 8921:12 8950:2 8976:14 8982:6 8984:2 8985:1 8986:1 9007:1 9020:1 9021:2 9059:1 9073:1 9100:1 9117:1 9120:1 9134:1 9138:4 9182:1 9183:15 9191:2 9208:1 9220:8 9235:1 9250:1 9283:1 9285:1 9286:1 9290:2 9296:1 9299:1 9300:1 9301:2 9302:1 9304:1 9312:1 9315:1 9317:2 9355:1 9380:2 9381:6 9390:1 9395:2 9403:1 9406:1 9417:1 9490:1 9491:2 9508:1 9514:2 9520:1 9561:1 9570:1 9571:1 9597:2 9610:1 9648:1 9652:2 9658:2 9675:1 9685:2 9701:1 9713:2 9715:1 9724:1 9725:2 9734:3 9740:1 9743:2 9781:1 9785:1 9789:1 9792:1 9799:1 9801:1 9815:2 9831:1 9844:1 9850:1 9856:1 9859:1 9910:2 9911:1 9920:1 9932:1 9934:1 9957:2 9979:1 9985:1 10048:2 10062:1 10095:1 10116:3 10135:1 10178:1 10185:1 10206:1 10211:1 10214:1 10251:3 10255:1 10257:1 10273:1 10283:2 10342:1 10351:1 10372:3 10374:1 10377:6 10381:32 10383:1 10385:3 10387:1 10392:2 10399:1 10402:1 10406:1 10416:3 10420:1 10423:1 10430:1 10434:2 10450:4 10491:1 10492:2 10503:1 10510:2 10516:2 10532:1 10545:1 10552:1 10569:1 10608:1 10621:2 10649:1 10654:1 10655:1 10659:2 10678:4 10705:1 10716:1 10751:1 10757:2 10773:1 10776:1 10777:2 10784:1 10793:3 10800:3 10808:1 10822:1 10828:3 10830:1 10836:1 10857:2 10860:20 10886:1 10922:1 10951:4 10971:1 10989:1 11034:1 11094:1 11113:1 11114:2 11126:1 11130:1 11139:1 11178:1 11185:1 11189:1 11203:1 11209:1 11221:1 11257:1 11274:1 11289:1 11295:2 11304:2 11306:1 11313:2 11362:2 11383:1 11388:1 11404:3 11408:1 11451:1 11453:2 11467:15 11473:1 11484:1 11486:1 11489:1 11498:1 11503:1 11514:1 11515:5 11520:1 11530:1 11553:1 11557:2 11574:4 11585:1 11591:2 11598:1 11608:1 11634:1 11654:1 11655:1 11661:2 11663:1 11693:1 11703:1 11710:8 11714:1 11728:1 11730:1 11761:1 11766:1 11785:1 11798:1 11820:1 11840:3 11854:1 11860:4 11863:2 11864:1 11866:1 11879:1 11883:1 11886:3 11887:1 11888:2 11893:2 11896:1 11900:1 11929:1 11943:1 12001:1 12025:1 12026:1 12042:4 12048:1 12071:1 12072:1 12088:1 12094:1 12097:1 12098:1 12123:1 12145:1 12167:1 12174:1 12186:1 12191:1 12213:1 12214:2 12220:2 12225:1 12227:1 12228:1 12258:1 12260:1 12266:1 12289:1 12296:1 12319:1 12327:1 12373:1 12399:1 12419:1 12420:2 12424:1 12425:1 12427:1 12463:1 12475:1 12476:1 12489:1 12505:1 12530:1 12536:3 12551:4 12564:2 12574:1 12576:1 12583:1 12595:2 12630:2 12646:3 12648:1 12653:1 12659:1 12665:2 12677:6 12680:2 12686:3 12704:1 12706:6 12716:2 12730:1 12735:1 12739:3 12745:1 12774:1 12778:1 12787:1 12810:3 12838:1 12884:1 12890:1 12983:1 13000:1 13027:1 13034:1 13053:1 13055:2 13061:1 13062:1 13081:3 13086:1 13091:1 13098:1 13105:2 13142:1 13166:1 13188:1 13191:1 13209:2 13226:2 13230:1 13232:2 13270:1 13276:1 13319:1 13329:1 13337:2 13351:8 13363:1 13364:1 13369:1 13387:2 13392:2 13405:1 13416:1 13457:1 13478:1 13506:1 13537:1 13544:1 13545:2 13550:1 13604:1 13616:1 13637:1 13640:1 13644:1 13674:2 13698:1 13703:1 13736:9 13754:1 13762:11 13794:1 13797:1 13825:1 13834:1 13835:1 13845:1 13855:1 13858:1 13861:1 13936:2 13940:1 13941:1 13987:1 13989:1 13990:2 13993:1 14001:10 14052:1 14061:6 14082:1 14095:1 14103:1 14204:1 14232:1 14236:1 14250:2 14255:1 14257:1 14274:2 14295:1 14301:4 14311:1 14313:1 14314:1 14326:1 14328:2 14330:1 14355:1 14393:1 14395:1 14404:1 14411:1 14417:1 14426:2 14450:2 14460:1 14467:2 14474:1 14482:2 14483:1 14493:1 14514:1 14517:1 14523:1 14524:1 14526:1 14544:1 14545:1 14549:1 14552:2 14557:3 14563:1 14582:1 14584:1 14626:1 14638:1 14661:1 14662:4 14670:1 14677:4 14713:1 14717:2 14720:1 14727:1 14736:1 14744:4 14749:1 14752:2 14757:1 14760:1 14799:1 14804:3 14828:1 14837:1 14847:2 14859:2 14883:1 14890:1 14914:1 14915:6 14936:2 14946:1 14965:1 14972:1 14975:2 14987:1 14990:1 15026:1 15035:2 15059:1 15072:1 15078:1 15114:3 15144:2 15154:2 15195:1 15210:3 15213:2 15219:1 15233:2 15252:1 15256:1 15274:1 15287:1 15338:1 15344:1 15375:1 15400:1 15433:1 15438:6 15448:1 15455:1 15503:1 15510:1 15512:1 15528:1 15530:3 15535:1 15541:1 15545:1 15551:2 15553:1 15558:1 15585:1 15604:20 15606:2 15608:1 15659:3 15660:1 15663:1 15710:5 15715:1 15737:1 15744:1 15763:1 15764:1 15822:1 15828:1 15843:1 15852:1 15871:1 15905:1 15925:1 15934:1 15951:1 15975:1 15980:1 15992:1 15994:1 15997:1 15999:1 16004:1 16006:3 16019:2 16026:1 16046:1 16064:1 16100:1 16121:1 16130:1 16132:1 16153:1 16158:2 16162:1 16165:1 16169:1 16175:1 16195:1 16196:3 16201:4 16224:1 16227:2 16236:1 16255:1 16256:6 16259:2 16274:1 16288:1 16318:1 16330:1 16332:1 16335:1 16351:1 16364:1 16375:12 16450:1 16460:1 16461:1 16469:2 16481:1 16491:1 16506:1 16524:1 16539:4 16589:1 16594:2 16612:1 16639:1 16642:1 16645:1 16663:1 16699:2 16702:2 16709:5 16712:1 16722:2 16732:1 16763:1 16766:1 16772:1 16780:2 16804:12 16806:1 16817:1 16824:1 16825:1 16838:2 16869:1 16890:1 16913:5 16919:1 16952:1 16958:1 16963:2 16972:1 16982:1 16995:1 17004:1 17038:1 17052:1 17058:3 17074:1 17075:1 17098:2 17107:1 17127:1 17145:1 17161:1 17163:3 17164:4 17196:1 17200:2 17202:1 17204:2 17214:1 17223:1 17236:1 17248:1 17256:1 17267:2 17290:1 17291:1 17295:1 17302:2 17345:2 17361:2 17373:1 17413:2 17432:1 17461:6 17482:1 17488:1 17490:2 17495:1 17505:1 17509:1 17514:2 17521:3 17522:1 17559:1 17561:1 17564:1 17572:1 17584:1 17588:1 17590:1 17591:1 17599:1 17603:1 17604:2 17610:2 17615:1 17658:1 17671:1 17678:2 17679:1 17680:1 17700:1 17717:1 17718:1 17792:2 17802:1 17828:1 17834:1 17835:2 17836:1 17848:2 17867:1 17882:1 17932:1 17933:1 17944:1 17958:1 17991:2 18028:1 18045:1 18068:1 18076:1 18108:1 18110:2 18114:2 18120:6 18167:1 18173:1 18174:8 18218:1 18223:1 18247:1 18260:1 18286:2 18296:1 18334:1 18344:1 18366:1 18369:1 18373:2 18414:1 18415:1 18421:1 18424:1 18425:2 18427:2 18435:12 18438:5 18452:5 18457:2 18472:2 18479:4 18488:2 18515:1 18579:1 18615:3 18616:1 18632:1 18635:1 18639:2 18643:1 18648:2 18651:1 18661:1 18713:1 18728:2 18743:1 18746:1 18752:2 18759:1 18783:2 18789:3 18793:1 18797:1 18823:1 18833:1 18841:1 18879:1 18885:1 18910:1 18911:1 18918:1 18928:1 18934:2 18951:2 18964:2 18974:2 18984:2 18988:3 19004:1 19008:1 19013:1 19019:1 19021:3 19026:1 19030:1 19035:1 19036:1 19054:3 19057:3 19065:1 19066:1 19072:2 19077:3 19113:2 19118:4 19124:1 19130:1 19132:1 19138:1 19155:1 19176:1 19182:1 19217:1 19226:1 19234:1 19266:2 19284:3 19287:1 19288:1 19291:1 19297:2 19341:1 19372:1 19387:1 19390:1 19399:1 19401:2 19414:1 19418:2 19428:1 19443:1 19446:4 19450:1 19460:1 19472:2 19504:6 19511:6 19516:5 19521:1 19522:1 19537:1 19557:1 19558:4 19571:4 19589:1 19636:1 19648:1 19664:1 19670:1 19671:2 19676:1 19757:2 19783:1 19802:6 19812:1 19847:1 19875:1 19879:1 19880:1 19883:1 19906:1 19908:6 19916:1 19925:1 19959:4 19980:20 20029:1 20034:2 20070:2 20083:2 20110:1 20129:4 20131:1 20174:2 20179:1 20264:1 20268:20 20271:1 20272:1 20293:2 20304:1 20326:1 20328:2684 20365:1 20372:1 20378:2 20407:1 20411:1 20434:1 20439:1 20448:1 20468:1 20471:2 20497:3 20503:1 20521:1 20526:1 20529:1 20530:1 20531:1 20551:1 20557:2 20565:5 20569:1 20576:1 20578:5 20582:1 20584:1 20585:2 20596:1 20603:2 20611:1 20647:1 20662:1 20665:1 20669:3 20741:1 20743:1 20781:1 20796:1 20802:1 20820:1 20825:1 20828:1 20856:1 20915:1 20977:6 20985:1 21007:1 21021:8 21023:3 21027:1 21044:1 21049:1 21050:1 21072:1 21079:3 21092:1 21095:1 21097:2 21101:1 21117:1 21132:1 21140:1 21145:1 21146:2 21147:1 21156:1 21160:7 21192:2 21216:1 21226:1 21237:4 21262:6 21276:1 21279:1 21291:1 21298:12 21299:2 21308:1 21309:1 21326:2 21350:1 21359:1 21361:1 21378:18 21391:1 21398:2 21399:1 21417:1 21425:3 21436:2 21442:1 21446:1 21464:1 21476:2 21511:1 21523:1 21524:3 21542:1 21547:1 21551:5 21573:1 21580:1 21590:2 21597:3 21598:2 21603:1 21635:2 21652:1 21666:1 21667:1 21676:1 21747:1 21753:1 21755:4 21761:1 21777:1 21798:2 21832:1 21862:1 21863:1 21868:1 21875:3 21879:1 21888:1 21894:1 21905:1 21926:1 21936:1 21971:2 21972:1 21978:1 22001:1 22010:1 22021:1 22036:1 22045:9 22062:1 22064:1 22066:2 22068:1 22084:9 22116:1 22117:1 22149:1 22159:1 22235:2 22240:1 22272:2 22284:1 22287:1 22288:2 22299:1 22307:1 22316:1 22325:4 22337:1 22339:2 22345:4 22367:1 22381:2 22387:1 22411:1 22446:1 22450:4 22456:2 22462:1 22476:1 22482:4 22507:1 22512:1 22513:1 22533:2 22538:1 22577:1 22585:1 22589:1 22604:1 22617:1 22622:1 22630:1 22635:2 22636:1 22643:2 22655:7 22657:1 22661:1 22674:10 22703:1 22704:1 22716:1 22724:1 22736:1 22747:1 22784:1 22786:1 22810:1 22812:1 22815:4 22818:1 22819:1 22827:2 22829:1 22838:1 22854:1 22868:1 22870:1 22876:2 22902:1 22904:2 22939:1 22957:1 22987:1 22988:2 22991:1 22992:1 23010:1 23019:1 23026:1 23034:2 23037:1 23058:1 23078:1 23084:4 23116:1 23129:1 23147:1 23168:2 23169:1 23178:1 23233:1 23242:1 23245:1 23248:1 23256:1 23257:1 23261:2 23276:3 23280:1 23303:1 23307:1 23317:1 23322:1 23325:1 23331:1 23346:2 23349:1 23363:1 23368:1 23380:1 23382:1 23392:1 23399:1 23422:1 23458:2 23462:3 23476:2 23496:1 23511:2 23513:1 23519:3 23535:2 23543:2 23554:1 23556:1 23566:1 23571:1 23572:2 23573:2 23583:1 23590:4 23615:1 23616:1 23657:1 23662:1 23723:2 23737:1 23744:1 23763:1 23803:1 23811:2 23826:2 23836:1 23863:5 23870:1 23871:1 23878:1 23880:1 23893:1 23899:1 23912:1 23921:6 23954:1 23958:1 23965:1 23973:1 23979:1 23981:1 23988:1 24008:1 24009:2 24023:1 24026:2 24032:1 24038:1 24055:1 24057:1 24063:1 24078:1 24101:1 24115:1 24119:1 24144:1 24148:1 24153:1 24159:1 24163:1 24164:1 24172:1 24174:1 24181:3 24183:3 24187:1 24190:1 24198:1 24225:1 24232:2 24233:2 24236:1 24254:1 24263:2 24272:1 24273:2 24275:1 24276:3 24283:1 24285:2 24301:1 24307:1 24311:2 24316:1 24319:1 24327:1 24332:2 24358:1 24360:1 24372:2 24382:1 24383:2 24386:3 24400:1 24402:1 24407:2 24436:1 24438:1 24450:2 24455:2 24475:1 24486:1 24487:1 24494:1 24495:3 24518:1 24534:1 24554:1 24568:1 24572:1 24573:1 24583:1 24586:4 24590:2 24603:1 24613:2 24618:1 24620:2 24621:1 24627:1 24633:1 24635:1 24651:1 24657:1 24663:1 24669:1 24676:2 24693:1 24701:5 24708:1 24716:1 24719:1 24727:2 24735:1 24737:1 24772:1 24773:2 24777:1 24782:1 24786:3 24787:1 24795:2 24805:1 24808:1 24820:1 24839:1 24862:2 24863:1 24876:1 24935:1 24945:1 24976:1 24981:1 25019:2 25032:1 25033:1 25044:1 25047:1 25056:11 25071:1 25091:5 25097:1 25105:1 25115:6 25148:3 25174:1 25191:2 25192:1 25193:1 25200:1 25202:1 25214:1 25215:1 25246:1 25253:1 25266:1 25267:1 25271:1 25272:1 25275:1 25280:2 25301:1 25302:1 25308:1 25323:2 25330:1 25332:6 25340:1 25352:1 25353:1 25361:1 25364:2 25376:1 25391:1 25392:1 25398:2 25410:1 25413:1 25421:4 25442:1 25450:1 25470:1 25472:2 25476:1 25490:1 25525:2 25545:1 25556:1 25572:1 25577:1 25593:1 25619:1 25630:3 25655:1 25674:3 25689:1 25694:1 25704:1 25709:3 25736:1 25749:1 25766:2 25772:1 25781:1 25788:1 25793:1 25798:4 25802:2 25803:1 25808:1 25835:1 25844:2 25891:1 25907:1 25919:2 25927:1 25928:1 25937:1 25940:1 25961:1 25970:1 25995:1 26000:1 26011:1 26012:1 26014:1 26058:1 26065:1 26089:1 26092:1 26103:1 26107:1 26123:1 26125:3 26128:1 26133:1 26135:2 26136:1 26139:2 26143:1 26147:2 26154:1 26155:1 26158:1 26164:1 26169:1 26178:2 26192:1 26208:2 26213:1 26225:1 26235:2 26248:4 26262:1 26263:1 26268:3 26271:1 26280:1 26281:1 26288:2 26293:1 26305:5 26315:1 26339:3 26389:3 26428:1 26438:1 26444:1 26447:1 26466:1 26491:2 26552:1 26553:1 26560:1 26563:2 26589:1 26592:1 26594:1 26595:1 26604:1 26607:1 26608:2 26611:3 26618:1 26622:1 26630:1 26631:1 26632:1 26642:1 26653:4 26660:1 26690:1 26692:1 26694:1 26696:1 26716:1 26727:1 26746:1 26749:1 26755:1 26762:2 26769:1 26781:7 26809:3 26821:2 26863:1 26894:1 26901:2 26904:2 26915:1 26916:2 26929:1 26931:1 26943:1 27033:1 27034:1 27037:2 27039:1 27052:1 27075:2 27088:3 27093:1 27095:1 27097:1 27104:2 27113:1 27125:1 27138:1 27145:1 27163:1 27164:1 27177:1 27202:1 27209:4 27216:1 27230:2 27232:1 27247:1 27253:1 27264:1 27273:1 27297:3 27302:2 27308:1 27315:1 27326:1 27338:1 27352:3 27362:1 27375:1 27390:1 27400:1 27402:1 27416:1 27422:1 27426:11 27427:1 27466:1 27472:2 27488:1 27515:2 27546:1 27559:1 27575:1 27582:2 27583:1 27588:2 27604:3 27605:1 27606:2 27614:1 27620:2 27639:1 27662:7 27667:2 27685:2 27690:2 27693:1 27718:2 27737:5 27761:1 27768:1 27785:1 27788:1 27799:1 27817:5 27822:1 27839:1 27851:7 27892:1 27906:1 27945:3 27950:1 27969:1 27979:1 27995:1 28000:1 28005:1 28025:1 28040:1 28046:1 28056:1 28072:1 28074:1 28084:2 28094:1 28122:2 28128:1 28139:1 28149:1 28159:1 28160:1 28189:1 28193:1 28197:1 28204:1 28207:1 28217:2 28256:1 28262:2 28275:1 28301:1 28307:1 28400:1 28419:1 28428:3 28459:1 28474:1 28488:1 28499:1 28502:1 28504:1 28505:1 28527:3 28540:8 28555:1 28561:2 28575:1 28630:1 28642:1 28658:2 28715:1 28723:1 28728:1 28744:1 28754:2 28755:7 28764:1 28765:1 28778:6 28783:2 28792:1 28809:1 28823:1 28843:2 28856:1 28858:8 28876:1 28877:2 28883:1 28900:1 28911:1 28916:1 28929:1 28933:20 28947:1 28960:1 28961:1 28977:1 28984:2 29024:1 29034:2 29039:1 29052:2 29063:1 29078:1 29090:1 29091:1 29126:1 29146:1 29154:1 29161:1 29182:1 29193:1 29221:2 29231:1 29239:4 29240:1 29268:1 29272:3 29292:1 29314:1 29339:2 29348:1 29349:2 29357:1 29387:2 29396:2 29404:1 29413:1 29422:1 29424:2 29429:1 29430:2 29431:3 29444:1 29457:4 29465:1 29471:3 29490:1 29495:2 29519:1 29535:1 29537:1 29543:2 29546:1 29551:1 29557:3 29560:1 29602:1 29627:1 29650:1 29652:2 29664:1 29675:1 29684:1 29708:1 29730:1 29742:1 29748:1 29749:1 29759:1 29761:1 29762:1 29763:1 29764:1 29770:1 29775:1 29795:2 29798:1 29816:6 29855:1 29865:1 29866:2 29890:1 29901:1 29902:1 29930:1 29931:1 29932:1 29935:1 29988:1 29990:1 29998:1 30003:1 30013:1 30036:1 30047:1 30056:2 30084:3 30088:1 30113:3 30123:1 30137:14 30138:1 30144:1 30145:1 30157:1 30162:3 30173:2 30180:2 30183:1 30184:2 30225:2 30226:1 30239:3 30241:9 30253:1 30263:1 30264:2 30277:2 30279:1 30280:1 30284:1 30294:1 30312:1 30330:3 30334:1 30335:2 30339:3 30362:1 30385:1 30394:1 30396:6 30438:1 30447:1 30449:2 30459:1 30462:4 30466:1 30468:1 30508:1 30538:1 30541:1 30549:1 30551:1 30561:2 30573:1 30580:1 30586:1 30592:1 30607:1 30621:1 30637:1 30646:1 30653:1 30654:1 30678:1 30679:1 30680:1 30682:2 30686:2 30716:2 30725:2 30760:3 30787:1 30795:2 30815:4 30823:1 30854:3 30868:1 30871:1 30872:1 30897:2 30898:1 30901:1 30902:1 30903:1 30906:1 30927:1 30950:2 30952:1 30962:1 30998:1 31028:1 31032:1 31034:1 31037:2 31060:1 31076:1 31089:4 31095:1 31098:4 31105:2 31115:1 31168:1 31184:2 31210:1 31215:1 31233:4 31258:1 31316:1 31331:1 31341:1 31342:2 31353:1 31355:3 31359:1 31377:1 31378:1 31383:1 31407:3 31421:1 31427:2 31432:1 31446:1 31447:2 31462:1 31478:2 31481:1 31489:5 31495:1 31497:1 31505:6 31507:1 31508:1 31510:1 31514:1 31542:1 31548:1 31550:1 31559:1 31567:1 31615:2 18 6:1 8:1 14:1 18:1 21:1 34:1 55:1 69:1 75:1 80:1 123:1 188:4 210:2 214:1 216:2 219:1 237:2 269:2 273:2 283:2 302:1 323:3 339:4 352:1 358:1 359:1 372:7 383:1 384:1 389:1 394:1 395:1 448:1 449:3 454:1 466:1 469:1 477:1 490:1 501:1 538:1 548:2 552:1 570:1 572:1 595:2 599:1 600:3 603:1 618:1 628:3 632:1 646:2 656:3 664:1 683:1 694:2 704:6 715:1 716:1 735:1 748:3 756:1 767:2 768:1 781:1 782:1 790:1 795:1 802:1 866:1 881:1 888:4 890:3 898:1 909:1 923:1 924:3 926:1 937:2 949:1 950:2 960:2 964:1 970:1 973:1 992:1 1011:1 1014:2 1050:1 1130:1 1132:3 1135:2 1148:1 1152:1 1167:1 1181:1 1202:1 1248:4 1270:2 1272:2 1279:2 1280:2 1281:1 1283:2 1295:1 1316:3 1332:1 1342:1 1343:1 1351:2 1353:1 1371:1 1434:1 1437:1 1444:2 1447:1 1453:2 1454:2 1461:1 1465:1 1487:2 1500:3 1501:1 1506:1 1518:1 1520:1 1522:1 1554:1 1556:2 1558:1 1562:1 1582:1 1595:1 1604:1 1615:2 1619:1 1633:4 1636:1 1637:3 1647:2 1662:1 1664:1 1689:1 1706:1 1708:2 1720:2 1723:1 1749:1 1752:1 1785:1 1789:3 1824:1 1842:4 1866:1 1885:1 1960:1 1963:1 1966:1 1979:2 1981:2 1985:1 1991:1 1993:3 2014:1 2043:2 2047:1 2073:1 2079:1 2085:2 2091:1 2093:2 2117:1 2131:2 2133:3 2137:1 2140:15 2143:1 2144:1 2147:1 2152:1 2169:1 2183:1 2187:1 2192:1 2212:1 2225:1 2242:2 2253:2 2263:1 2273:1 2290:1 2300:3 2303:1 2310:1 2312:5 2314:1 2315:1 2318:1 2319:4 2321:1 2322:1 2326:1 2328:1 2329:4 2336:2 2342:2 2344:2 2361:2 2362:1 2363:1 2365:1 2369:1 2371:1 2374:1 2375:3 2377:2 2381:2 2382:1 2388:1 2393:2 2396:2 2397:4 2403:2 2407:1 2410:1 2412:1 2414:3 2416:1 2423:2 2432:20 2442:1 2450:3 2456:1 2506:4 2517:1 2521:1 2528:1 2541:1 2543:1 2545:1 2547:1 2557:4 2565:1 2580:1 2608:1 2621:2 2645:1 2649:1 2653:1 2662:1 2687:2 2699:5 2701:1 2717:1 2718:1 2720:2 2728:3 2737:1 2754:2 2793:1 2820:2 2827:2 2828:1 2836:1 2847:1 2850:2 2873:1 2880:1 2883:1 2889:1 2895:1 2896:1 2925:1 2931:1 2949:1 2952:6 2956:1 2964:2 2974:1 2975:1 3040:1 3050:2 3059:1 3063:11 3066:3 3068:1 3088:1 3107:1 3116:1 3119:19 3126:1 3127:2 3143:2 3148:1 3156:1 3164:3 3182:1 3184:1 3218:1 3221:1 3226:1 3230:1 3317:2 3330:6 3388:4 3401:1 3439:1 3442:1 3447:1 3448:3 3467:1 3479:1 3489:1 3490:1 3494:3 3495:1 3500:1 3528:3 3537:2 3545:1 3563:2 3573:1 3581:1 3588:1 3595:1 3600:1 3619:1 3719:1 3728:1 3736:4 3791:1 3798:1 3808:1 3820:1 3828:1 3838:1 3860:1 3861:1 3872:1 3928:2 3949:2 3952:3 3973:2 3982:1 3997:1 4010:1 4019:1 4020:3 4025:2 4056:1 4058:1 4063:1 4064:4 4065:4 4066:1 4077:1 4078:1 4086:2 4089:2 4115:3 4123:1 4128:1 4129:2 4133:3 4166:1 4167:1 4173:1 4176:1 4181:1 4185:3 4186:1 4197:1 4202:1 4232:1 4242:1 4248:1 4255:1 4260:1 4281:1 4289:1 4301:1 4307:2 4313:2 4328:1 4348:1 4354:2 4376:1 4390:1 4410:1 4419:2 4422:3 4431:4 4437:1 4456:1 4467:2 4492:1 4496:1 4505:1 4526:1 4531:1 4540:2 4549:1 4560:1 4609:2 4631:2 4634:1 4661:1 4668:1 4677:2 4715:1 4717:2 4754:2 4757:1 4779:1 4789:5 4798:1 4803:1 4848:1 4851:2 4868:1 4890:1 4917:1 4920:1 4921:1 4922:3 4928:2 4933:1 4946:3 4968:1 4969:3 4983:1 4992:1 5002:1 5009:1 5012:5 5024:4 5031:1 5039:1 5041:1 5046:1 5080:1 5082:1 5098:3 5104:1 5108:1 5116:2 5119:1 5121:1 5136:1 5154:1 5155:1 5204:1 5212:2 5245:1 5249:1 5268:3 5272:1 5282:1 5300:1 5310:14 5314:2 5315:1 5325:1 5335:1 5365:1 5370:1 5380:1 5423:1 5440:1 5444:1 5455:1 5474:1 5478:1 5481:1 5526:2 5531:1 5545:1 5546:1 5562:1 5567:1 5571:1 5575:1 5581:3 5582:1 5622:1 5648:2 5651:2 5683:1 5699:1 5719:3 5743:1 5746:2 5759:2 5779:1 5783:1 5785:1 5790:2 5795:1 5799:1 5800:1 5811:1 5817:1 5831:1 5859:7 5882:1 5887:1 5894:1 5900:1 5912:1 5919:1 5921:2 5925:5 5942:2 5975:1 5992:1 6000:1 6006:1 6008:1 6014:1 6020:2 6027:1 6029:1 6049:1 6053:2 6057:1 6087:1 6090:1 6110:2 6127:1 6195:2 6227:2 6242:1 6266:1 6294:1 6297:1 6334:1 6341:4 6363:2 6378:2 6397:1 6442:2 6444:1 6445:2 6471:1 6480:1 6492:1 6497:1 6555:2 6557:1 6571:1 6575:1 6590:2 6603:3 6612:1 6613:9 6630:3 6645:1 6654:1 6672:2 6698:3 6699:1 6721:1 6763:6 6815:6 6826:2 6827:1 6828:1 6829:1 6832:5 6842:1 6849:1 6851:1 6875:1 6883:1 6894:3 6916:3 6917:1 6923:1 6931:1 6932:2 6935:1 6938:1 6939:1 6941:1 6942:2 6945:1 7005:1 7065:1 7071:1 7081:1 7084:2 7090:1 7093:3 7113:7 7127:1 7128:1 7169:1 7180:1 7197:2 7210:1 7230:1 7234:1 7239:8 7240:1 7268:1 7280:1 7296:1 7302:8 7303:1 7319:2 7333:1 7345:1 7369:1 7380:2 7388:1 7401:1 7419:1 7421:2 7428:3 7429:1 7434:3 7439:1 7460:1 7463:1 7468:1 7516:1 7532:1 7550:2 7560:2 7561:1 7575:1 7576:1 7584:1 7643:1 7651:1 7658:1 7694:1 7706:1 7750:6 7762:1 7763:1 7764:2 7779:1 7781:1 7814:2 7818:1 7823:1 7870:2 7901:1 7906:3 7936:1 7944:1 7945:4 7969:1 7971:1 7978:3 7979:1 7996:1 8006:1 8030:2 8033:2 8055:1 8058:15 8068:3 8088:1 8104:1 8105:1 8126:1 8175:1 8179:1 8185:1 8241:4 8258:2 8289:2 8307:4 8309:1 8327:1 8328:1 8329:2 8332:2 8333:5 8341:1 8351:3 8352:2 8359:6 8360:2 8364:1 8372:1 8377:1 8378:1 8386:22 8410:19 8413:1 8441:1 8452:1 8483:1 8513:1 8544:1 8546:1 8560:1 8569:1 8592:3 8595:3 8624:1 8648:1 8682:1 8705:3 8710:3 8712:1 8761:1 8766:3 8781:1 8819:2 8829:1 8839:1 8841:1 8879:1 8883:1 8889:2 8921:12 8950:2 8976:14 8982:6 8984:2 8985:1 8986:1 9007:1 9020:1 9021:2 9059:1 9073:1 9100:1 9117:1 9120:1 9134:1 9138:4 9182:1 9183:15 9191:2 9208:1 9220:8 9235:1 9250:1 9283:1 9285:1 9286:1 9290:2 9296:1 9299:1 9300:1 9301:2 9302:1 9304:1 9312:1 9315:1 9317:2 9355:1 9380:2 9381:6 9390:1 9395:2 9403:1 9406:1 9417:1 9490:1 9491:2 9508:1 9514:2 9520:1 9561:1 9570:2 9571:1 9597:2 9610:1 9648:1 9652:2 9658:2 9675:1 9685:2 9701:1 9713:2 9715:1 9724:1 9725:2 9734:3 9740:1 9743:2 9781:1 9785:1 9789:1 9792:1 9799:1 9801:1 9815:2 9831:1 9844:2 9850:1 9856:1 9859:1 9910:2 9911:1 9920:1 9932:1 9934:1 9957:2 9979:1 9985:1 10048:2 10062:1 10095:1 10116:3 10135:1 10178:1 10185:1 10206:1 10211:1 10214:1 10251:3 10255:1 10257:1 10273:1 10283:2 10342:1 10351:1 10372:3 10374:1 10377:6 10381:32 10383:1 10385:3 10387:1 10392:2 10399:1 10402:1 10406:1 10416:3 10420:1 10423:1 10430:2 10434:2 10450:4 10491:1 10492:2 10503:1 10510:2 10516:2 10532:1 10545:1 10552:1 10569:1 10608:1 10621:2 10622:1 10649:1 10654:1 10655:1 10659:2 10678:4 10705:1 10716:1 10751:1 10757:2 10773:1 10776:1 10777:2 10784:1 10793:3 10800:3 10808:1 10822:1 10828:3 10830:1 10836:1 10857:2 10860:20 10886:1 10922:2 10951:4 10971:1 10989:1 11034:1 11094:1 11113:1 11114:2 11126:1 11130:1 11139:1 11178:1 11183:1 11185:1 11189:1 11203:1 11209:1 11221:1 11257:1 11274:1 11289:1 11295:2 11304:2 11306:1 11313:3 11362:2 11383:1 11388:1 11404:3 11408:1 11451:1 11453:2 11467:15 11473:1 11484:1 11486:1 11489:1 11498:1 11503:1 11514:1 11515:5 11520:1 11530:1 11553:1 11557:2 11574:4 11585:1 11591:2 11598:1 11608:1 11634:1 11654:1 11655:1 11661:2 11663:1 11693:1 11703:1 11710:8 11714:1 11728:1 11730:1 11761:1 11766:1 11785:1 11798:1 11820:1 11840:3 11854:1 11860:4 11863:2 11864:1 11866:1 11879:1 11883:1 11886:3 11887:1 11888:2 11893:2 11896:1 11900:1 11929:1 11943:1 12001:1 12025:1 12026:1 12042:4 12048:1 12071:1 12072:1 12088:1 12094:1 12097:1 12098:1 12123:1 12145:1 12167:1 12174:2 12186:1 12191:1 12213:1 12214:2 12220:2 12225:1 12227:1 12228:1 12258:1 12260:1 12266:1 12289:1 12296:1 12319:1 12327:1 12373:1 12399:1 12419:1 12420:2 12424:1 12425:1 12427:1 12463:1 12475:1 12476:1 12489:1 12505:1 12530:1 12536:3 12551:4 12564:2 12574:1 12576:1 12583:1 12595:2 12630:2 12646:3 12648:1 12653:1 12659:1 12665:2 12677:6 12680:2 12686:3 12704:1 12706:6 12716:2 12730:1 12735:1 12739:3 12745:1 12774:1 12778:1 12787:1 12810:3 12838:1 12884:1 12890:1 12983:1 13000:1 13027:1 13034:1 13053:1 13055:2 13061:1 13062:1 13081:3 13086:1 13091:1 13098:1 13105:2 13142:1 13166:1 13188:1 13191:1 13209:2 13226:2 13230:1 13232:2 13270:1 13276:1 13319:1 13329:1 13337:2 13351:8 13363:1 13364:1 13369:1 13387:2 13392:2 13405:1 13416:1 13457:1 13478:1 13506:1 13537:1 13544:1 13545:2 13550:1 13604:1 13616:1 13637:1 13640:1 13644:1 13674:2 13698:1 13703:1 13736:9 13754:1 13762:11 13794:1 13797:1 13825:1 13834:1 13835:1 13845:1 13855:1 13858:1 13861:1 13936:2 13940:1 13941:2 13987:1 13989:1 13990:2 13993:1 14001:10 14052:1 14061:6 14082:1 14095:1 14103:1 14204:1 14232:1 14236:1 14250:2 14255:1 14257:1 14274:2 14295:1 14301:4 14311:1 14313:1 14314:1 14326:1 14328:2 14330:1 14355:1 14393:1 14395:1 14404:1 14411:1 14417:1 14426:2 14450:2 14460:1 14467:2 14474:1 14482:2 14483:1 14493:1 14514:1 14517:1 14523:1 14524:1 14526:1 14544:1 14545:1 14549:1 14552:2 14557:3 14563:1 14582:1 14584:1 14626:1 14638:1 14661:1 14662:4 14670:1 14677:4 14713:1 14717:2 14720:1 14727:1 14736:1 14744:4 14749:1 14752:2 14757:1 14760:1 14799:1 14804:3 14828:1 14837:1 14847:2 14859:2 14883:1 14890:1 14914:1 14915:6 14936:2 14946:1 14965:1 14972:1 14975:2 14987:1 14990:1 15026:1 15035:2 15059:1 15072:1 15078:1 15114:3 15144:3 15154:2 15195:1 15210:3 15213:2 15219:1 15233:2 15252:2 15256:1 15274:1 15287:1 15338:1 15344:1 15375:1 15400:1 15433:1 15438:7 15448:1 15455:1 15503:1 15510:1 15512:1 15528:1 15530:3 15535:1 15541:1 15545:1 15551:3 15553:1 15558:1 15585:1 15604:20 15606:2 15608:1 15659:3 15660:1 15663:1 15710:5 15715:1 15737:1 15744:1 15763:1 15764:1 15822:1 15828:1 15843:1 15852:1 15871:1 15905:1 15925:1 15934:1 15951:1 15975:1 15980:1 15992:1 15994:1 15997:1 15999:1 16004:1 16006:3 16019:2 16026:1 16046:1 16064:1 16100:1 16121:1 16130:1 16132:1 16153:1 16158:2 16162:1 16165:1 16169:1 16175:1 16195:1 16196:3 16201:4 16224:1 16227:2 16236:1 16255:1 16256:6 16259:2 16274:1 16288:1 16318:1 16330:1 16332:1 16335:1 16351:1 16364:1 16375:12 16450:1 16460:1 16461:1 16469:2 16481:1 16491:1 16506:1 16524:1 16539:4 16589:2 16594:2 16612:1 16639:1 16642:1 16645:1 16663:1 16699:4 16702:2 16709:5 16712:1 16722:2 16732:1 16763:1 16766:1 16772:1 16780:2 16804:12 16806:1 16817:1 16824:1 16825:1 16838:2 16869:1 16890:1 16913:5 16919:1 16952:1 16958:1 16963:2 16972:1 16982:1 16995:1 17004:1 17038:1 17052:1 17058:3 17074:1 17075:1 17098:2 17107:1 17127:1 17145:1 17161:1 17163:3 17164:4 17196:1 17200:2 17202:1 17204:2 17214:1 17223:1 17236:1 17248:1 17256:1 17267:2 17290:1 17291:1 17295:1 17302:2 17345:2 17361:2 17373:1 17413:2 17432:1 17461:6 17482:1 17488:1 17490:3 17495:1 17505:1 17509:1 17514:2 17521:3 17522:1 17559:1 17561:1 17564:1 17572:1 17584:1 17588:1 17590:1 17591:1 17599:1 17603:1 17604:2 17610:2 17615:1 17658:1 17671:1 17678:2 17679:1 17680:1 17700:1 17717:1 17718:1 17792:2 17802:1 17828:1 17834:1 17835:2 17836:1 17848:2 17867:1 17882:1 17932:1 17933:1 17944:1 17958:1 17991:2 18028:1 18045:1 18068:1 18076:1 18108:1 18110:2 18114:2 18120:6 18143:1 18167:1 18173:1 18174:9 18218:1 18223:1 18247:1 18260:1 18286:2 18296:1 18334:1 18344:1 18366:1 18369:1 18373:2 18414:1 18415:1 18421:1 18424:2 18425:2 18427:2 18435:12 18438:5 18452:6 18457:2 18472:2 18479:4 18488:2 18515:1 18579:1 18615:3 18616:1 18632:1 18635:1 18639:2 18643:1 18648:2 18651:1 18661:1 18713:1 18728:2 18743:1 18746:3 18752:2 18759:1 18783:2 18789:3 18793:1 18797:1 18823:1 18833:1 18841:1 18879:1 18885:1 18910:1 18911:1 18918:1 18928:1 18934:2 18951:2 18964:2 18974:4 18984:2 18988:3 19004:1 19008:1 19013:1 19019:1 19021:3 19026:1 19030:1 19035:1 19036:1 19054:3 19057:3 19065:1 19066:1 19072:2 19077:3 19113:2 19118:4 19124:1 19130:1 19132:1 19138:1 19155:1 19176:1 19182:1 19217:1 19226:1 19234:1 19266:2 19284:3 19287:1 19288:1 19291:1 19297:2 19341:1 19372:1 19387:1 19390:1 19399:1 19401:2 19414:1 19418:2 19428:1 19443:1 19446:4 19450:1 19460:1 19472:2 19504:6 19511:6 19516:5 19521:1 19522:1 19537:1 19557:1 19558:4 19571:4 19589:1 19636:1 19648:1 19664:1 19670:1 19671:2 19676:1 19757:2 19783:1 19802:6 19812:1 19847:1 19875:1 19879:1 19880:1 19883:1 19906:1 19908:6 19916:1 19925:1 19959:4 19980:20 20029:1 20034:2 20070:2 20083:2 20110:1 20129:4 20131:1 20174:2 20179:1 20264:1 20268:20 20271:1 20272:1 20293:2 20304:1 20326:1 20328:2753 20365:1 20372:1 20378:2 20407:1 20411:1 20434:1 20439:1 20448:1 20468:1 20471:2 20497:3 20503:1 20521:1 20526:1 20529:1 20530:1 20531:1 20551:1 20557:2 20565:5 20569:1 20576:1 20578:5 20582:1 20584:1 20585:2 20596:1 20603:2 20611:1 20647:1 20662:1 20665:1 20669:3 20741:1 20743:1 20781:1 20796:1 20802:1 20820:1 20825:1 20828:1 20856:1 20915:1 20977:6 20985:1 21007:1 21021:8 21023:3 21027:1 21044:1 21049:1 21050:2 21072:1 21079:3 21092:1 21095:1 21097:2 21101:1 21117:1 21132:1 21140:1 21145:1 21146:2 21147:1 21156:1 21160:7 21192:2 21216:1 21226:1 21237:4 21262:6 21276:1 21279:1 21291:1 21298:12 21299:2 21308:1 21309:1 21326:2 21350:1 21359:1 21361:1 21378:18 21391:1 21398:2 21399:1 21417:1 21425:3 21436:2 21442:1 21446:1 21464:1 21476:2 21486:1 21511:1 21523:1 21524:3 21542:1 21547:1 21551:5 21573:1 21580:1 21590:2 21597:4 21598:2 21603:1 21635:2 21652:1 21666:1 21667:1 21676:1 21747:1 21753:1 21755:4 21761:1 21777:1 21798:2 21832:1 21862:1 21863:1 21868:1 21871:1 21875:3 21879:1 21888:1 21894:1 21905:1 21926:1 21936:1 21971:2 21972:1 21978:1 22001:1 22010:1 22021:1 22036:1 22045:10 22062:1 22064:1 22066:2 22068:1 22084:9 22116:1 22117:1 22149:1 22159:1 22235:2 22240:1 22272:2 22284:1 22287:1 22288:2 22299:1 22307:1 22316:1 22325:4 22337:1 22339:2 22345:4 22367:1 22381:2 22387:1 22411:1 22446:1 22450:4 22456:2 22462:1 22476:1 22482:4 22507:1 22512:1 22513:1 22533:2 22538:1 22577:1 22585:1 22589:1 22604:1 22617:2 22622:1 22630:1 22635:2 22636:1 22643:2 22655:7 22657:1 22661:1 22674:10 22703:1 22704:1 22716:1 22724:1 22736:1 22747:1 22784:1 22786:1 22810:1 22812:1 22815:4 22818:1 22819:1 22827:2 22829:1 22838:1 22854:1 22868:1 22870:1 22876:2 22902:1 22904:2 22939:1 22957:1 22987:1 22988:2 22991:1 22992:1 23010:1 23019:1 23026:1 23034:2 23037:2 23058:1 23078:1 23084:4 23116:1 23129:1 23147:1 23168:2 23169:1 23178:1 23233:1 23242:1 23245:1 23248:1 23256:1 23257:1 23261:2 23276:3 23280:1 23303:1 23307:1 23317:1 23322:1 23325:1 23331:1 23346:2 23349:1 23363:1 23368:1 23380:1 23382:1 23392:1 23399:1 23422:1 23458:2 23462:3 23476:2 23496:1 23511:2 23513:1 23519:3 23535:2 23543:2 23554:1 23556:1 23566:1 23571:1 23572:2 23573:2 23583:1 23590:4 23615:1 23616:1 23657:1 23662:1 23723:2 23737:1 23744:1 23763:1 23803:1 23811:2 23826:2 23836:1 23863:5 23870:1 23871:1 23878:1 23880:1 23893:1 23899:1 23912:1 23921:7 23954:1 23958:1 23965:1 23973:1 23979:1 23981:1 23988:1 24008:1 24009:2 24023:1 24026:2 24032:1 24038:1 24055:1 24057:1 24063:1 24078:1 24101:1 24115:1 24119:1 24144:1 24148:1 24153:1 24159:1 24163:1 24164:1 24172:1 24174:1 24181:3 24183:3 24187:1 24190:1 24198:1 24225:1 24232:2 24233:2 24236:1 24254:1 24263:2 24272:1 24273:2 24275:1 24276:3 24283:1 24285:2 24301:1 24307:1 24311:2 24316:1 24319:1 24327:1 24332:2 24358:1 24360:1 24372:2 24382:1 24383:2 24386:3 24400:1 24402:1 24407:2 24436:1 24438:1 24450:2 24455:2 24475:1 24486:1 24487:1 24494:1 24495:3 24518:1 24534:1 24554:1 24568:1 24572:1 24573:1 24583:1 24586:4 24590:3 24603:1 24613:2 24618:1 24620:2 24621:1 24627:1 24633:1 24635:1 24651:1 24657:1 24663:1 24669:1 24676:2 24680:1 24693:1 24701:5 24708:1 24716:1 24719:1 24727:2 24735:1 24737:1 24772:1 24773:2 24777:1 24782:1 24786:3 24787:1 24795:2 24805:1 24808:1 24820:1 24839:1 24862:2 24863:1 24876:1 24935:1 24945:1 24976:1 24981:1 25019:2 25032:1 25033:1 25044:1 25047:1 25056:12 25071:1 25091:5 25097:1 25105:1 25115:6 25148:3 25174:1 25191:3 25192:1 25193:1 25200:1 25202:1 25214:1 25215:1 25246:1 25253:1 25266:1 25267:1 25271:1 25272:1 25275:1 25280:2 25301:1 25302:1 25308:1 25323:2 25330:1 25332:6 25340:1 25352:1 25353:1 25361:1 25364:2 25376:1 25391:1 25392:1 25398:2 25410:1 25413:1 25421:4 25442:1 25450:1 25470:1 25472:2 25476:1 25490:1 25525:2 25545:1 25556:1 25572:1 25577:1 25593:1 25619:1 25630:3 25655:1 25674:4 25689:1 25694:1 25704:1 25709:3 25736:1 25749:1 25766:2 25772:1 25781:1 25788:1 25793:1 25798:4 25802:2 25803:1 25808:1 25835:1 25844:2 25891:1 25907:1 25919:2 25927:1 25928:1 25937:1 25940:1 25961:1 25970:1 25995:1 26000:1 26011:1 26012:1 26014:1 26058:1 26065:1 26089:1 26092:1 26103:1 26107:1 26123:1 26125:3 26128:1 26133:1 26135:2 26136:1 26139:2 26143:1 26147:2 26154:1 26155:1 26158:1 26164:1 26169:1 26178:3 26192:1 26208:2 26213:1 26225:1 26235:2 26248:4 26262:1 26263:1 26268:3 26271:1 26280:1 26281:1 26288:2 26293:1 26305:5 26315:1 26339:3 26389:3 26428:1 26438:1 26444:1 26447:1 26466:1 26491:2 26552:1 26553:1 26560:1 26563:2 26589:1 26592:1 26594:1 26595:1 26604:1 26607:1 26608:2 26611:3 26618:1 26622:1 26630:1 26631:1 26632:1 26642:1 26653:4 26660:1 26690:1 26692:1 26694:1 26696:1 26716:1 26727:1 26746:1 26749:1 26755:1 26762:2 26769:1 26781:7 26809:3 26821:2 26863:1 26894:1 26901:2 26904:2 26915:1 26916:2 26929:1 26931:1 26943:1 27033:1 27034:1 27037:2 27039:1 27052:1 27075:2 27088:3 27093:1 27095:1 27097:1 27104:2 27113:1 27125:1 27138:1 27145:1 27163:1 27164:1 27177:1 27202:1 27207:1 27209:4 27216:1 27230:2 27232:1 27247:1 27253:1 27264:1 27273:1 27297:3 27302:2 27308:1 27315:1 27326:1 27338:1 27352:3 27362:2 27375:1 27390:1 27400:1 27402:1 27416:1 27422:1 27426:11 27427:1 27429:1 27466:1 27472:2 27488:1 27515:2 27546:1 27559:1 27575:1 27582:2 27583:1 27588:2 27604:3 27605:1 27606:2 27614:1 27620:2 27639:1 27662:7 27667:2 27685:2 27690:2 27693:1 27718:2 27737:5 27761:1 27768:1 27785:1 27788:1 27792:1 27799:1 27817:5 27822:1 27839:1 27851:7 27892:1 27906:1 27945:3 27950:1 27969:1 27979:1 27995:1 28000:1 28005:1 28025:1 28040:1 28046:1 28056:1 28072:1 28074:1 28084:2 28094:1 28122:2 28128:1 28139:1 28149:1 28159:1 28160:1 28189:1 28193:1 28197:1 28204:1 28207:1 28217:2 28256:1 28262:2 28275:1 28301:1 28307:1 28400:1 28419:1 28428:3 28459:1 28474:1 28488:1 28499:1 28502:1 28504:1 28505:1 28527:3 28540:8 28555:1 28561:2 28575:1 28630:1 28642:1 28658:2 28715:1 28723:1 28728:1 28744:1 28754:2 28755:7 28764:1 28765:1 28778:7 28783:2 28792:1 28809:1 28823:1 28843:2 28856:1 28858:8 28876:1 28877:2 28883:1 28900:1 28911:1 28916:1 28929:1 28933:20 28947:1 28960:1 28961:1 28977:1 28984:2 29024:1 29034:2 29039:1 29052:2 29063:1 29078:1 29090:1 29091:1 29126:1 29146:1 29154:1 29161:1 29182:1 29193:1 29221:2 29231:1 29239:4 29240:1 29268:1 29272:3 29292:1 29314:1 29339:2 29348:1 29349:2 29357:1 29387:2 29396:2 29404:1 29413:1 29422:1 29424:2 29429:1 29430:2 29431:3 29444:1 29457:4 29465:1 29471:4 29490:1 29495:2 29519:1 29535:1 29537:1 29543:2 29546:1 29551:1 29557:3 29560:1 29602:1 29627:1 29650:1 29652:2 29664:1 29675:1 29684:1 29708:1 29730:1 29742:1 29748:1 29749:1 29759:1 29761:1 29762:1 29763:1 29764:1 29770:1 29775:1 29795:2 29798:1 29816:7 29855:1 29865:1 29866:2 29890:1 29901:1 29902:1 29930:1 29931:1 29932:1 29935:1 29988:1 29990:1 29998:1 30003:1 30013:1 30036:1 30047:1 30056:2 30084:3 30088:1 30113:3 30123:1 30137:14 30138:1 30144:1 30145:1 30157:1 30162:3 30173:2 30180:2 30183:1 30184:2 30187:1 30225:2 30226:1 30239:4 30241:9 30253:1 30263:1 30264:2 30277:2 30279:1 30280:1 30284:1 30294:1 30312:1 30330:3 30334:1 30335:2 30339:4 30362:1 30385:1 30394:1 30396:6 30438:1 30447:1 30449:2 30459:1 30462:4 30466:1 30468:1 30508:1 30538:1 30541:1 30549:1 30551:1 30561:2 30573:1 30580:1 30586:1 30592:1 30607:1 30621:1 30637:1 30646:1 30653:1 30654:1 30678:1 30679:1 30680:1 30682:2 30686:2 30716:2 30725:2 30760:3 30787:1 30795:2 30815:4 30823:1 30854:3 30868:1 30871:1 30872:1 30897:2 30898:1 30901:1 30902:1 30903:1 30906:1 30927:1 30950:2 30952:1 30962:1 30998:1 31028:1 31032:1 31034:1 31037:2 31060:1 31076:1 31089:4 31095:1 31098:4 31105:2 31115:1 31168:1 31184:2 31210:1 31215:1 31233:4 31258:1 31316:1 31331:1 31341:1 31342:2 31353:1 31355:3 31359:1 31377:1 31378:1 31383:1 31407:3 31421:1 31427:2 31432:1 31446:1 31447:2 31462:1 31478:2 31481:1 31489:5 31495:1 31497:1 31505:6 31507:1 31508:1 31510:1 31514:1 31542:1 31548:1 31550:1 31559:1 31567:1 31615:2 18 6:1 8:1 14:1 18:1 21:1 34:1 55:1 69:1 75:1 80:1 123:2 188:4 210:2 214:1 216:2 219:1 232:1 237:2 269:2 273:2 283:3 302:1 323:3 339:4 352:1 358:1 359:1 372:7 383:1 384:1 389:1 394:1 395:1 448:1 449:3 454:1 464:1 466:1 469:1 477:1 490:1 501:1 538:1 548:2 552:1 570:1 572:1 595:2 599:1 600:3 603:1 618:1 628:3 632:1 646:2 656:3 664:1 683:1 694:2 704:6 715:1 716:1 735:1 748:3 756:1 767:2 768:1 781:1 782:1 790:1 795:1 802:1 866:1 881:1 888:4 890:3 898:1 909:1 921:1 923:1 924:3 926:1 937:2 949:1 950:2 960:2 964:1 970:1 973:1 992:1 1011:1 1014:2 1050:1 1130:1 1132:3 1135:2 1148:1 1152:1 1167:1 1181:1 1202:1 1210:1 1248:4 1270:2 1272:2 1279:2 1280:2 1281:1 1283:2 1295:1 1316:3 1332:1 1342:1 1343:1 1351:2 1353:1 1371:1 1434:1 1437:1 1444:2 1447:1 1453:2 1454:2 1461:1 1465:1 1487:2 1500:3 1501:1 1506:1 1518:1 1520:1 1522:1 1554:1 1556:2 1558:1 1562:1 1582:1 1595:1 1604:1 1615:2 1619:1 1633:4 1636:1 1637:3 1647:2 1662:1 1664:1 1689:1 1706:1 1708:2 1720:2 1723:1 1749:1 1752:1 1785:1 1789:3 1824:1 1842:4 1866:1 1885:1 1960:1 1963:1 1966:1 1979:2 1981:2 1985:1 1991:1 1993:3 2014:1 2043:2 2047:1 2073:1 2079:1 2085:2 2091:1 2093:2 2117:1 2131:2 2133:3 2137:1 2140:16 2143:1 2144:1 2147:1 2152:1 2169:1 2183:1 2187:1 2192:1 2212:1 2225:1 2242:2 2253:2 2263:1 2273:1 2290:1 2300:3 2303:1 2310:1 2312:5 2314:1 2315:1 2318:1 2319:5 2321:1 2322:1 2324:1 2326:1 2328:1 2329:4 2336:3 2342:2 2344:2 2361:2 2362:1 2363:1 2365:1 2369:1 2371:1 2374:1 2375:3 2377:2 2381:2 2382:1 2388:1 2393:2 2396:2 2397:4 2403:2 2407:1 2410:1 2412:1 2414:3 2416:1 2423:2 2432:20 2442:1 2450:3 2456:1 2506:4 2517:1 2521:1 2528:1 2541:1 2543:1 2545:1 2547:1 2555:1 2557:4 2565:1 2580:1 2608:1 2621:2 2645:1 2649:1 2653:1 2662:1 2687:2 2699:5 2701:1 2717:1 2718:1 2720:2 2728:3 2737:1 2754:2 2793:1 2820:2 2827:2 2828:1 2836:1 2847:1 2850:2 2873:1 2880:1 2883:2 2889:1 2895:1 2896:1 2925:1 2931:1 2949:1 2952:6 2956:1 2964:2 2974:1 2975:1 3040:1 3050:2 3059:1 3063:11 3066:3 3068:1 3088:1 3107:1 3116:1 3119:19 3126:1 3127:2 3129:1 3143:2 3148:2 3156:1 3164:3 3182:1 3184:1 3218:1 3221:1 3226:1 3230:1 3317:2 3330:6 3388:4 3401:1 3439:1 3442:1 3447:1 3448:3 3467:1 3479:1 3489:1 3490:1 3494:3 3495:1 3500:1 3528:3 3532:1 3537:2 3545:1 3563:2 3573:1 3581:1 3588:1 3595:1 3600:1 3619:1 3719:1 3728:1 3736:4 3791:1 3798:1 3808:1 3820:2 3828:1 3838:1 3860:1 3861:1 3872:1 3900:1 3928:2 3949:2 3952:3 3973:2 3982:1 3997:1 4010:1 4019:1 4020:3 4025:2 4056:1 4058:1 4063:1 4064:4 4065:4 4066:1 4077:1 4078:1 4086:2 4089:2 4115:4 4123:1 4128:1 4129:2 4133:3 4166:1 4167:1 4173:1 4176:1 4181:1 4185:3 4186:1 4197:1 4202:1 4232:1 4242:1 4248:1 4255:1 4260:1 4281:2 4289:1 4301:1 4307:2 4313:2 4328:1 4348:1 4354:2 4376:1 4390:1 4410:1 4419:2 4422:3 4431:4 4437:1 4456:1 4467:2 4492:1 4496:1 4505:1 4526:1 4531:1 4540:2 4549:1 4560:1 4609:2 4631:2 4634:1 4661:1 4668:1 4677:3 4711:1 4715:1 4717:2 4754:2 4757:1 4779:1 4789:5 4793:1 4798:1 4803:1 4848:1 4851:2 4868:1 4890:1 4917:1 4920:1 4921:1 4922:3 4928:2 4933:1 4946:3 4968:1 4969:3 4983:1 4992:1 5002:1 5009:1 5012:5 5024:4 5031:1 5039:1 5041:1 5046:1 5080:1 5082:1 5098:3 5104:1 5108:1 5116:2 5119:1 5121:1 5136:1 5154:1 5155:1 5204:1 5212:2 5245:1 5249:1 5268:3 5272:1 5282:1 5300:1 5310:14 5314:2 5315:1 5325:1 5335:1 5365:1 5370:1 5380:1 5423:1 5440:1 5444:1 5455:1 5474:2 5478:1 5481:1 5526:2 5531:1 5545:1 5546:1 5562:1 5567:1 5571:1 5575:1 5581:3 5582:1 5622:1 5648:2 5651:2 5683:1 5699:1 5719:3 5743:1 5746:3 5759:2 5764:1 5779:1 5783:1 5785:1 5790:2 5795:1 5799:1 5800:1 5811:1 5817:1 5831:1 5859:8 5882:1 5887:1 5894:1 5900:1 5912:1 5919:1 5921:2 5925:5 5942:2 5975:1 5992:1 6000:1 6006:1 6008:1 6014:1 6020:2 6027:1 6029:1 6049:1 6053:2 6057:1 6087:1 6090:1 6110:2 6127:1 6128:1 6195:2 6227:2 6232:2 6242:1 6266:1 6294:1 6297:1 6334:1 6341:4 6363:2 6378:2 6397:1 6409:1 6442:2 6444:1 6445:2 6471:1 6472:1 6480:1 6492:1 6497:1 6555:2 6557:1 6571:1 6575:1 6590:2 6603:3 6612:1 6613:9 6630:3 6645:1 6654:1 6672:2 6696:1 6698:3 6699:1 6721:1 6763:6 6815:6 6826:2 6827:1 6828:1 6829:1 6832:5 6842:1 6849:1 6851:1 6875:1 6883:1 6894:4 6916:3 6917:1 6923:1 6926:1 6931:1 6932:2 6935:1 6938:1 6939:1 6941:1 6942:2 6945:1 7005:1 7065:1 7071:1 7081:1 7084:2 7090:1 7093:3 7113:8 7127:1 7128:1 7169:1 7180:1 7197:2 7210:1 7230:1 7234:1 7239:8 7240:1 7268:1 7280:1 7296:1 7302:10 7303:1 7319:2 7333:1 7345:1 7369:1 7380:2 7388:1 7401:1 7419:1 7421:2 7428:3 7429:1 7434:3 7439:1 7460:1 7463:1 7468:1 7516:1 7532:1 7550:2 7560:2 7561:1 7575:1 7576:1 7584:1 7643:2 7651:1 7658:1 7694:1 7706:1 7750:6 7762:1 7763:1 7764:2 7779:1 7781:1 7814:2 7818:1 7823:1 7870:2 7901:1 7906:3 7936:1 7944:1 7945:4 7969:1 7971:1 7978:3 7979:1 7996:1 8006:1 8030:2 8033:2 8055:1 8058:16 8068:3 8088:1 8104:1 8105:1 8126:1 8130:1 8175:1 8179:1 8185:1 8241:4 8258:2 8289:2 8307:4 8309:1 8327:1 8328:1 8329:2 8332:2 8333:5 8341:1 8351:3 8352:2 8359:6 8360:2 8364:1 8372:1 8377:1 8378:1 8386:22 8389:1 8410:20 8413:1 8441:1 8452:1 8483:1 8513:1 8544:1 8546:1 8560:1 8569:1 8592:3 8595:3 8624:1 8648:1 8682:1 8705:3 8710:3 8712:1 8761:1 8766:3 8781:1 8819:2 8829:1 8839:1 8841:1 8868:1 8879:1 8883:1 8889:2 8921:13 8950:3 8976:15 8982:6 8984:2 8985:1 8986:1 9007:1 9020:1 9021:3 9059:1 9073:1 9079:1 9100:1 9117:1 9120:1 9134:1 9138:4 9182:1 9183:16 9191:2 9208:1 9220:8 9223:1 9235:1 9250:1 9283:1 9285:1 9286:1 9290:2 9296:1 9299:1 9300:1 9301:2 9302:1 9304:1 9312:1 9315:1 9317:2 9355:1 9380:2 9381:6 9390:1 9395:2 9402:1 9403:1 9406:1 9416:1 9417:1 9451:1 9490:1 9491:2 9508:1 9514:2 9520:1 9561:1 9570:2 9571:1 9597:2 9610:1 9648:1 9652:2 9658:2 9675:1 9685:2 9701:1 9713:2 9715:1 9724:1 9725:2 9734:3 9740:1 9743:2 9781:1 9785:1 9789:1 9792:1 9799:1 9801:1 9815:2 9831:1 9844:2 9850:1 9856:1 9859:1 9893:1 9910:2 9911:1 9920:1 9932:1 9934:1 9957:2 9979:1 9985:1 10048:2 10062:1 10086:1 10095:1 10116:3 10135:1 10178:1 10185:1 10206:1 10211:1 10214:1 10251:3 10255:1 10257:1 10273:1 10283:2 10342:1 10351:1 10372:3 10374:1 10377:6 10381:32 10383:1 10385:3 10387:1 10392:2 10399:1 10402:1 10406:1 10416:3 10420:1 10423:1 10430:2 10434:2 10450:4 10491:1 10492:2 10503:1 10510:2 10516:2 10532:1 10539:1 10545:1 10552:1 10569:1 10608:1 10621:2 10622:1 10649:1 10654:1 10655:1 10659:2 10678:4 10705:1 10716:1 10751:1 10757:2 10759:1 10773:1 10776:1 10777:2 10784:1 10793:3 10800:3 10808:1 10822:1 10828:3 10830:1 10836:1 10857:2 10860:20 10886:1 10922:2 10951:4 10971:1 10988:1 10989:1 11034:1 11094:1 11113:1 11114:2 11126:1 11130:2 11139:1 11178:1 11183:1 11185:1 11189:1 11203:1 11209:1 11221:1 11257:1 11274:1 11289:1 11295:2 11304:2 11306:1 11313:3 11362:2 11383:1 11388:1 11404:3 11408:2 11451:1 11453:2 11467:16 11473:1 11484:1 11486:1 11489:1 11498:1 11503:1 11514:1 11515:5 11520:1 11530:1 11553:1 11557:2 11574:4 11585:1 11591:2 11598:1 11608:1 11634:1 11654:1 11655:1 11661:2 11663:1 11693:1 11703:1 11710:8 11714:1 11728:1 11730:1 11761:1 11766:1 11785:1 11798:1 11820:1 11840:3 11854:1 11860:4 11863:2 11864:1 11866:1 11879:1 11883:1 11886:3 11887:1 11888:2 11893:2 11896:1 11900:1 11910:1 11929:1 11943:1 12001:1 12004:1 12025:1 12026:1 12042:4 12048:1 12071:1 12072:1 12088:1 12094:1 12097:1 12098:1 12123:1 12145:1 12167:1 12174:2 12186:1 12191:1 12213:1 12214:2 12220:2 12225:1 12227:1 12228:1 12239:1 12258:1 12260:1 12266:1 12289:1 12296:1 12319:1 12327:1 12334:1 12351:1 12373:1 12399:1 12419:1 12420:3 12424:1 12425:1 12427:1 12463:1 12475:1 12476:1 12489:1 12505:1 12530:1 12536:3 12543:1 12551:4 12564:2 12574:1 12576:1 12583:1 12595:2 12630:2 12646:3 12648:1 12653:1 12659:1 12665:2 12677:6 12680:2 12686:3 12704:1 12706:6 12716:2 12730:1 12735:1 12739:3 12745:1 12774:1 12778:1 12787:1 12810:3 12838:1 12884:1 12890:1 12974:1 12983:1 13000:1 13027:1 13034:1 13053:1 13055:2 13061:1 13062:1 13081:4 13086:1 13091:1 13098:1 13105:2 13142:1 13166:1 13188:1 13191:1 13209:2 13226:2 13230:1 13232:2 13270:1 13276:1 13301:1 13319:1 13329:1 13337:2 13351:8 13363:1 13364:1 13369:1 13387:2 13392:2 13405:1 13416:1 13457:1 13478:1 13506:1 13537:1 13544:2 13545:2 13550:1 13604:1 13616:1 13637:1 13640:1 13644:1 13674:2 13698:1 13703:1 13705:1 13736:9 13754:1 13762:11 13794:1 13797:1 13825:1 13834:1 13835:1 13845:1 13855:1 13858:1 13861:1 13936:2 13940:1 13941:2 13987:1 13989:1 13990:2 13993:1 14001:11 14052:1 14061:7 14082:1 14095:1 14103:1 14204:1 14232:1 14236:1 14250:2 14255:1 14257:1 14274:2 14295:1 14301:4 14311:2 14313:1 14314:1 14326:1 14328:2 14330:1 14355:1 14393:1 14395:1 14404:1 14411:1 14417:1 14426:3 14450:2 14460:1 14467:2 14474:1 14482:2 14483:1 14493:1 14514:1 14517:1 14520:1 14523:1 14524:1 14526:1 14544:1 14545:1 14549:1 14552:2 14557:4 14563:1 14582:1 14584:1 14626:1 14638:1 14661:1 14662:4 14670:1 14677:4 14713:1 14717:2 14720:1 14727:1 14736:1 14744:4 14749:1 14752:2 14757:1 14760:1 14799:1 14804:3 14828:1 14837:1 14847:2 14859:2 14883:1 14890:1 14913:1 14914:1 14915:6 14936:2 14946:1 14965:1 14972:1 14975:2 14987:1 14990:1 15026:1 15035:2 15059:1 15072:1 15078:1 15114:3 15144:3 15154:2 15195:1 15210:3 15213:2 15219:1 15233:2 15252:2 15256:1 15274:1 15287:1 15338:1 15344:1 15375:1 15400:1 15433:1 15438:8 15448:1 15455:1 15503:1 15510:1 15512:1 15528:1 15530:3 15535:2 15541:1 15545:1 15551:3 15553:1 15558:1 15585:1 15604:20 15606:2 15608:1 15659:3 15660:1 15663:1 15710:5 15715:1 15737:1 15744:1 15763:1 15764:1 15822:1 15828:1 15843:1 15852:1 15871:1 15905:1 15925:1 15934:1 15951:1 15975:1 15980:1 15992:1 15994:1 15997:1 15999:1 16004:1 16006:3 16019:2 16026:2 16046:1 16064:2 16090:1 16100:1 16121:1 16130:1 16132:1 16153:1 16158:2 16161:1 16162:1 16165:1 16169:1 16175:1 16195:1 16196:3 16201:4 16224:1 16227:3 16236:1 16255:1 16256:6 16259:2 16274:1 16288:1 16318:1 16330:1 16332:1 16335:1 16351:1 16364:1 16375:12 16450:1 16451:1 16460:1 16461:1 16469:3 16481:1 16491:1 16506:1 16524:1 16539:4 16589:2 16594:2 16612:1 16639:1 16642:1 16645:1 16663:1 16699:4 16702:2 16709:5 16712:1 16722:2 16732:1 16763:1 16766:1 16772:1 16780:3 16804:12 16806:1 16817:1 16824:1 16825:1 16838:2 16869:1 16890:1 16913:6 16919:1 16952:1 16958:1 16963:2 16972:1 16982:1 16995:1 17004:1 17038:1 17052:1 17058:3 17074:1 17075:1 17098:3 17107:1 17127:1 17145:1 17161:1 17163:4 17164:4 17196:1 17200:2 17202:1 17204:2 17214:1 17223:1 17236:1 17248:1 17256:1 17267:2 17290:1 17291:1 17295:1 17302:2 17345:2 17361:2 17373:1 17413:2 17432:1 17461:6 17482:1 17488:1 17490:3 17495:1 17505:1 17509:1 17514:2 17521:3 17522:1 17559:1 17561:1 17564:1 17572:1 17584:1 17588:1 17590:1 17591:1 17599:1 17603:1 17604:2 17610:2 17613:1 17615:1 17658:1 17671:1 17678:2 17679:1 17680:1 17700:1 17717:1 17718:1 17792:3 17802:1 17828:1 17834:1 17835:2 17836:1 17848:2 17867:1 17882:1 17932:1 17933:1 17944:1 17958:1 17991:2 18028:1 18045:1 18068:1 18076:1 18108:1 18110:2 18114:2 18120:6 18143:1 18167:1 18173:1 18174:9 18218:1 18223:1 18247:1 18260:1 18286:2 18296:1 18334:1 18344:1 18366:1 18369:1 18373:2 18374:1 18383:1 18414:1 18415:1 18421:1 18424:2 18425:2 18427:2 18435:12 18438:6 18452:6 18457:2 18472:2 18479:4 18488:2 18515:1 18579:1 18615:3 18616:1 18632:1 18635:1 18639:2 18643:1 18648:2 18651:1 18661:1 18713:1 18728:2 18743:1 18746:3 18752:2 18759:1 18783:2 18789:3 18793:1 18797:1 18823:1 18833:1 18841:1 18879:1 18882:1 18885:1 18910:1 18911:1 18918:1 18928:1 18934:2 18951:2 18964:2 18974:4 18984:2 18988:3 19004:1 19008:1 19013:1 19019:1 19021:3 19026:1 19030:1 19035:1 19036:1 19054:3 19057:3 19065:1 19066:1 19072:2 19077:3 19087:1 19113:2 19114:1 19118:4 19124:1 19130:1 19132:1 19138:1 19155:1 19176:1 19182:1 19217:1 19226:1 19234:1 19266:2 19284:3 19287:1 19288:1 19291:1 19297:2 19341:1 19372:1 19387:1 19390:1 19399:1 19401:2 19414:1 19418:2 19428:1 19443:1 19446:4 19450:1 19460:1 19472:3 19504:6 19511:6 19516:5 19521:1 19522:1 19537:1 19557:1 19558:4 19571:4 19589:1 19636:1 19648:1 19664:1 19670:1 19671:3 19676:1 19757:2 19783:1 19802:6 19812:1 19847:1 19875:1 19879:1 19880:1 19883:1 19906:1 19908:6 19916:1 19925:1 19959:4 19980:20 20029:1 20034:2 20070:2 20083:2 20110:1 20129:4 20131:1 20174:2 20179:1 20264:1 20268:20 20271:1 20272:1 20293:2 20304:1 20326:1 20328:2852 20336:1 20365:1 20372:1 20378:3 20407:1 20411:1 20434:1 20439:1 20448:1 20468:1 20471:2 20497:4 20499:1 20503:1 20521:1 20526:1 20529:1 20530:1 20531:1 20551:1 20557:2 20565:5 20569:1 20576:1 20578:5 20582:1 20584:1 20585:2 20596:1 20603:2 20611:1 20647:1 20662:1 20665:1 20669:3 20741:1 20743:1 20781:1 20796:1 20802:1 20806:1 20820:1 20825:1 20828:1 20856:1 20915:1 20977:6 20985:1 21007:1 21021:8 21023:4 21027:1 21044:1 21049:1 21050:2 21072:1 21079:3 21092:1 21095:1 21097:2 21101:1 21117:1 21132:1 21140:1 21145:1 21146:2 21147:1 21156:1 21160:7 21192:2 21216:1 21226:1 21237:4 21262:6 21276:1 21279:1 21291:1 21298:12 21299:2 21308:1 21309:1 21326:2 21350:1 21359:1 21361:1 21378:18 21391:1 21398:2 21399:1 21417:1 21425:3 21436:2 21442:1 21446:1 21464:1 21476:2 21486:1 21511:2 21523:1 21524:3 21542:1 21547:1 21551:5 21573:1 21580:1 21590:2 21597:4 21598:2 21603:1 21635:2 21652:1 21666:1 21667:1 21676:1 21747:1 21753:1 21755:4 21761:1 21777:2 21798:2 21832:1 21862:1 21863:1 21868:1 21871:1 21875:3 21879:1 21888:1 21894:1 21905:1 21926:1 21936:1 21971:2 21972:1 21978:1 22001:1 22010:1 22021:1 22036:1 22045:10 22062:1 22064:1 22066:2 22068:1 22084:9 22116:1 22117:1 22149:1 22159:1 22235:2 22240:1 22272:2 22284:1 22287:1 22288:2 22299:1 22307:1 22316:1 22325:4 22337:1 22339:2 22345:6 22367:1 22381:2 22387:1 22411:1 22446:1 22450:4 22456:2 22462:1 22476:1 22482:4 22507:1 22512:1 22513:1 22533:2 22538:1 22548:1 22577:1 22585:1 22589:1 22604:1 22617:2 22622:1 22630:1 22635:2 22636:1 22643:2 22655:7 22657:1 22661:1 22674:10 22703:1 22704:1 22716:1 22724:1 22736:1 22747:1 22784:1 22786:1 22810:1 22812:1 22815:4 22818:1 22819:1 22827:2 22829:1 22838:1 22854:1 22868:1 22870:1 22876:2 22902:1 22904:2 22939:1 22957:1 22987:1 22988:2 22991:1 22992:1 23010:1 23019:1 23026:1 23034:2 23037:2 23058:1 23078:1 23084:4 23116:1 23129:1 23147:1 23168:2 23169:1 23178:1 23201:1 23233:1 23242:1 23245:1 23248:1 23256:1 23257:1 23261:2 23276:3 23280:1 23303:1 23307:1 23317:1 23322:1 23325:1 23331:1 23346:2 23349:1 23363:1 23368:1 23377:1 23380:1 23382:1 23392:1 23399:1 23422:1 23458:2 23462:3 23476:2 23496:1 23511:2 23513:1 23519:3 23535:2 23543:2 23554:1 23556:1 23566:1 23571:1 23572:3 23573:2 23583:1 23590:4 23615:1 23616:1 23657:1 23662:1 23723:2 23737:1 23744:1 23745:1 23763:1 23803:1 23811:2 23826:2 23836:1 23863:6 23870:1 23871:1 23878:1 23880:1 23893:1 23899:1 23912:1 23921:8 23954:1 23958:1 23965:1 23973:1 23979:1 23981:1 23988:1 24008:1 24009:2 24023:1 24026:2 24032:1 24038:1 24039:2 24055:1 24057:1 24063:1 24078:1 24101:1 24115:2 24119:1 24144:1 24148:1 24153:1 24159:1 24163:1 24164:1 24172:1 24174:1 24181:3 24183:3 24187:1 24190:1 24198:1 24225:1 24232:2 24233:2 24236:1 24254:1 24263:2 24272:1 24273:2 24275:1 24276:3 24283:1 24285:2 24301:1 24307:1 24311:2 24316:2 24319:1 24327:1 24332:2 24358:1 24360:1 24372:2 24382:1 24383:2 24386:3 24400:1 24402:1 24407:2 24436:1 24438:1 24450:2 24455:2 24475:1 24476:1 24486:1 24487:1 24494:1 24495:3 24518:1 24534:1 24554:1 24568:1 24572:1 24573:1 24583:1 24586:4 24590:3 24603:1 24613:2 24618:1 24620:2 24621:1 24627:1 24633:1 24635:1 24651:1 24657:1 24663:1 24669:1 24676:2 24680:1 24693:1 24701:5 24708:1 24716:1 24719:1 24727:2 24735:1 24737:1 24772:1 24773:2 24777:1 24782:1 24786:3 24787:1 24795:2 24805:1 24808:1 24820:1 24839:1 24862:2 24863:1 24876:1 24935:1 24945:1 24976:1 24981:1 24988:1 25019:2 25032:1 25033:1 25044:1 25047:1 25056:13 25071:1 25091:5 25097:1 25105:1 25115:6 25148:3 25174:1 25191:3 25192:1 25193:1 25200:1 25202:1 25214:1 25215:1 25246:1 25253:1 25266:1 25267:1 25268:1 25271:1 25272:1 25275:1 25280:3 25301:1 25302:1 25308:1 25323:2 25330:1 25332:7 25340:1 25352:1 25353:1 25361:1 25364:2 25376:1 25391:1 25392:1 25398:2 25410:1 25413:1 25421:4 25442:1 25450:1 25470:1 25472:2 25476:1 25490:1 25525:2 25545:1 25556:1 25572:1 25577:1 25593:1 25619:1 25630:3 25655:1 25674:4 25689:1 25694:1 25704:1 25709:3 25734:1 25736:1 25749:1 25766:2 25772:1 25781:1 25788:1 25793:1 25798:4 25802:2 25803:1 25808:1 25835:1 25844:2 25891:1 25907:1 25919:2 25927:1 25928:1 25937:1 25940:1 25961:1 25970:1 25995:1 26000:1 26011:1 26012:1 26014:1 26058:1 26065:1 26089:1 26092:1 26103:1 26107:1 26123:1 26125:3 26128:1 26133:1 26135:2 26136:1 26139:2 26143:1 26147:2 26154:1 26155:1 26158:1 26164:1 26169:1 26178:3 26192:1 26208:2 26213:1 26225:1 26235:2 26248:4 26262:1 26263:1 26268:3 26271:1 26280:1 26281:1 26288:2 26293:1 26305:5 26315:1 26339:3 26355:1 26364:1 26389:3 26428:1 26438:1 26444:2 26447:1 26466:1 26491:2 26552:1 26553:1 26560:1 26563:2 26569:1 26589:1 26592:1 26594:1 26595:1 26604:1 26607:1 26608:2 26611:3 26618:1 26622:1 26630:1 26631:1 26632:1 26642:1 26653:4 26660:1 26690:1 26692:1 26694:1 26696:1 26716:1 26727:1 26746:1 26749:1 26755:1 26762:2 26769:1 26781:7 26809:3 26821:2 26863:1 26894:1 26901:2 26902:1 26904:2 26915:1 26916:2 26929:1 26931:1 26943:1 27033:1 27034:1 27037:2 27039:1 27052:1 27075:2 27088:3 27093:1 27095:1 27097:1 27104:2 27113:1 27125:1 27138:1 27145:1 27163:1 27164:1 27177:1 27202:1 27207:1 27209:4 27216:1 27230:2 27232:1 27247:1 27253:1 27264:1 27273:1 27297:3 27302:2 27308:1 27315:1 27326:1 27338:1 27352:3 27362:2 27375:1 27390:1 27400:1 27402:1 27416:1 27422:1 27426:11 27427:1 27429:1 27466:1 27472:2 27488:1 27515:2 27546:1 27559:1 27575:1 27582:2 27583:1 27588:2 27604:3 27605:1 27606:2 27614:1 27620:2 27639:1 27662:7 27667:3 27685:2 27690:2 27693:1 27718:2 27726:1 27737:5 27761:2 27768:1 27785:1 27788:1 27792:1 27799:1 27817:5 27822:1 27839:1 27851:7 27892:1 27906:1 27945:3 27950:1 27969:1 27979:1 27995:1 28000:1 28005:1 28025:1 28040:1 28046:1 28056:1 28072:1 28074:1 28084:2 28094:1 28122:2 28128:1 28139:1 28149:1 28159:1 28160:1 28189:1 28193:1 28197:1 28204:2 28207:1 28217:2 28256:1 28262:2 28275:1 28301:1 28307:1 28400:1 28419:1 28428:3 28459:1 28474:1 28488:1 28499:1 28502:1 28504:1 28505:1 28527:3 28540:8 28555:1 28561:2 28575:1 28630:1 28642:1 28644:1 28658:2 28715:1 28723:2 28728:1 28744:1 28754:2 28755:7 28764:1 28765:1 28778:8 28783:2 28792:1 28800:1 28809:1 28823:1 28843:2 28856:1 28858:8 28876:1 28877:3 28883:1 28900:1 28911:1 28916:1 28929:1 28933:20 28947:1 28960:1 28961:1 28977:1 28984:2 29024:1 29034:2 29039:1 29052:2 29063:1 29071:1 29078:1 29090:1 29091:1 29126:1 29146:1 29154:1 29161:1 29182:1 29193:1 29221:3 29231:1 29239:4 29240:1 29268:1 29272:3 29292:1 29314:1 29339:2 29348:1 29349:2 29357:1 29387:2 29396:2 29404:2 29413:1 29422:1 29424:2 29429:1 29430:2 29431:3 29444:1 29457:5 29465:1 29471:4 29490:1 29495:2 29519:1 29535:1 29537:1 29543:2 29546:1 29551:1 29557:3 29560:1 29602:1 29627:1 29650:1 29652:2 29664:1 29675:1 29684:1 29708:1 29721:1 29730:1 29742:1 29748:1 29749:1 29759:1 29761:1 29762:1 29763:1 29764:1 29770:1 29775:1 29795:2 29798:1 29810:1 29816:8 29855:1 29865:1 29866:2 29890:1 29901:1 29902:1 29930:1 29931:1 29932:1 29935:1 29988:1 29990:1 29998:1 30003:1 30013:1 30036:1 30047:1 30056:2 30084:3 30088:1 30113:3 30123:1 30137:14 30138:1 30144:1 30145:1 30157:1 30162:3 30173:2 30180:2 30183:1 30184:2 30187:1 30225:2 30226:1 30239:4 30241:10 30253:1 30263:1 30264:2 30277:2 30279:1 30280:1 30284:1 30294:1 30312:1 30330:3 30334:1 30335:2 30339:4 30362:1 30385:1 30394:1 30396:6 30438:1 30447:1 30449:2 30459:1 30462:4 30466:1 30468:1 30508:1 30538:1 30541:1 30549:1 30551:1 30561:2 30573:1 30580:1 30586:1 30592:1 30607:1 30621:2 30637:1 30646:1 30653:1 30654:1 30678:1 30679:1 30680:1 30682:2 30686:2 30716:2 30725:2 30760:3 30787:1 30795:2 30815:4 30823:1 30854:3 30868:1 30871:1 30872:1 30897:2 30898:1 30901:1 30902:1 30903:1 30906:1 30927:1 30950:2 30952:1 30962:1 30998:1 31028:1 31032:1 31034:1 31037:2 31060:1 31076:1 31089:4 31095:1 31098:4 31105:2 31115:1 31128:1 31156:1 31168:1 31184:2 31210:1 31215:1 31233:4 31258:1 31316:1 31331:1 31341:1 31342:2 31353:1 31355:3 31359:1 31377:1 31378:1 31383:1 31407:3 31421:1 31427:2 31432:1 31446:1 31447:2 31462:1 31478:2 31481:1 31489:5 31494:1 31495:1 31497:1 31505:6 31507:1 31508:1 31510:1 31514:1 31542:1 31548:1 31550:1 31559:1 31567:1 31615:2 18 6:1 8:1 14:1 18:1 21:1 34:1 37:1 55:1 69:1 75:1 80:1 85:1 123:2 188:4 210:2 214:1 216:2 219:1 232:1 237:2 269:2 273:2 283:3 302:1 323:3 339:4 352:1 358:1 359:1 372:7 383:1 384:1 389:1 394:1 395:1 410:1 448:1 449:3 454:1 462:1 464:1 466:1 469:1 477:1 490:1 501:1 538:1 548:2 552:1 570:1 572:1 595:2 599:1 600:3 603:1 618:1 628:4 632:1 646:2 656:4 664:1 683:1 694:2 704:6 715:1 716:1 735:1 748:3 756:1 767:3 768:1 781:1 782:1 790:1 795:1 802:1 846:1 866:1 881:1 888:4 890:3 898:1 909:1 921:1 923:1 924:3 926:1 937:2 949:1 950:2 960:2 964:1 970:1 973:1 992:1 1011:1 1014:4 1050:1 1130:1 1132:3 1135:2 1148:1 1152:1 1167:1 1181:1 1202:1 1210:1 1248:4 1270:2 1272:2 1279:2 1280:2 1281:1 1283:2 1295:1 1316:3 1332:1 1342:1 1343:1 1351:2 1353:1 1371:1 1434:1 1437:1 1444:2 1447:1 1453:2 1454:2 1461:1 1465:1 1487:2 1500:3 1501:1 1506:1 1518:1 1520:1 1522:1 1554:1 1556:2 1558:1 1562:1 1582:1 1595:1 1604:1 1615:2 1619:1 1633:4 1636:1 1637:3 1647:2 1648:1 1662:1 1664:1 1689:1 1706:2 1708:2 1720:2 1723:1 1749:1 1752:1 1785:1 1789:3 1824:1 1842:4 1866:1 1885:1 1960:1 1963:1 1966:1 1979:2 1981:2 1985:1 1991:1 1993:3 2014:1 2043:2 2047:1 2073:1 2079:1 2085:2 2091:1 2093:2 2117:1 2131:2 2133:3 2137:1 2140:16 2143:1 2144:1 2147:1 2152:1 2169:1 2183:1 2187:1 2192:1 2212:1 2225:1 2242:2 2253:2 2254:1 2263:1 2273:1 2290:1 2300:3 2303:1 2310:1 2312:5 2314:1 2315:1 2318:1 2319:5 2321:1 2322:1 2324:1 2326:1 2328:1 2329:4 2336:4 2342:2 2344:2 2346:1 2361:2 2362:1 2363:1 2365:1 2369:1 2371:1 2374:1 2375:3 2377:2 2381:2 2382:1 2388:1 2393:2 2396:2 2397:4 2403:2 2407:1 2410:1 2412:1 2414:3 2416:1 2423:2 2432:20 2442:1 2450:3 2456:1 2506:4 2517:1 2521:1 2528:1 2541:1 2543:1 2545:1 2547:1 2555:1 2557:4 2565:1 2580:1 2608:1 2621:2 2645:1 2649:1 2653:1 2662:1 2687:2 2699:5 2701:1 2717:1 2718:1 2720:2 2728:3 2737:1 2754:2 2793:1 2820:2 2827:2 2828:1 2836:1 2847:1 2850:2 2873:1 2880:1 2883:2 2889:1 2895:1 2896:1 2925:1 2931:1 2949:1 2952:6 2956:1 2964:2 2974:1 2975:1 3040:1 3050:2 3059:1 3063:11 3066:3 3068:1 3088:1 3107:1 3116:1 3119:20 3126:1 3127:2 3129:1 3143:2 3148:2 3156:1 3164:3 3182:1 3184:1 3218:1 3221:1 3226:1 3230:1 3317:2 3330:6 3388:4 3401:1 3439:1 3442:1 3447:1 3448:3 3467:1 3479:1 3489:1 3490:1 3494:3 3495:1 3500:1 3528:3 3532:1 3537:2 3545:1 3563:2 3573:1 3581:1 3588:1 3595:1 3600:1 3619:1 3661:1 3719:1 3728:1 3732:1 3736:4 3791:1 3798:1 3808:1 3820:2 3828:1 3838:1 3860:1 3861:1 3872:1 3900:1 3928:2 3949:2 3952:3 3973:2 3982:1 3997:1 4010:1 4019:1 4020:3 4025:2 4056:1 4058:2 4063:1 4064:5 4065:5 4066:1 4077:1 4078:1 4086:2 4089:2 4115:4 4123:1 4128:1 4129:2 4133:3 4166:1 4167:1 4173:1 4176:1 4181:1 4185:3 4186:1 4197:1 4202:1 4232:1 4242:1 4248:1 4255:2 4260:1 4281:2 4289:1 4301:1 4307:2 4313:2 4328:2 4348:1 4354:2 4376:1 4390:1 4410:1 4419:2 4422:3 4431:4 4437:1 4456:1 4467:2 4492:1 4496:1 4505:1 4526:1 4531:1 4540:2 4549:1 4560:1 4600:1 4609:2 4631:2 4634:1 4661:1 4663:1 4668:1 4677:3 4711:1 4712:1 4715:1 4717:2 4754:2 4757:1 4779:1 4789:5 4793:1 4798:1 4803:1 4848:1 4851:2 4868:1 4890:1 4917:1 4920:1 4921:2 4922:3 4928:2 4933:1 4946:3 4968:1 4969:3 4983:1 4992:1 5002:1 5009:1 5012:5 5024:5 5031:1 5039:1 5041:1 5046:1 5080:1 5082:1 5098:3 5104:1 5108:2 5116:2 5119:1 5121:1 5136:1 5154:1 5155:1 5204:1 5212:2 5245:1 5249:1 5268:3 5272:1 5282:1 5300:1 5310:14 5314:2 5315:1 5325:1 5335:1 5365:1 5370:1 5380:1 5423:1 5440:1 5444:1 5455:1 5474:2 5478:1 5481:1 5526:2 5531:1 5545:1 5546:1 5562:1 5567:1 5571:1 5575:1 5581:3 5582:1 5622:1 5648:2 5651:2 5683:1 5699:1 5719:3 5743:1 5746:3 5759:2 5764:1 5779:1 5783:1 5785:1 5790:2 5795:1 5799:1 5800:1 5811:1 5817:1 5831:1 5859:8 5882:1 5887:1 5894:1 5900:1 5912:1 5919:1 5921:2 5925:5 5942:2 5975:1 5992:1 6000:1 6006:1 6008:1 6014:1 6020:2 6027:1 6029:1 6049:1 6053:2 6057:1 6087:1 6090:1 6110:2 6127:1 6128:1 6195:2 6227:2 6232:2 6242:1 6262:1 6266:1 6294:1 6297:1 6334:1 6341:4 6363:2 6378:2 6397:1 6409:1 6442:2 6444:1 6445:2 6471:1 6472:1 6473:1 6480:1 6492:1 6497:1 6500:1 6555:2 6557:1 6571:1 6575:1 6590:2 6603:4 6612:1 6613:9 6630:3 6645:1 6654:1 6672:2 6696:1 6698:3 6699:1 6721:1 6763:6 6815:6 6826:2 6827:2 6828:1 6829:1 6832:7 6842:1 6849:1 6851:1 6869:1 6875:1 6883:1 6894:4 6916:3 6917:1 6923:1 6926:1 6931:1 6932:2 6935:1 6938:1 6939:1 6941:1 6942:2 6945:1 6969:1 7005:1 7065:1 7071:1 7081:1 7084:2 7090:1 7093:3 7113:8 7127:1 7128:1 7169:1 7180:1 7197:2 7210:1 7230:1 7234:1 7239:8 7240:1 7268:1 7280:1 7296:1 7302:10 7303:1 7319:2 7333:1 7345:1 7369:1 7380:2 7388:1 7401:1 7419:1 7421:2 7428:3 7429:1 7434:3 7439:1 7460:1 7463:1 7468:1 7516:1 7529:1 7532:1 7550:2 7560:2 7561:1 7575:1 7576:1 7584:1 7643:2 7651:1 7658:1 7694:1 7706:1 7750:6 7762:1 7763:1 7764:2 7779:1 7781:1 7814:2 7818:1 7823:1 7870:2 7901:1 7906:3 7936:1 7944:1 7945:4 7969:1 7971:1 7978:3 7979:1 7996:1 8006:1 8030:2 8033:2 8055:1 8058:16 8068:3 8088:2 8104:1 8105:1 8126:1 8130:2 8175:1 8179:1 8185:1 8238:1 8241:4 8258:2 8289:2 8307:4 8309:1 8327:1 8328:1 8329:4 8332:2 8333:5 8341:1 8351:3 8352:2 8359:6 8360:2 8364:1 8372:1 8377:1 8378:1 8386:22 8389:1 8410:21 8413:1 8438:1 8441:1 8452:1 8483:1 8513:1 8517:1 8544:1 8546:1 8560:1 8569:1 8592:3 8595:3 8624:1 8648:1 8682:1 8705:3 8710:3 8712:1 8761:1 8766:3 8781:1 8819:2 8829:1 8839:1 8841:1 8868:1 8879:1 8883:1 8889:2 8921:13 8950:3 8976:15 8982:6 8984:2 8985:1 8986:1 9007:1 9016:2 9020:1 9021:3 9059:1 9073:1 9079:1 9100:1 9117:1 9120:1 9134:1 9138:4 9182:1 9183:16 9191:2 9208:1 9220:8 9223:1 9235:1 9250:1 9283:1 9285:1 9286:1 9290:2 9296:1 9299:1 9300:1 9301:2 9302:1 9304:1 9312:1 9315:1 9317:2 9332:1 9355:1 9380:2 9381:6 9390:1 9395:2 9402:1 9403:1 9406:1 9416:1 9417:1 9451:2 9476:1 9490:1 9491:2 9508:1 9514:2 9520:1 9561:1 9570:2 9571:1 9597:2 9610:1 9648:1 9652:2 9658:2 9675:1 9685:2 9701:1 9713:2 9715:1 9724:1 9725:2 9734:3 9740:1 9743:2 9781:1 9785:1 9789:1 9792:1 9799:1 9801:1 9812:1 9815:2 9831:1 9844:2 9848:1 9850:1 9856:1 9859:1 9893:1 9910:2 9911:1 9920:1 9932:1 9934:1 9957:2 9961:1 9979:1 9985:1 10048:2 10062:1 10086:1 10095:1 10116:3 10135:1 10178:1 10185:1 10206:1 10211:1 10214:1 10251:3 10255:1 10257:1 10273:1 10283:2 10342:1 10351:1 10372:3 10374:1 10377:6 10381:32 10383:1 10385:3 10387:1 10392:2 10399:1 10402:1 10406:1 10416:3 10420:1 10423:1 10430:2 10434:2 10450:4 10491:1 10492:2 10503:1 10510:2 10516:2 10532:1 10539:1 10545:1 10552:1 10569:1 10608:1 10621:2 10622:1 10649:1 10654:1 10655:1 10659:2 10678:4 10705:1 10716:1 10751:1 10757:2 10759:1 10773:1 10776:1 10777:2 10784:1 10793:3 10800:3 10808:1 10822:1 10828:3 10830:1 10836:1 10857:2 10860:20 10886:1 10922:2 10951:4 10971:1 10988:1 10989:1 11034:1 11094:1 11113:1 11114:2 11126:1 11130:2 11139:1 11141:1 11178:1 11183:1 11185:1 11189:1 11203:1 11209:1 11221:1 11250:1 11257:1 11274:1 11289:1 11290:1 11295:2 11304:2 11306:1 11313:3 11362:2 11382:1 11383:1 11388:1 11404:3 11408:2 11451:1 11453:2 11467:16 11473:1 11484:1 11486:1 11489:1 11498:1 11503:1 11514:1 11515:5 11520:1 11530:1 11553:1 11557:2 11574:4 11585:1 11591:2 11598:1 11608:2 11634:1 11654:1 11655:1 11661:2 11663:1 11693:1 11703:1 11706:1 11710:8 11714:1 11728:1 11730:1 11761:1 11766:1 11785:1 11798:1 11820:1 11840:3 11854:1 11860:4 11863:2 11864:1 11866:1 11879:1 11883:1 11886:3 11887:1 11888:2 11893:2 11896:1 11900:1 11910:1 11929:1 11943:1 12001:1 12004:1 12025:1 12026:1 12042:4 12045:1 12048:1 12071:1 12072:1 12088:1 12094:1 12097:1 12098:1 12123:1 12145:1 12167:1 12174:2 12186:1 12188:1 12191:1 12213:1 12214:2 12220:2 12225:1 12227:1 12228:1 12239:1 12258:1 12260:1 12266:1 12289:1 12296:1 12319:1 12327:1 12334:1 12351:1 12373:1 12399:1 12419:1 12420:3 12424:1 12425:1 12427:1 12463:1 12475:1 12476:1 12489:1 12505:1 12530:1 12536:3 12543:1 12551:4 12564:2 12571:1 12574:2 12576:1 12583:1 12595:2 12630:2 12646:3 12648:1 12653:1 12659:1 12665:2 12677:6 12680:2 12686:3 12704:1 12706:6 12716:2 12730:1 12735:1 12739:3 12745:1 12774:2 12778:1 12787:1 12810:3 12838:1 12884:1 12890:1 12974:1 12983:1 13000:1 13027:1 13034:1 13053:1 13055:2 13061:1 13062:1 13081:4 13086:1 13091:1 13098:1 13105:2 13142:1 13166:1 13188:1 13191:1 13209:2 13226:2 13230:1 13232:2 13270:1 13276:1 13301:1 13319:1 13329:1 13337:2 13351:8 13363:1 13364:1 13369:1 13387:2 13392:2 13405:1 13416:1 13457:1 13478:1 13506:1 13537:1 13544:2 13545:2 13550:1 13604:1 13616:1 13637:1 13640:1 13644:1 13674:2 13698:1 13703:1 13705:1 13736:10 13754:1 13762:11 13794:1 13797:1 13825:1 13834:1 13835:1 13845:1 13855:1 13858:1 13861:1 13936:3 13940:1 13941:2 13987:1 13989:1 13990:2 13993:1 14001:11 14042:1 14052:1 14061:7 14082:1 14095:1 14103:1 14157:1 14204:1 14232:1 14236:1 14250:2 14255:2 14257:1 14274:2 14295:1 14301:4 14311:2 14313:1 14314:1 14326:1 14328:2 14330:1 14355:1 14393:1 14395:1 14404:1 14411:1 14417:1 14426:3 14450:2 14460:1 14467:2 14474:1 14482:2 14483:1 14493:1 14514:1 14517:1 14520:1 14523:1 14524:1 14526:1 14544:1 14545:1 14549:1 14552:2 14557:4 14563:1 14582:1 14584:1 14626:1 14638:1 14661:1 14662:5 14670:1 14677:4 14713:1 14717:2 14720:1 14727:1 14736:1 14744:4 14749:1 14752:2 14757:1 14760:1 14799:1 14804:3 14828:1 14837:1 14847:2 14859:2 14883:1 14890:1 14913:1 14914:1 14915:6 14936:2 14946:1 14965:1 14972:1 14975:2 14987:1 14990:1 15026:1 15035:2 15059:1 15072:1 15078:1 15114:3 15144:3 15154:2 15195:1 15210:3 15213:2 15219:1 15233:2 15252:2 15256:1 15274:1 15287:1 15338:1 15344:1 15375:1 15400:1 15401:1 15433:1 15438:8 15448:1 15455:1 15503:1 15510:1 15512:1 15528:1 15530:3 15535:2 15541:1 15545:1 15551:3 15553:1 15558:1 15585:1 15604:20 15606:2 15608:1 15659:3 15660:1 15663:1 15710:5 15715:1 15737:1 15744:1 15763:1 15764:1 15822:1 15828:1 15843:1 15852:1 15871:1 15905:1 15925:1 15934:1 15951:1 15975:1 15977:1 15980:1 15992:2 15994:1 15997:1 15999:1 16004:1 16006:3 16019:2 16026:2 16046:1 16064:2 16090:1 16100:1 16121:1 16130:1 16132:1 16153:1 16158:2 16161:1 16162:1 16165:1 16169:1 16175:1 16195:1 16196:3 16199:1 16201:4 16224:1 16227:3 16236:1 16255:1 16256:6 16259:2 16274:1 16288:1 16318:1 16330:1 16332:1 16335:1 16351:1 16364:1 16375:12 16450:1 16451:1 16460:1 16461:1 16469:3 16481:1 16491:1 16506:1 16524:1 16539:4 16589:2 16594:2 16612:1 16639:1 16642:1 16645:1 16663:1 16699:4 16702:2 16709:5 16712:1 16722:2 16732:1 16763:1 16766:1 16772:1 16780:3 16804:14 16806:1 16817:1 16824:1 16825:1 16838:2 16869:1 16890:1 16913:6 16919:1 16952:1 16958:1 16963:2 16972:1 16982:1 16995:1 17004:1 17038:1 17052:1 17058:3 17070:1 17074:1 17075:1 17098:3 17107:1 17127:1 17145:1 17161:1 17163:4 17164:4 17196:1 17200:2 17202:1 17204:2 17214:1 17223:1 17227:1 17236:1 17248:1 17256:1 17267:2 17290:1 17291:1 17295:1 17302:2 17323:1 17345:2 17361:2 17373:1 17394:1 17413:3 17432:1 17461:7 17482:1 17488:1 17490:3 17495:1 17505:1 17509:1 17513:1 17514:2 17521:3 17522:1 17556:1 17559:1 17561:1 17564:1 17572:1 17584:1 17588:1 17590:1 17591:1 17599:1 17603:1 17604:2 17610:2 17613:1 17615:1 17658:1 17671:1 17678:2 17679:1 17680:1 17700:1 17717:1 17718:1 17792:3 17802:1 17828:1 17834:1 17835:2 17836:1 17848:2 17867:1 17882:1 17932:1 17933:1 17944:1 17958:1 17991:2 18028:1 18045:1 18068:1 18076:1 18108:1 18110:2 18114:2 18120:6 18143:1 18167:1 18173:1 18174:10 18218:1 18223:1 18247:1 18260:1 18286:2 18296:1 18334:1 18344:1 18366:1 18369:1 18373:2 18374:1 18383:1 18414:1 18415:1 18421:1 18424:2 18425:2 18427:2 18435:14 18438:6 18452:6 18457:2 18472:2 18479:4 18482:1 18488:2 18515:1 18540:1 18579:1 18615:3 18616:1 18632:1 18635:1 18639:2 18643:1 18648:2 18651:1 18661:1 18662:1 18682:1 18713:1 18728:2 18734:1 18743:1 18746:3 18752:2 18759:1 18783:2 18789:3 18793:1 18797:1 18823:1 18833:1 18841:1 18879:1 18882:2 18885:1 18910:1 18911:1 18918:1 18928:1 18934:2 18951:2 18964:2 18974:4 18984:2 18988:3 19004:1 19008:1 19013:1 19019:1 19021:3 19026:1 19030:1 19035:1 19036:1 19054:3 19057:3 19065:1 19066:1 19072:2 19077:4 19087:1 19113:2 19114:1 19118:4 19124:1 19130:1 19132:1 19138:1 19155:1 19176:1 19182:1 19217:1 19226:1 19234:1 19242:1 19266:2 19284:3 19287:1 19288:1 19291:1 19297:2 19341:1 19372:1 19387:1 19390:1 19399:1 19401:3 19414:1 19418:2 19428:1 19443:1 19446:4 19450:1 19460:1 19472:3 19504:6 19511:7 19516:5 19521:1 19522:1 19523:1 19537:1 19557:1 19558:4 19571:4 19589:1 19636:1 19648:1 19664:1 19670:1 19671:3 19676:1 19757:2 19783:1 19802:6 19812:1 19847:1 19875:1 19879:1 19880:1 19883:1 19906:1 19908:6 19916:1 19925:1 19959:4 19980:20 20029:1 20034:2 20070:2 20083:2 20110:1 20129:4 20131:1 20174:2 20179:1 20264:1 20268:20 20271:1 20272:1 20293:2 20304:1 20326:1 20328:2905 20336:1 20365:1 20372:1 20378:3 20407:1 20411:1 20434:1 20439:1 20448:1 20468:1 20471:2 20497:4 20499:1 20503:1 20521:1 20526:1 20529:1 20530:1 20531:1 20551:1 20557:2 20565:5 20569:1 20576:1 20578:5 20582:1 20584:1 20585:2 20596:1 20603:2 20611:1 20647:1 20662:1 20665:1 20669:3 20741:1 20743:1 20781:1 20796:1 20802:1 20806:1 20820:1 20825:1 20828:1 20856:1 20877:1 20915:1 20977:6 20985:1 21007:1 21019:1 21021:8 21023:4 21027:1 21044:1 21049:1 21050:2 21072:1 21079:3 21092:1 21095:1 21097:2 21101:1 21117:1 21132:1 21140:1 21145:1 21146:2 21147:1 21156:1 21160:7 21192:2 21216:1 21226:1 21237:4 21262:6 21276:1 21279:1 21291:1 21298:12 21299:2 21308:1 21309:1 21326:2 21350:1 21359:1 21361:1 21378:20 21391:1 21398:2 21399:1 21417:1 21425:4 21436:2 21442:1 21446:1 21464:1 21476:2 21486:1 21511:2 21523:1 21524:3 21542:1 21547:1 21551:5 21573:1 21580:1 21590:2 21597:5 21598:2 21603:1 21635:2 21652:1 21666:1 21667:1 21676:1 21747:1 21753:1 21755:4 21761:1 21777:2 21798:2 21832:1 21862:1 21863:1 21868:1 21871:1 21875:3 21879:1 21888:1 21894:1 21905:1 21926:1 21936:1 21971:2 21972:1 21978:1 22001:1 22010:1 22021:1 22036:1 22045:11 22062:1 22064:1 22066:2 22068:1 22084:9 22116:1 22117:1 22122:1 22149:1 22159:1 22235:2 22240:1 22272:2 22284:1 22287:1 22288:2 22299:1 22307:1 22316:1 22325:4 22337:1 22339:3 22345:6 22367:1 22381:2 22387:1 22411:1 22446:1 22450:4 22456:2 22462:1 22476:1 22482:4 22507:1 22512:1 22513:1 22533:2 22538:1 22548:1 22577:1 22585:1 22589:1 22604:1 22617:2 22622:1 22630:1 22635:2 22636:1 22643:2 22655:7 22657:1 22661:1 22674:11 22703:1 22704:1 22716:1 22724:1 22736:1 22747:1 22784:1 22786:1 22810:1 22812:1 22815:4 22818:1 22819:1 22827:2 22829:1 22838:1 22854:1 22868:1 22870:1 22876:2 22902:1 22904:2 22915:1 22939:1 22957:1 22987:1 22988:2 22991:1 22992:1 23010:1 23019:1 23026:1 23034:2 23037:2 23058:1 23078:1 23084:4 23116:1 23129:1 23147:1 23168:2 23169:1 23178:1 23201:1 23233:1 23242:1 23245:1 23248:1 23256:1 23257:1 23261:2 23276:3 23280:1 23303:1 23307:1 23317:1 23322:1 23325:1 23331:1 23346:2 23349:1 23363:1 23368:1 23377:1 23380:1 23382:1 23392:1 23399:1 23422:1 23458:2 23462:3 23476:2 23478:1 23496:1 23511:2 23513:1 23519:3 23535:2 23543:2 23554:1 23556:1 23566:1 23571:1 23572:3 23573:2 23583:1 23590:4 23615:1 23616:1 23657:1 23662:1 23723:2 23737:1 23744:1 23745:1 23763:1 23803:1 23811:2 23826:2 23836:1 23863:6 23870:1 23871:1 23878:1 23880:1 23893:2 23899:1 23912:1 23921:8 23941:1 23954:1 23958:1 23965:1 23973:1 23979:1 23981:1 23988:1 24008:1 24009:2 24023:1 24026:2 24032:1 24038:1 24039:2 24055:1 24057:1 24063:1 24078:1 24101:1 24115:2 24119:1 24144:1 24148:1 24153:1 24159:1 24163:1 24164:1 24172:1 24174:1 24181:4 24183:3 24187:1 24190:1 24198:1 24225:1 24232:2 24233:2 24236:1 24254:1 24263:2 24272:1 24273:2 24275:1 24276:3 24283:1 24285:2 24301:1 24307:1 24311:2 24316:2 24319:1 24327:1 24332:2 24358:1 24360:1 24372:2 24382:1 24383:3 24386:3 24400:1 24402:2 24407:2 24436:1 24438:1 24450:2 24455:2 24475:1 24476:1 24486:1 24487:1 24494:1 24495:3 24518:1 24534:1 24554:1 24568:1 24572:1 24573:1 24583:1 24586:4 24590:3 24603:1 24613:2 24618:1 24620:2 24621:1 24627:1 24633:1 24635:1 24651:1 24657:1 24663:1 24669:1 24676:2 24680:1 24693:1 24701:5 24708:1 24716:1 24719:1 24727:2 24735:1 24737:1 24772:1 24773:2 24777:2 24782:1 24786:3 24787:1 24795:2 24805:1 24808:1 24820:1 24839:1 24862:2 24863:1 24876:1 24935:1 24945:1 24976:1 24981:1 24988:1 25019:2 25032:1 25033:1 25044:1 25047:1 25056:13 25071:1 25091:5 25097:1 25105:1 25115:6 25142:1 25148:3 25174:1 25191:3 25192:1 25193:1 25200:1 25202:1 25214:1 25215:1 25246:1 25253:1 25266:1 25267:1 25268:1 25271:1 25272:1 25275:1 25280:3 25301:1 25302:1 25308:1 25323:2 25330:1 25332:7 25340:1 25352:1 25353:1 25361:1 25364:2 25376:1 25391:1 25392:1 25398:2 25410:1 25413:1 25421:5 25442:1 25450:1 25470:1 25472:2 25476:1 25490:1 25520:1 25525:2 25545:1 25556:1 25572:1 25577:1 25593:1 25619:1 25630:3 25655:1 25674:5 25689:1 25694:1 25704:1 25709:3 25734:1 25736:1 25749:1 25766:2 25772:1 25781:1 25788:1 25793:1 25798:4 25802:2 25803:1 25808:1 25835:1 25844:2 25891:1 25896:1 25907:1 25919:2 25927:1 25928:1 25937:1 25940:1 25961:1 25970:1 25995:1 26000:1 26011:1 26012:1 26014:1 26058:1 26065:1 26089:1 26092:1 26094:1 26103:1 26107:1 26123:1 26125:3 26128:1 26133:1 26135:2 26136:1 26139:2 26143:1 26147:2 26154:1 26155:1 26158:1 26164:1 26169:1 26178:3 26192:1 26208:2 26213:1 26225:1 26235:2 26248:5 26262:1 26263:1 26268:3 26271:1 26273:1 26276:1 26280:1 26281:1 26288:2 26293:1 26305:5 26315:1 26339:3 26355:1 26364:1 26389:3 26428:1 26435:1 26438:1 26444:2 26447:1 26466:1 26491:2 26552:1 26553:1 26560:1 26563:2 26569:1 26589:1 26592:1 26594:1 26595:1 26604:1 26607:1 26608:2 26611:4 26618:1 26622:1 26630:1 26631:1 26632:1 26642:1 26653:4 26660:1 26690:1 26692:1 26694:1 26696:1 26716:1 26727:1 26746:1 26749:1 26755:1 26757:1 26762:2 26769:1 26781:7 26809:3 26819:1 26821:2 26863:1 26894:1 26901:2 26902:1 26904:2 26915:1 26916:2 26929:1 26931:1 26943:1 27033:1 27034:1 27037:2 27039:1 27046:1 27052:1 27075:2 27088:3 27093:1 27095:1 27097:1 27104:2 27113:1 27125:1 27138:1 27145:1 27163:1 27164:1 27177:1 27202:1 27207:1 27209:4 27216:1 27230:2 27232:1 27247:1 27253:1 27264:1 27273:1 27297:3 27302:2 27308:1 27315:1 27326:1 27338:1 27352:3 27362:2 27375:1 27390:1 27400:1 27402:1 27416:1 27422:1 27426:11 27427:1 27429:1 27441:1 27466:1 27472:2 27488:1 27515:2 27546:1 27559:1 27574:1 27575:1 27582:2 27583:1 27588:2 27604:3 27605:1 27606:2 27614:1 27620:2 27639:1 27662:8 27667:3 27685:2 27690:2 27693:1 27718:2 27726:1 27737:5 27761:2 27768:1 27785:1 27788:1 27792:1 27799:1 27817:5 27822:1 27839:1 27851:7 27892:1 27906:1 27945:3 27950:1 27969:1 27979:1 27995:2 28000:1 28005:1 28025:1 28040:1 28046:1 28056:1 28066:1 28072:1 28074:1 28084:2 28094:1 28122:2 28128:1 28139:1 28149:1 28159:1 28160:1 28189:1 28193:1 28197:1 28204:2 28207:1 28217:2 28256:1 28262:2 28275:1 28301:1 28307:1 28400:1 28406:1 28419:1 28428:3 28459:1 28474:1 28488:1 28499:1 28502:1 28504:1 28505:1 28527:3 28540:8 28555:1 28561:2 28575:1 28630:1 28642:1 28644:1 28645:1 28658:2 28715:1 28723:2 28728:1 28744:1 28754:2 28755:7 28764:1 28765:1 28778:8 28783:2 28792:1 28800:1 28809:1 28823:1 28843:2 28856:1 28858:8 28876:1 28877:3 28883:1 28900:1 28911:1 28916:1 28929:1 28933:20 28947:1 28960:1 28961:1 28977:1 28984:2 29024:1 29034:2 29039:1 29052:2 29063:1 29071:1 29078:1 29090:1 29091:1 29126:1 29146:1 29154:1 29161:1 29182:1 29193:1 29221:3 29231:1 29239:5 29240:1 29268:1 29272:3 29292:1 29314:1 29339:2 29348:1 29349:2 29357:1 29387:2 29396:2 29404:2 29413:1 29422:1 29424:2 29429:1 29430:2 29431:3 29444:1 29457:5 29465:1 29471:5 29490:1 29495:2 29519:1 29535:1 29537:1 29543:2 29546:1 29551:1 29557:3 29560:1 29602:1 29627:1 29650:1 29652:2 29664:1 29675:1 29684:1 29708:1 29721:1 29727:1 29730:1 29742:1 29748:1 29749:1 29759:1 29761:1 29762:1 29763:1 29764:1 29770:1 29775:1 29795:2 29798:1 29810:1 29816:8 29855:1 29865:1 29866:2 29890:1 29901:1 29902:1 29930:1 29931:1 29932:1 29935:1 29988:1 29990:1 29998:1 30003:1 30013:1 30036:1 30047:1 30056:2 30084:3 30088:1 30113:3 30123:1 30137:14 30138:1 30144:1 30145:1 30157:1 30162:3 30173:2 30180:2 30183:1 30184:2 30187:1 30225:2 30226:1 30239:5 30241:10 30253:1 30263:1 30264:2 30277:2 30279:1 30280:1 30284:1 30294:2 30312:1 30330:3 30334:1 30335:2 30339:5 30362:1 30384:1 30385:1 30394:1 30396:6 30438:1 30447:2 30449:2 30459:1 30462:4 30466:1 30468:1 30508:1 30522:1 30538:1 30541:1 30549:1 30551:1 30561:2 30573:1 30580:1 30586:1 30592:1 30607:1 30621:2 30637:1 30646:1 30653:1 30654:1 30678:1 30679:1 30680:1 30682:2 30686:2 30716:2 30725:2 30760:3 30787:1 30795:2 30815:4 30823:1 30854:3 30868:1 30871:1 30872:1 30897:2 30898:1 30901:1 30902:1 30903:1 30906:1 30927:1 30950:2 30952:1 30962:1 30998:1 31028:1 31032:1 31034:1 31037:2 31051:1 31060:1 31076:1 31089:4 31095:1 31098:4 31105:2 31115:1 31128:1 31156:1 31168:1 31184:2 31210:1 31215:1 31233:4 31258:1 31281:1 31316:1 31331:1 31341:1 31342:2 31353:1 31355:3 31359:1 31377:1 31378:1 31383:1 31407:3 31421:1 31427:2 31432:1 31446:1 31447:2 31462:1 31478:2 31481:1 31489:5 31494:1 31495:1 31497:1 31505:6 31507:1 31508:1 31510:1 31514:1 31542:1 31548:1 31550:1 31559:1 31567:1 31615:2 18 6:1 8:1 14:1 18:2 21:1 34:1 37:1 55:1 65:1 69:1 75:1 80:1 85:1 123:2 188:4 210:2 214:1 216:2 219:1 232:1 237:2 269:2 273:2 283:3 302:1 323:3 339:4 352:1 358:1 359:1 372:7 383:1 384:1 389:1 394:1 395:1 410:1 448:1 449:3 454:1 462:1 464:1 466:1 469:2 477:1 490:1 501:1 538:1 548:2 552:1 570:1 572:1 595:3 599:1 600:4 603:1 618:1 628:4 632:1 643:1 646:2 656:4 664:1 683:1 694:2 704:6 715:1 716:1 735:1 748:3 756:1 767:3 768:1 781:1 782:1 790:1 795:1 802:1 846:1 866:1 881:1 888:4 890:3 898:1 909:1 921:1 923:1 924:3 926:1 937:2 949:1 950:2 960:2 964:1 970:1 973:1 992:1 1011:1 1014:4 1050:1 1082:1 1130:1 1132:3 1135:2 1148:1 1152:1 1167:1 1181:1 1202:1 1210:1 1248:4 1270:2 1272:2 1279:2 1280:2 1281:1 1283:2 1295:1 1316:3 1332:1 1342:1 1343:1 1351:2 1353:1 1371:1 1434:1 1437:1 1444:2 1447:1 1453:2 1454:2 1461:1 1465:1 1487:2 1500:3 1501:1 1506:1 1518:1 1520:1 1522:1 1554:1 1556:2 1558:1 1562:1 1582:1 1595:1 1604:1 1615:2 1619:1 1633:4 1634:1 1636:1 1637:3 1647:2 1648:1 1662:1 1664:1 1689:1 1706:2 1708:2 1720:2 1723:1 1749:1 1752:1 1785:1 1789:3 1824:1 1842:4 1866:1 1885:1 1960:1 1963:1 1966:1 1979:2 1981:2 1985:1 1991:1 1993:3 2014:2 2043:2 2047:1 2073:1 2079:1 2085:2 2091:1 2093:2 2117:1 2131:2 2133:3 2137:1 2140:16 2143:1 2144:1 2147:1 2152:1 2169:1 2183:1 2187:1 2192:1 2212:1 2217:1 2225:1 2242:2 2253:2 2254:1 2263:1 2273:1 2290:1 2300:3 2303:1 2310:1 2312:5 2314:1 2315:1 2318:1 2319:6 2321:1 2322:1 2324:1 2326:1 2328:1 2329:4 2336:4 2342:3 2344:2 2346:1 2361:2 2362:1 2363:1 2365:1 2369:1 2371:1 2374:1 2375:3 2377:2 2381:2 2382:1 2388:1 2393:3 2396:2 2397:4 2403:2 2407:1 2410:2 2412:1 2414:3 2416:1 2423:3 2432:20 2442:1 2450:3 2456:1 2506:4 2517:1 2521:1 2528:1 2541:1 2543:1 2545:1 2547:1 2555:1 2557:4 2565:1 2580:1 2608:1 2621:2 2645:1 2649:1 2653:1 2662:1 2687:2 2699:5 2701:1 2717:1 2718:1 2720:2 2728:3 2737:1 2754:2 2793:2 2820:2 2827:2 2828:1 2836:1 2840:1 2847:1 2850:2 2873:1 2880:1 2883:3 2884:1 2889:1 2895:1 2896:1 2925:1 2931:1 2949:1 2952:6 2956:1 2964:2 2974:1 2975:1 3040:1 3050:2 3059:1 3063:11 3066:3 3068:1 3088:1 3107:1 3116:1 3119:20 3126:1 3127:2 3129:1 3133:1 3143:2 3148:3 3156:1 3164:3 3182:1 3184:2 3218:1 3221:1 3226:1 3230:1 3317:2 3330:6 3388:4 3401:1 3439:1 3442:1 3447:1 3448:3 3467:1 3479:1 3489:1 3490:1 3494:3 3495:1 3500:1 3525:1 3528:3 3532:1 3537:2 3545:1 3563:2 3573:1 3581:1 3588:1 3595:1 3600:1 3619:1 3661:1 3719:1 3728:1 3732:1 3736:4 3751:1 3791:1 3798:1 3808:1 3820:3 3825:1 3828:1 3838:1 3860:1 3861:1 3872:1 3900:1 3928:2 3949:2 3952:3 3973:2 3982:1 3997:1 4010:1 4019:1 4020:3 4025:2 4056:1 4058:2 4061:1 4063:1 4064:6 4065:5 4066:1 4077:1 4078:1 4086:2 4089:2 4115:4 4123:1 4128:1 4129:2 4133:3 4166:1 4167:1 4173:1 4176:1 4181:1 4185:3 4186:1 4197:1 4202:1 4232:1 4242:1 4248:1 4255:2 4260:1 4281:2 4289:1 4301:1 4307:2 4313:2 4328:2 4348:1 4354:2 4371:1 4376:1 4390:1 4410:1 4419:2 4422:3 4431:4 4437:1 4456:1 4467:2 4492:1 4496:1 4505:1 4526:1 4531:1 4540:2 4549:1 4560:1 4600:1 4609:2 4631:2 4634:1 4661:1 4663:1 4668:1 4677:4 4711:1 4712:1 4715:1 4717:2 4754:2 4757:1 4779:1 4789:5 4793:1 4798:1 4803:1 4822:1 4848:1 4851:2 4868:1 4890:1 4917:1 4920:1 4921:2 4922:3 4928:2 4933:1 4946:3 4968:1 4969:3 4983:1 4992:1 5002:1 5009:1 5012:5 5024:6 5031:1 5039:1 5041:1 5046:1 5080:1 5082:1 5098:3 5104:1 5108:2 5116:2 5119:1 5121:1 5136:1 5154:1 5155:1 5204:1 5212:2 5245:1 5249:1 5268:3 5272:1 5282:1 5300:1 5310:14 5314:2 5315:1 5325:1 5335:1 5365:1 5370:1 5380:1 5423:1 5440:1 5444:1 5455:1 5474:2 5478:1 5481:1 5526:2 5531:1 5545:1 5546:1 5562:1 5567:1 5571:1 5575:1 5581:3 5582:1 5622:1 5648:2 5651:2 5683:1 5699:1 5719:3 5743:1 5746:3 5759:2 5764:1 5779:1 5783:1 5785:1 5790:2 5795:1 5799:1 5800:1 5811:1 5817:1 5831:1 5859:8 5882:1 5887:1 5894:1 5900:1 5912:1 5919:1 5921:2 5925:5 5942:2 5975:1 5992:1 6000:1 6006:1 6008:1 6014:1 6020:2 6027:1 6029:1 6049:1 6053:2 6057:1 6087:1 6090:1 6110:2 6127:1 6128:1 6195:2 6227:2 6232:2 6242:1 6262:1 6266:1 6294:1 6297:1 6334:1 6341:4 6363:2 6378:2 6397:1 6409:1 6442:2 6444:1 6445:2 6471:1 6472:1 6473:1 6480:1 6492:1 6497:1 6500:1 6555:2 6557:1 6571:1 6575:1 6590:2 6603:4 6612:1 6613:9 6630:3 6645:1 6654:1 6672:2 6696:1 6698:3 6699:1 6721:1 6763:6 6815:6 6826:2 6827:2 6828:1 6829:1 6832:7 6840:1 6842:1 6849:1 6851:1 6869:1 6875:1 6883:1 6894:4 6916:3 6917:1 6923:1 6926:1 6931:1 6932:2 6935:1 6938:1 6939:1 6941:1 6942:2 6945:1 6969:1 6971:1 7005:1 7065:1 7071:1 7081:1 7084:2 7090:2 7093:3 7113:8 7127:1 7128:1 7169:1 7180:1 7197:2 7210:1 7230:1 7234:1 7239:8 7240:1 7268:1 7276:1 7280:1 7296:1 7302:10 7303:1 7319:2 7333:1 7345:1 7369:1 7380:2 7388:1 7401:1 7419:1 7421:2 7428:3 7429:1 7434:3 7439:1 7460:1 7463:1 7468:1 7516:1 7529:2 7532:1 7550:2 7560:2 7561:1 7575:1 7576:1 7584:1 7643:2 7651:1 7658:1 7694:1 7706:1 7750:6 7751:1 7762:1 7763:1 7764:2 7779:1 7781:1 7814:2 7818:1 7823:1 7870:2 7901:1 7906:3 7936:1 7944:1 7945:4 7969:1 7971:1 7978:3 7979:1 7996:1 8006:1 8030:2 8033:2 8055:1 8058:16 8068:3 8088:2 8104:1 8105:1 8126:1 8130:2 8175:1 8179:1 8185:1 8238:1 8241:4 8258:2 8289:2 8307:4 8309:1 8327:1 8328:1 8329:4 8332:2 8333:5 8341:1 8351:3 8352:2 8359:6 8360:2 8364:1 8372:1 8377:1 8378:1 8386:24 8389:1 8410:21 8413:1 8438:1 8441:1 8452:1 8483:1 8513:1 8517:1 8540:1 8544:1 8546:1 8560:1 8569:1 8592:3 8595:3 8624:1 8648:1 8682:1 8705:3 8710:3 8712:1 8761:1 8766:3 8781:1 8819:2 8829:1 8839:1 8841:1 8868:1 8879:1 8883:1 8889:2 8921:13 8950:3 8964:1 8976:16 8982:7 8983:1 8984:2 8985:1 8986:1 9007:1 9016:2 9020:1 9021:3 9059:1 9073:1 9079:1 9100:1 9117:1 9120:1 9134:1 9138:4 9178:1 9182:1 9183:16 9191:2 9208:1 9220:8 9223:1 9235:1 9250:1 9283:1 9285:1 9286:1 9290:2 9296:1 9299:1 9300:1 9301:2 9302:1 9304:1 9312:1 9315:1 9317:2 9332:1 9355:1 9380:2 9381:6 9390:1 9395:2 9402:1 9403:1 9406:1 9416:1 9417:1 9451:2 9476:1 9490:1 9491:2 9508:1 9514:2 9520:1 9561:1 9570:3 9571:1 9597:2 9610:1 9648:1 9652:2 9658:2 9675:1 9685:2 9701:1 9713:2 9715:1 9724:1 9725:2 9734:3 9740:1 9743:2 9781:1 9785:1 9789:1 9792:1 9799:1 9801:1 9812:1 9815:2 9831:1 9844:2 9848:1 9850:1 9856:1 9859:1 9893:1 9907:1 9910:2 9911:1 9920:1 9932:1 9934:1 9957:2 9961:1 9979:1 9985:1 10048:2 10062:1 10086:1 10095:1 10116:3 10135:1 10178:1 10185:1 10206:1 10211:1 10214:1 10251:4 10255:1 10257:1 10273:1 10283:2 10342:1 10351:1 10372:3 10374:1 10377:6 10381:32 10383:1 10385:3 10387:1 10392:2 10399:2 10402:1 10406:1 10416:3 10420:1 10423:1 10430:2 10434:2 10450:4 10491:1 10492:2 10503:1 10508:1 10510:2 10516:2 10532:1 10539:1 10545:1 10552:1 10569:1 10608:1 10621:2 10622:1 10649:1 10654:1 10655:1 10659:2 10678:4 10705:1 10716:1 10751:1 10757:2 10759:1 10773:1 10776:1 10777:3 10784:1 10793:3 10800:3 10808:1 10822:1 10828:3 10830:1 10836:1 10857:2 10860:20 10886:1 10922:2 10951:4 10971:1 10988:1 10989:1 11034:1 11094:1 11113:1 11114:2 11126:1 11130:2 11139:1 11141:1 11178:1 11183:1 11185:1 11189:1 11203:1 11209:1 11221:1 11250:1 11257:1 11274:1 11289:1 11290:1 11295:2 11304:2 11306:1 11313:3 11362:2 11382:1 11383:1 11388:1 11404:3 11408:2 11451:1 11453:2 11467:16 11473:1 11484:1 11486:1 11489:1 11498:1 11503:1 11514:1 11515:5 11520:1 11530:1 11553:1 11557:2 11574:4 11585:1 11591:2 11598:1 11608:2 11634:1 11654:1 11655:1 11661:2 11663:1 11693:1 11703:1 11706:1 11710:8 11714:1 11728:1 11730:1 11742:2 11761:1 11766:1 11785:1 11798:1 11820:1 11840:3 11854:1 11860:4 11863:2 11864:1 11866:1 11879:1 11883:1 11886:3 11887:1 11888:2 11893:2 11896:1 11900:1 11910:1 11929:1 11943:1 12001:1 12004:1 12025:1 12026:1 12042:4 12045:1 12048:1 12071:1 12072:1 12088:1 12094:1 12097:1 12098:1 12123:1 12135:1 12145:1 12167:1 12174:2 12186:1 12188:1 12191:1 12213:1 12214:2 12220:2 12225:1 12227:1 12228:1 12239:1 12258:1 12260:1 12266:1 12289:1 12292:1 12296:1 12319:1 12327:1 12334:1 12351:1 12373:1 12399:1 12419:1 12420:3 12424:1 12425:1 12427:1 12463:1 12475:1 12476:1 12489:1 12505:1 12530:1 12536:3 12543:1 12551:4 12564:2 12571:1 12574:2 12576:1 12583:1 12595:2 12630:2 12646:3 12648:1 12653:1 12659:1 12665:2 12677:6 12680:2 12686:3 12704:1 12706:6 12716:2 12730:1 12735:1 12739:3 12745:1 12774:2 12778:1 12787:1 12810:3 12838:1 12884:1 12890:1 12924:1 12926:1 12974:1 12983:1 13000:1 13027:1 13034:1 13053:1 13055:2 13061:1 13062:1 13081:4 13086:1 13091:1 13098:1 13105:2 13142:1 13166:1 13188:1 13191:1 13209:2 13226:2 13230:1 13232:2 13270:1 13276:1 13301:1 13319:1 13329:1 13337:2 13351:8 13363:1 13364:1 13369:1 13387:2 13392:2 13405:1 13416:1 13457:1 13478:1 13506:1 13537:1 13544:2 13545:2 13550:1 13595:1 13604:1 13616:1 13637:1 13640:2 13644:1 13674:2 13698:1 13703:1 13705:1 13736:10 13754:1 13762:11 13794:1 13797:1 13825:2 13834:1 13835:1 13845:1 13855:1 13858:1 13861:1 13936:4 13940:1 13941:2 13987:1 13989:1 13990:2 13993:1 14001:12 14042:1 14052:1 14061:8 14082:1 14095:1 14103:1 14157:1 14204:1 14218:1 14232:1 14236:1 14250:2 14255:2 14257:1 14274:2 14295:1 14301:4 14311:2 14313:1 14314:1 14324:1 14326:1 14328:2 14330:1 14355:1 14393:1 14395:1 14404:1 14411:1 14417:1 14426:3 14450:2 14460:1 14467:2 14474:1 14482:2 14483:1 14493:1 14514:1 14517:1 14520:1 14523:1 14524:1 14526:1 14544:1 14545:1 14549:1 14552:2 14557:5 14563:1 14582:1 14584:1 14626:1 14638:1 14661:1 14662:5 14670:1 14677:4 14713:1 14717:2 14720:1 14727:1 14736:1 14744:4 14749:1 14752:2 14757:1 14760:1 14799:1 14804:4 14828:1 14837:1 14847:2 14859:2 14883:1 14890:1 14913:1 14914:1 14915:6 14936:2 14946:1 14965:1 14972:1 14975:2 14987:1 14990:1 15026:1 15035:2 15059:1 15072:1 15078:1 15114:4 15144:3 15154:2 15195:1 15210:3 15213:2 15219:1 15233:2 15252:2 15256:1 15273:1 15274:1 15287:1 15338:1 15344:1 15375:1 15400:1 15401:1 15433:1 15438:8 15448:1 15455:1 15503:1 15510:1 15512:1 15528:1 15530:3 15535:2 15541:1 15545:1 15551:3 15553:1 15558:1 15585:1 15604:20 15606:2 15608:1 15659:3 15660:1 15663:1 15710:5 15715:1 15737:1 15744:1 15763:1 15764:1 15822:1 15828:1 15843:1 15852:1 15871:1 15905:1 15925:1 15934:1 15951:1 15975:1 15977:1 15980:1 15992:2 15994:1 15997:1 15999:1 16004:1 16006:3 16011:1 16019:2 16026:3 16046:1 16064:3 16090:1 16100:1 16121:1 16130:1 16132:1 16153:1 16158:2 16161:1 16162:1 16165:1 16169:1 16175:1 16195:1 16196:3 16199:1 16201:4 16224:1 16227:3 16236:1 16255:1 16256:6 16259:2 16274:1 16288:1 16318:1 16330:1 16332:1 16335:1 16351:1 16359:1 16364:1 16375:12 16450:1 16451:1 16460:1 16461:1 16469:4 16481:1 16491:1 16506:1 16524:1 16539:4 16589:3 16594:2 16612:1 16639:1 16642:1 16645:1 16663:1 16699:4 16702:2 16709:5 16712:1 16722:2 16732:1 16749:1 16763:1 16766:1 16772:1 16780:3 16804:15 16806:2 16817:1 16824:1 16825:1 16838:2 16869:1 16890:1 16913:6 16919:1 16952:1 16958:1 16963:2 16972:1 16974:1 16982:1 16995:1 17004:1 17038:2 17052:1 17058:3 17070:1 17074:1 17075:1 17098:3 17107:1 17127:1 17145:1 17161:1 17163:4 17164:4 17196:1 17200:2 17202:1 17204:2 17214:1 17223:1 17227:2 17236:1 17240:1 17248:1 17256:1 17267:2 17290:1 17291:1 17295:1 17302:2 17323:1 17345:2 17361:2 17373:1 17394:1 17413:3 17428:1 17432:1 17461:7 17482:1 17488:1 17490:3 17495:1 17505:1 17509:1 17513:1 17514:2 17521:3 17522:1 17556:1 17559:1 17561:1 17564:1 17572:1 17584:1 17588:1 17590:1 17591:1 17599:1 17603:1 17604:2 17610:2 17613:1 17615:1 17658:1 17671:1 17678:2 17679:1 17680:1 17700:1 17717:1 17718:1 17792:3 17797:1 17802:1 17828:1 17834:1 17835:2 17836:1 17848:2 17867:1 17882:1 17932:1 17933:1 17944:1 17958:1 17991:2 18028:1 18045:1 18046:1 18068:1 18076:1 18108:3 18110:2 18114:2 18120:6 18143:1 18167:1 18173:1 18174:10 18218:1 18223:1 18247:1 18260:1 18286:2 18296:1 18334:1 18344:1 18366:1 18369:1 18373:2 18374:1 18383:1 18414:1 18415:1 18421:1 18424:3 18425:2 18427:2 18435:15 18438:6 18452:6 18457:2 18465:1 18472:2 18479:4 18482:1 18488:2 18515:1 18540:1 18579:1 18615:3 18616:1 18632:1 18635:1 18639:2 18643:1 18648:2 18651:1 18661:1 18662:1 18682:1 18713:1 18728:2 18734:1 18743:1 18746:3 18752:2 18759:1 18783:2 18789:3 18793:1 18797:1 18809:1 18823:1 18833:1 18841:1 18879:1 18882:2 18885:1 18910:1 18911:1 18918:1 18928:1 18934:2 18951:2 18964:2 18974:4 18984:2 18988:3 19004:1 19008:1 19013:1 19019:1 19021:3 19026:1 19030:1 19035:1 19036:1 19054:3 19057:3 19065:1 19066:1 19072:2 19077:4 19087:1 19113:2 19114:1 19118:4 19124:1 19130:1 19132:1 19138:1 19155:1 19176:1 19182:1 19217:1 19226:1 19234:1 19242:1 19256:1 19266:2 19284:3 19287:1 19288:1 19291:1 19297:2 19341:1 19372:1 19387:1 19390:1 19399:1 19401:3 19414:1 19418:2 19428:1 19443:1 19446:4 19450:1 19460:1 19472:3 19504:6 19509:1 19511:7 19516:5 19521:1 19522:1 19523:1 19537:1 19557:1 19558:4 19571:4 19589:1 19636:1 19648:1 19664:1 19670:1 19671:3 19676:1 19677:1 19706:1 19757:2 19783:1 19802:6 19812:1 19847:1 19875:1 19879:1 19880:1 19883:1 19906:1 19908:6 19916:1 19925:1 19959:4 19980:20 20029:1 20034:2 20070:2 20083:2 20110:1 20129:4 20131:1 20174:2 20179:1 20264:1 20268:20 20271:1 20272:1 20293:2 20304:1 20326:1 20328:2988 20336:1 20365:1 20372:1 20378:3 20407:1 20411:1 20434:1 20439:1 20448:1 20468:1 20471:2 20497:4 20499:1 20503:1 20521:1 20526:1 20529:1 20530:1 20531:1 20551:1 20557:2 20565:5 20569:1 20576:1 20578:5 20582:1 20584:1 20585:2 20596:2 20603:2 20611:1 20647:1 20662:1 20665:1 20669:3 20741:1 20743:1 20781:1 20796:1 20802:1 20806:1 20820:1 20825:1 20828:1 20856:1 20877:1 20915:1 20977:6 20985:1 21000:1 21007:1 21019:1 21021:8 21023:4 21027:1 21044:1 21049:1 21050:3 21072:1 21079:3 21092:1 21095:1 21097:2 21101:1 21117:1 21132:1 21140:1 21145:1 21146:2 21147:1 21156:1 21160:7 21192:2 21216:1 21226:1 21237:4 21262:6 21276:1 21279:1 21291:1 21298:12 21299:2 21308:1 21309:1 21326:2 21350:1 21359:1 21361:1 21378:21 21391:1 21398:2 21399:1 21417:1 21425:4 21436:2 21442:1 21446:1 21464:1 21476:2 21486:1 21511:2 21523:1 21524:3 21542:1 21547:1 21551:5 21573:1 21580:1 21590:2 21597:5 21598:2 21603:1 21635:2 21652:2 21666:1 21667:1 21676:1 21747:1 21753:1 21755:4 21761:1 21777:2 21798:2 21832:1 21862:1 21863:1 21868:1 21871:1 21875:3 21879:1 21888:1 21894:1 21905:1 21926:1 21936:1 21971:2 21972:1 21978:1 21996:1 22001:1 22010:1 22021:1 22036:1 22045:11 22062:1 22064:1 22066:2 22068:1 22084:9 22116:1 22117:1 22122:1 22149:1 22159:1 22235:2 22240:1 22272:2 22284:1 22287:1 22288:2 22299:1 22307:1 22316:1 22325:4 22337:1 22339:3 22345:6 22367:1 22381:2 22387:1 22411:1 22446:1 22450:4 22456:2 22462:1 22476:1 22482:4 22507:1 22512:1 22513:1 22533:2 22538:1 22548:1 22577:1 22585:1 22589:1 22604:1 22617:2 22622:1 22630:1 22635:2 22636:1 22643:2 22655:7 22657:1 22661:1 22674:11 22703:1 22704:1 22716:1 22724:1 22736:1 22747:1 22784:1 22786:1 22810:1 22812:1 22815:4 22818:1 22819:1 22827:2 22829:1 22838:1 22854:1 22868:1 22870:1 22873:1 22876:2 22902:1 22904:2 22915:1 22939:1 22957:1 22987:1 22988:2 22991:1 22992:1 23010:1 23019:1 23026:1 23034:2 23037:2 23058:1 23078:1 23084:4 23116:1 23129:1 23147:1 23168:2 23169:1 23178:1 23201:1 23233:1 23242:1 23245:1 23248:1 23256:1 23257:1 23261:2 23276:3 23280:1 23303:1 23307:1 23317:1 23322:1 23325:1 23331:1 23346:2 23349:1 23363:1 23368:1 23377:1 23380:1 23382:1 23392:1 23399:1 23422:1 23458:2 23462:3 23476:2 23478:1 23496:1 23511:2 23513:1 23519:3 23535:2 23543:2 23554:1 23556:1 23566:1 23571:1 23572:4 23573:2 23583:1 23590:4 23615:1 23616:1 23657:1 23662:1 23723:2 23737:1 23744:1 23745:1 23763:1 23803:1 23811:2 23826:2 23836:1 23863:7 23870:1 23871:1 23878:1 23880:1 23893:2 23899:1 23912:1 23921:8 23941:1 23953:1 23954:1 23958:1 23965:1 23973:1 23979:1 23981:1 23988:1 24008:1 24009:2 24023:1 24026:2 24032:1 24038:1 24039:2 24055:1 24057:1 24063:1 24078:1 24101:1 24115:2 24119:1 24144:1 24148:1 24153:1 24159:1 24163:1 24164:1 24172:1 24174:1 24181:4 24183:3 24187:1 24190:1 24198:1 24225:1 24232:2 24233:2 24236:1 24254:1 24263:2 24272:1 24273:2 24275:1 24276:3 24283:1 24285:2 24301:1 24307:1 24311:2 24316:2 24319:1 24327:1 24332:2 24358:1 24360:1 24372:2 24382:1 24383:3 24386:3 24400:1 24402:2 24407:2 24436:1 24438:1 24450:2 24455:2 24475:1 24476:1 24486:1 24487:1 24494:1 24495:3 24518:1 24534:1 24554:1 24568:1 24572:1 24573:1 24583:1 24586:4 24590:3 24597:1 24603:1 24613:2 24618:1 24620:2 24621:1 24627:1 24633:1 24635:1 24651:1 24657:1 24663:1 24669:1 24676:2 24680:1 24693:1 24701:5 24708:1 24716:1 24719:1 24727:2 24735:1 24737:1 24772:1 24773:2 24777:2 24782:1 24786:3 24787:1 24795:2 24805:1 24808:1 24820:1 24839:1 24862:2 24863:1 24876:1 24935:1 24945:1 24976:1 24981:1 24988:1 25019:2 25032:1 25033:1 25044:1 25047:1 25056:13 25071:1 25091:5 25097:1 25105:1 25115:6 25123:1 25142:1 25148:3 25174:1 25191:3 25192:1 25193:1 25200:1 25202:1 25214:1 25215:1 25217:1 25246:1 25253:1 25266:1 25267:1 25268:1 25271:1 25272:1 25275:1 25280:3 25301:1 25302:1 25308:1 25323:2 25330:1 25332:8 25340:1 25352:1 25353:1 25361:1 25364:2 25376:1 25391:1 25392:1 25398:2 25410:1 25413:1 25421:5 25435:1 25442:1 25450:1 25470:1 25472:2 25476:1 25490:1 25520:1 25525:2 25545:1 25546:1 25556:1 25572:1 25577:1 25593:1 25619:1 25630:3 25655:1 25674:6 25689:1 25694:1 25704:1 25709:3 25734:1 25736:1 25749:1 25766:2 25772:1 25781:1 25788:1 25793:1 25798:4 25802:2 25803:1 25808:1 25835:1 25844:2 25891:1 25896:1 25907:1 25919:2 25924:1 25927:1 25928:1 25937:1 25940:1 25961:1 25970:1 25995:1 26000:1 26011:1 26012:1 26014:1 26058:1 26065:1 26089:1 26092:1 26094:1 26103:1 26107:1 26123:1 26125:3 26128:1 26133:1 26135:2 26136:1 26139:2 26143:1 26147:2 26154:1 26155:1 26158:1 26164:3 26169:1 26178:3 26192:1 26193:1 26208:2 26213:1 26225:1 26235:2 26248:5 26262:1 26263:1 26268:3 26271:1 26273:1 26276:1 26280:1 26281:1 26282:1 26288:2 26293:1 26305:5 26315:1 26339:3 26355:1 26364:1 26385:1 26389:3 26404:1 26428:1 26435:1 26438:1 26444:2 26447:1 26466:1 26491:2 26552:1 26553:1 26560:1 26563:2 26569:1 26589:1 26592:1 26594:1 26595:1 26604:1 26607:1 26608:2 26611:4 26618:1 26622:1 26630:1 26631:1 26632:1 26642:1 26653:4 26660:1 26690:1 26692:1 26694:1 26696:1 26716:1 26727:1 26744:1 26746:1 26749:1 26755:1 26757:1 26762:2 26769:1 26781:7 26809:3 26819:1 26821:2 26863:1 26894:1 26901:2 26902:1 26904:2 26915:1 26916:2 26929:1 26931:1 26943:1 27033:1 27034:1 27037:2 27039:1 27046:1 27052:1 27075:3 27088:3 27093:2 27095:1 27097:1 27104:2 27113:1 27125:1 27138:1 27145:1 27163:1 27164:1 27177:1 27202:1 27207:1 27209:4 27216:1 27230:2 27232:1 27247:1 27253:1 27264:1 27273:1 27297:3 27302:2 27308:1 27315:1 27326:1 27338:1 27352:3 27362:2 27375:1 27390:1 27400:1 27402:1 27416:1 27418:1 27422:1 27426:11 27427:1 27429:1 27441:1 27466:1 27472:2 27488:1 27515:2 27546:1 27559:1 27574:1 27575:1 27582:2 27583:1 27588:2 27604:3 27605:1 27606:2 27614:1 27620:2 27639:1 27662:9 27667:3 27685:2 27690:2 27693:1 27718:2 27726:1 27737:5 27761:3 27768:1 27785:1 27788:1 27792:1 27799:1 27817:5 27822:1 27839:1 27851:7 27892:1 27906:1 27945:3 27950:1 27969:1 27979:1 27995:2 28000:1 28005:1 28025:1 28040:1 28046:1 28056:1 28066:1 28072:1 28074:1 28084:2 28094:1 28122:2 28128:1 28139:1 28149:1 28159:1 28160:1 28189:1 28193:1 28197:1 28204:3 28207:1 28217:2 28256:1 28259:2 28262:2 28266:1 28275:1 28301:1 28307:1 28400:1 28406:1 28419:1 28428:3 28459:1 28474:1 28488:1 28499:1 28502:1 28504:1 28505:1 28527:3 28540:8 28555:1 28561:2 28575:1 28630:1 28642:1 28644:1 28645:1 28658:2 28715:1 28716:1 28723:2 28728:1 28744:1 28754:2 28755:7 28764:1 28765:1 28778:8 28783:2 28792:1 28800:1 28809:1 28823:1 28843:2 28856:1 28858:8 28876:1 28877:3 28883:1 28900:1 28911:1 28916:1 28929:1 28933:20 28947:1 28960:1 28961:1 28977:1 28984:2 29024:1 29034:2 29039:1 29052:2 29063:1 29071:1 29078:1 29090:1 29091:1 29113:1 29126:1 29146:1 29154:1 29161:1 29182:1 29193:1 29207:1 29221:3 29231:1 29239:5 29240:1 29268:1 29272:3 29292:1 29314:1 29339:2 29348:1 29349:2 29357:1 29387:2 29396:2 29404:2 29413:1 29422:1 29424:2 29429:1 29430:2 29431:3 29444:1 29457:5 29465:1 29471:6 29490:1 29495:2 29519:1 29535:1 29537:1 29543:2 29546:1 29551:1 29557:3 29560:1 29602:1 29627:1 29650:1 29652:2 29664:1 29675:1 29684:1 29708:1 29721:1 29727:1 29730:1 29742:1 29748:1 29749:1 29759:1 29761:1 29762:1 29763:1 29764:1 29770:1 29775:1 29795:3 29798:1 29810:1 29816:8 29855:1 29865:1 29866:2 29890:1 29901:1 29902:1 29930:1 29931:1 29932:1 29935:1 29988:1 29990:1 29998:1 30003:1 30013:1 30036:1 30047:1 30056:2 30084:3 30088:1 30113:3 30123:1 30137:14 30138:1 30144:1 30145:1 30157:1 30162:3 30173:2 30180:2 30183:1 30184:2 30186:1 30187:1 30225:2 30226:1 30239:6 30241:11 30253:1 30263:1 30264:2 30277:2 30279:1 30280:1 30284:1 30294:2 30312:1 30330:3 30334:1 30335:2 30339:6 30352:1 30362:1 30384:1 30385:1 30394:1 30396:6 30438:1 30447:2 30449:2 30459:1 30462:4 30466:1 30468:1 30508:1 30522:1 30538:1 30541:1 30549:1 30551:1 30561:2 30573:1 30580:1 30586:1 30592:1 30607:1 30621:3 30637:1 30646:1 30653:1 30654:1 30678:1 30679:1 30680:1 30682:2 30686:2 30716:2 30725:2 30760:3 30787:1 30795:2 30815:4 30823:1 30854:3 30868:1 30871:1 30872:1 30897:2 30898:1 30901:1 30902:1 30903:1 30906:1 30927:1 30950:2 30952:1 30962:1 30998:1 31028:1 31032:1 31034:1 31037:2 31051:1 31060:1 31076:1 31089:4 31095:1 31098:4 31105:2 31115:1 31128:1 31156:1 31168:1 31184:2 31210:1 31215:1 31233:4 31258:1 31281:1 31308:1 31316:1 31331:1 31341:1 31342:2 31353:1 31355:3 31359:1 31377:1 31378:1 31383:1 31390:1 31407:3 31421:1 31427:2 31432:1 31446:1 31447:2 31462:1 31478:2 31481:1 31489:5 31494:1 31495:1 31497:1 31505:6 31507:1 31508:1 31510:1 31514:1 31542:1 31548:1 31550:1 31559:1 31567:1 31615:2 18 6:1 8:1 13:1 14:1 18:2 21:1 34:1 37:1 55:1 65:1 69:1 75:1 80:1 85:1 123:2 188:4 210:2 214:1 216:2 219:1 232:1 237:2 269:2 273:2 283:3 302:1 323:3 339:4 352:1 358:1 359:1 372:7 383:1 384:1 389:1 394:1 395:1 410:1 448:1 449:3 454:1 462:1 464:1 466:1 469:2 477:1 490:1 501:1 538:1 548:2 552:1 570:1 572:1 595:3 599:1 600:4 603:2 618:1 628:4 632:1 643:1 646:2 656:4 664:1 683:1 694:2 704:6 715:1 716:1 735:1 748:3 756:1 767:3 768:1 781:1 782:1 790:1 795:1 802:1 846:1 866:1 881:1 888:4 890:3 898:1 909:1 921:1 923:1 924:3 926:1 937:2 949:1 950:2 960:2 964:1 970:1 973:1 992:1 1011:1 1014:4 1050:1 1082:1 1130:1 1132:3 1135:2 1148:1 1152:1 1167:1 1181:1 1202:1 1210:1 1248:4 1270:2 1272:2 1279:2 1280:2 1281:1 1283:2 1295:1 1316:3 1332:1 1342:1 1343:1 1351:2 1353:1 1371:1 1434:1 1437:1 1444:2 1447:1 1453:2 1454:2 1461:1 1465:1 1487:2 1500:3 1501:1 1506:1 1518:1 1520:1 1522:1 1554:1 1556:2 1558:1 1562:1 1582:1 1595:1 1604:1 1615:2 1619:1 1633:4 1634:1 1636:1 1637:3 1647:3 1648:1 1662:1 1664:1 1689:1 1706:2 1708:2 1720:2 1723:1 1749:1 1751:1 1752:1 1785:1 1789:3 1824:1 1831:1 1842:4 1866:2 1885:1 1960:1 1963:1 1966:1 1979:2 1981:2 1985:1 1991:1 1993:4 2014:2 2043:2 2047:1 2061:1 2073:1 2079:1 2085:2 2091:1 2093:2 2117:1 2131:2 2133:3 2137:1 2140:16 2143:1 2144:1 2147:1 2152:1 2169:1 2183:1 2187:1 2192:1 2212:1 2217:1 2225:1 2242:2 2253:2 2254:1 2263:1 2273:1 2290:1 2300:3 2303:1 2310:1 2312:6 2314:1 2315:1 2318:1 2319:6 2321:1 2322:1 2324:1 2326:2 2328:1 2329:4 2336:4 2342:3 2344:2 2346:1 2361:2 2362:1 2363:1 2365:1 2369:1 2371:1 2374:1 2375:3 2377:2 2381:2 2382:1 2388:1 2393:3 2396:2 2397:4 2403:2 2407:1 2410:2 2412:1 2414:3 2416:1 2423:3 2432:22 2442:1 2450:3 2456:1 2506:4 2517:1 2521:1 2528:1 2541:1 2543:1 2545:1 2547:1 2555:1 2557:4 2565:1 2580:1 2608:1 2619:1 2621:2 2645:1 2649:1 2653:1 2662:1 2687:2 2699:5 2701:1 2717:1 2718:1 2720:2 2728:3 2737:1 2754:2 2793:2 2820:2 2827:2 2828:1 2836:1 2840:1 2847:1 2850:2 2873:1 2880:1 2883:3 2884:1 2889:1 2895:1 2896:1 2925:1 2931:1 2949:1 2952:6 2956:1 2964:2 2974:1 2975:1 2988:1 3040:1 3050:2 3059:1 3063:11 3066:3 3068:1 3088:1 3107:2 3116:1 3119:20 3126:1 3127:2 3129:1 3133:1 3143:2 3148:3 3156:1 3164:3 3182:1 3184:2 3218:1 3221:1 3226:1 3230:1 3317:2 3329:1 3330:6 3388:4 3401:1 3439:1 3442:1 3447:1 3448:3 3467:1 3479:1 3489:1 3490:1 3494:3 3495:1 3500:1 3525:1 3528:3 3532:1 3537:2 3545:1 3563:2 3573:1 3581:1 3588:1 3595:1 3600:1 3619:1 3661:1 3719:1 3728:1 3732:1 3736:4 3751:1 3791:1 3798:1 3808:1 3820:3 3825:1 3828:1 3838:1 3860:1 3861:1 3872:1 3900:1 3928:2 3949:2 3952:3 3973:2 3982:1 3997:1 4010:1 4019:1 4020:3 4025:2 4056:1 4058:2 4061:1 4063:1 4064:7 4065:5 4066:1 4077:1 4078:1 4086:2 4089:2 4096:1 4115:4 4116:1 4123:1 4128:1 4129:2 4133:4 4166:1 4167:1 4173:1 4176:1 4181:1 4185:3 4186:1 4197:1 4202:1 4223:1 4232:1 4242:1 4248:1 4255:2 4260:1 4281:2 4289:1 4301:1 4307:2 4313:2 4328:2 4348:1 4354:2 4371:1 4376:1 4390:1 4398:1 4410:1 4419:2 4422:3 4431:4 4437:1 4456:1 4467:2 4492:1 4496:1 4505:1 4526:1 4531:1 4540:2 4549:1 4560:1 4600:1 4609:2 4631:2 4634:1 4661:1 4663:1 4668:1 4677:4 4711:1 4712:1 4715:1 4717:2 4754:2 4757:1 4779:1 4789:5 4793:1 4798:1 4803:1 4822:1 4848:1 4851:2 4868:1 4890:1 4917:1 4920:1 4921:2 4922:3 4928:2 4933:1 4946:3 4968:1 4969:3 4983:1 4992:1 5002:1 5009:1 5012:5 5024:7 5031:1 5039:1 5041:1 5046:1 5080:1 5082:1 5098:3 5104:1 5108:2 5116:2 5119:1 5121:1 5136:1 5154:1 5155:1 5204:1 5212:2 5245:1 5249:1 5268:3 5272:1 5282:1 5300:1 5310:15 5314:2 5315:1 5325:1 5335:1 5365:1 5370:1 5380:1 5423:1 5440:1 5444:1 5455:1 5474:2 5478:1 5481:1 5526:2 5531:1 5545:1 5546:1 5562:1 5567:1 5571:1 5575:1 5581:3 5582:1 5622:1 5648:2 5651:3 5683:1 5699:1 5719:3 5743:1 5746:3 5759:2 5764:1 5779:1 5783:1 5785:1 5790:2 5795:1 5799:1 5800:1 5811:1 5817:1 5831:1 5859:8 5882:1 5887:1 5894:1 5900:1 5912:1 5919:1 5921:2 5925:5 5942:2 5975:1 5992:1 6000:1 6006:1 6008:1 6014:1 6020:2 6027:1 6029:1 6049:2 6053:2 6057:1 6087:1 6090:1 6110:2 6127:1 6128:1 6195:2 6227:2 6229:1 6232:2 6242:1 6262:1 6266:1 6294:1 6297:1 6334:1 6341:4 6363:2 6378:2 6397:1 6409:1 6442:2 6444:1 6445:2 6471:1 6472:1 6473:1 6480:1 6492:1 6497:1 6500:1 6555:2 6557:1 6571:1 6575:1 6590:2 6603:4 6612:1 6613:9 6630:3 6645:1 6654:1 6672:2 6696:1 6698:3 6699:1 6721:1 6763:6 6815:6 6826:2 6827:2 6828:1 6829:1 6832:7 6840:1 6842:1 6849:1 6851:1 6869:1 6875:1 6883:1 6894:4 6916:3 6917:1 6923:1 6926:1 6931:1 6932:2 6935:1 6938:1 6939:1 6941:1 6942:2 6945:1 6969:1 6971:1 7005:1 7065:1 7071:1 7081:1 7084:2 7090:2 7093:3 7113:8 7118:1 7127:1 7128:1 7169:1 7180:1 7197:2 7210:1 7230:1 7234:1 7239:9 7240:1 7268:1 7276:1 7280:1 7296:1 7302:11 7303:1 7319:2 7333:1 7345:1 7369:1 7380:2 7388:1 7401:1 7419:1 7421:2 7428:3 7429:2 7434:3 7439:1 7460:1 7463:1 7468:1 7516:1 7529:2 7532:1 7550:2 7560:2 7561:1 7575:1 7576:1 7584:1 7643:2 7651:1 7658:1 7694:1 7706:1 7750:6 7751:1 7762:1 7763:1 7764:2 7779:1 7781:1 7814:2 7818:1 7823:1 7870:2 7901:1 7906:3 7936:1 7944:1 7945:4 7969:1 7971:1 7978:3 7979:1 7996:1 8006:1 8030:2 8033:2 8055:1 8058:16 8068:3 8087:1 8088:2 8104:1 8105:1 8126:1 8130:2 8175:2 8179:1 8185:1 8238:1 8241:4 8258:2 8289:2 8307:4 8309:1 8327:1 8328:1 8329:4 8332:2 8333:5 8341:1 8351:4 8352:2 8359:6 8360:2 8364:1 8366:1 8372:1 8377:1 8378:1 8386:24 8389:1 8410:21 8413:1 8438:1 8441:1 8452:1 8483:1 8513:1 8517:1 8540:1 8544:1 8546:1 8560:1 8569:1 8592:3 8595:3 8624:1 8648:1 8682:1 8705:3 8710:3 8712:1 8761:1 8766:3 8781:1 8819:2 8829:1 8839:1 8841:1 8868:1 8879:1 8883:1 8889:2 8921:13 8950:3 8964:1 8976:16 8982:7 8983:1 8984:2 8985:1 8986:1 9007:1 9016:2 9020:1 9021:3 9059:1 9073:1 9079:1 9100:1 9117:1 9120:1 9134:1 9138:4 9178:1 9182:1 9183:16 9191:2 9208:1 9220:9 9223:1 9229:1 9235:1 9250:1 9283:1 9285:1 9286:1 9290:2 9296:1 9297:1 9299:1 9300:1 9301:2 9302:1 9304:1 9312:1 9315:1 9317:2 9332:1 9355:1 9380:2 9381:6 9390:1 9395:2 9402:1 9403:1 9406:1 9416:1 9417:1 9451:2 9476:1 9490:1 9491:2 9508:1 9514:2 9520:1 9561:1 9570:3 9571:1 9597:2 9610:1 9648:1 9652:2 9658:3 9675:1 9685:2 9701:1 9713:2 9715:1 9724:1 9725:2 9734:3 9740:1 9743:2 9781:1 9785:1 9789:1 9792:1 9799:1 9801:1 9812:1 9815:2 9831:1 9844:2 9848:1 9850:1 9856:1 9859:1 9893:1 9907:1 9910:2 9911:1 9920:1 9932:2 9934:1 9957:2 9961:1 9979:1 9985:1 10048:2 10062:1 10086:1 10095:1 10116:3 10135:1 10178:1 10185:1 10206:1 10211:1 10214:1 10251:4 10255:1 10257:1 10273:1 10283:2 10307:1 10342:1 10351:1 10372:3 10374:1 10377:6 10381:32 10383:1 10385:3 10387:1 10392:2 10399:2 10402:1 10406:1 10416:4 10420:1 10423:1 10430:3 10434:2 10450:4 10491:1 10492:2 10503:1 10508:1 10510:2 10516:2 10532:1 10539:1 10545:1 10552:1 10569:1 10608:1 10621:2 10622:1 10649:1 10654:1 10655:1 10659:2 10678:4 10705:1 10716:1 10751:1 10757:2 10759:1 10773:1 10776:1 10777:3 10784:1 10793:3 10800:3 10808:1 10822:1 10828:3 10830:1 10836:1 10857:3 10860:22 10886:1 10922:2 10951:4 10971:1 10988:1 10989:1 11034:1 11094:1 11113:1 11114:2 11126:1 11130:2 11139:1 11141:1 11178:1 11183:2 11185:1 11189:1 11203:1 11209:1 11221:1 11250:1 11257:1 11274:1 11289:1 11290:1 11295:2 11304:2 11306:1 11313:4 11362:2 11382:1 11383:1 11388:1 11404:3 11408:2 11451:1 11453:2 11467:16 11473:1 11484:1 11486:1 11489:1 11498:1 11503:1 11514:1 11515:5 11520:1 11530:1 11553:1 11557:2 11574:4 11585:1 11591:2 11598:1 11608:2 11634:1 11654:1 11655:1 11661:2 11663:1 11693:1 11703:1 11706:1 11710:9 11714:1 11728:1 11730:1 11742:2 11761:1 11766:1 11785:1 11798:1 11820:1 11840:3 11854:1 11860:4 11863:3 11864:1 11866:1 11879:1 11883:1 11886:3 11887:1 11888:2 11893:2 11896:1 11900:1 11910:1 11929:1 11943:1 12001:1 12004:1 12013:1 12025:1 12026:1 12042:4 12045:1 12048:1 12071:1 12072:1 12088:1 12094:1 12097:1 12098:1 12123:1 12135:1 12145:1 12167:1 12174:2 12186:1 12188:1 12191:1 12213:1 12214:2 12220:2 12225:1 12227:1 12228:1 12239:1 12258:1 12260:1 12266:1 12289:1 12292:1 12296:1 12319:1 12327:1 12334:1 12351:1 12373:1 12399:1 12419:1 12420:3 12424:1 12425:1 12427:1 12463:1 12475:1 12476:1 12489:1 12505:1 12530:1 12536:3 12543:1 12551:4 12564:2 12571:1 12574:2 12576:1 12583:1 12595:2 12630:2 12646:4 12648:1 12653:1 12659:1 12665:2 12677:6 12680:2 12686:3 12704:1 12706:6 12716:2 12730:1 12735:1 12739:3 12745:1 12760:1 12774:2 12778:1 12787:1 12810:3 12838:1 12884:1 12890:1 12924:1 12926:1 12974:1 12983:2 13000:1 13027:1 13034:1 13053:1 13055:2 13061:1 13062:1 13081:4 13086:1 13091:1 13098:1 13105:2 13142:1 13166:1 13188:1 13191:1 13209:2 13226:2 13230:1 13232:2 13270:1 13276:1 13301:1 13319:1 13329:1 13337:2 13351:8 13363:1 13364:1 13369:1 13387:2 13392:2 13401:1 13405:1 13416:1 13457:1 13478:1 13506:1 13537:1 13544:2 13545:2 13550:1 13595:1 13604:1 13616:1 13637:1 13640:2 13644:1 13674:2 13698:1 13703:1 13705:1 13736:10 13754:1 13762:11 13792:1 13794:1 13797:1 13825:2 13834:1 13835:1 13845:1 13855:1 13858:1 13861:1 13936:4 13937:1 13940:1 13941:2 13987:1 13989:1 13990:2 13993:1 14001:12 14042:1 14052:1 14061:8 14082:1 14095:1 14103:1 14157:1 14204:1 14218:1 14232:1 14236:1 14250:2 14255:2 14257:1 14274:2 14295:1 14301:4 14311:2 14313:1 14314:1 14324:1 14326:1 14328:2 14330:1 14355:1 14393:1 14395:1 14404:1 14411:1 14417:1 14426:3 14450:2 14460:1 14467:2 14474:1 14482:2 14483:1 14493:1 14514:1 14517:1 14520:1 14523:1 14524:1 14526:1 14544:1 14545:1 14549:1 14552:2 14557:5 14563:1 14582:1 14584:1 14626:1 14638:1 14661:1 14662:5 14670:1 14677:4 14713:1 14717:2 14720:1 14727:1 14736:1 14744:4 14749:1 14752:2 14757:1 14760:1 14799:1 14804:4 14813:1 14828:1 14837:1 14847:2 14859:2 14883:1 14890:1 14913:1 14914:1 14915:6 14936:2 14946:1 14965:1 14972:1 14975:2 14987:1 14990:1 15026:2 15035:2 15059:1 15072:1 15078:1 15114:4 15144:3 15154:2 15195:1 15210:3 15213:2 15219:1 15233:2 15252:2 15256:1 15273:1 15274:1 15287:1 15338:1 15344:1 15375:1 15400:1 15401:1 15433:1 15438:8 15448:1 15455:1 15503:1 15510:1 15512:1 15528:1 15530:3 15535:2 15541:1 15545:1 15551:4 15553:1 15558:1 15585:2 15604:22 15606:2 15608:1 15659:3 15660:1 15663:1 15710:5 15715:1 15737:1 15744:1 15763:1 15764:1 15822:1 15828:1 15843:1 15852:1 15871:1 15905:1 15925:1 15934:1 15951:1 15975:1 15977:1 15980:1 15992:2 15994:1 15997:1 15999:1 16004:1 16006:3 16011:1 16019:2 16026:3 16046:1 16064:3 16090:1 16100:1 16121:1 16130:1 16132:1 16153:1 16158:2 16161:1 16162:1 16165:1 16169:1 16175:1 16195:1 16196:3 16199:1 16201:4 16224:1 16227:3 16236:1 16255:1 16256:6 16259:2 16274:1 16288:1 16318:1 16330:1 16332:1 16335:1 16351:1 16359:1 16364:1 16375:12 16450:1 16451:1 16460:1 16461:1 16469:4 16481:1 16491:1 16506:1 16524:1 16539:4 16589:3 16594:3 16612:1 16639:1 16642:1 16645:1 16663:1 16699:4 16702:2 16709:6 16712:1 16722:2 16732:1 16749:1 16763:1 16766:1 16772:1 16780:3 16804:15 16806:2 16817:1 16824:1 16825:1 16838:2 16869:1 16890:1 16913:7 16919:1 16952:1 16958:1 16963:2 16972:1 16974:1 16982:1 16995:1 17004:1 17038:2 17052:1 17058:3 17070:1 17074:1 17075:1 17098:3 17107:1 17127:1 17145:1 17161:1 17163:4 17164:4 17196:1 17200:2 17202:1 17204:2 17214:1 17223:1 17227:2 17236:1 17240:1 17248:1 17256:1 17267:2 17290:1 17291:1 17295:1 17302:2 17323:1 17345:2 17361:2 17373:1 17394:1 17413:3 17428:1 17432:1 17461:7 17482:1 17488:1 17490:3 17495:1 17505:1 17509:1 17513:1 17514:3 17521:3 17522:1 17556:1 17559:1 17561:1 17564:1 17572:1 17584:1 17588:1 17590:1 17591:1 17599:1 17603:1 17604:2 17610:2 17613:1 17615:1 17658:1 17671:1 17678:2 17679:1 17680:1 17700:1 17717:1 17718:1 17792:4 17797:1 17802:1 17828:1 17834:1 17835:2 17836:1 17848:2 17867:1 17882:1 17932:1 17933:1 17944:1 17958:1 17991:2 18019:1 18028:1 18045:1 18046:1 18068:1 18076:1 18108:3 18110:2 18114:2 18120:6 18143:1 18167:1 18173:1 18174:10 18218:1 18223:1 18247:1 18260:1 18286:2 18296:1 18334:1 18344:1 18366:1 18369:1 18373:2 18374:1 18383:1 18414:1 18415:1 18421:1 18424:3 18425:2 18427:2 18435:15 18438:6 18452:6 18457:2 18465:1 18472:2 18479:4 18482:1 18488:2 18515:1 18540:1 18579:1 18615:3 18616:1 18632:1 18635:1 18639:2 18643:1 18648:2 18651:1 18661:1 18662:1 18682:1 18713:1 18728:2 18734:1 18743:1 18746:3 18752:3 18759:1 18783:2 18789:3 18793:1 18797:1 18809:1 18823:1 18833:1 18841:1 18879:1 18882:2 18885:1 18910:1 18911:1 18918:1 18928:1 18934:2 18951:2 18964:2 18974:4 18984:2 18988:3 19003:1 19004:1 19008:1 19013:1 19019:1 19021:3 19026:1 19030:1 19035:1 19036:1 19054:3 19057:3 19065:1 19066:1 19072:2 19077:4 19087:1 19113:2 19114:1 19118:4 19124:1 19130:1 19132:1 19138:1 19155:1 19176:1 19182:1 19217:1 19226:1 19234:1 19242:1 19256:1 19266:2 19284:3 19287:1 19288:1 19291:1 19297:2 19341:1 19352:1 19372:1 19387:1 19390:1 19399:1 19401:3 19414:1 19418:2 19428:1 19443:1 19446:5 19450:1 19460:1 19472:3 19504:6 19509:1 19511:7 19516:5 19521:1 19522:1 19523:1 19537:1 19557:1 19558:4 19571:4 19589:1 19636:1 19648:1 19664:1 19670:1 19671:3 19676:1 19677:1 19706:1 19757:2 19783:1 19802:7 19812:1 19847:1 19875:1 19879:1 19880:1 19883:1 19906:1 19908:6 19916:1 19925:1 19959:4 19980:22 20029:1 20034:2 20070:2 20083:2 20110:1 20129:4 20131:1 20174:2 20179:1 20264:1 20268:22 20271:1 20272:1 20293:2 20304:1 20326:1 20328:3027 20336:1 20365:1 20372:1 20378:3 20407:1 20411:1 20434:1 20439:1 20448:1 20468:1 20471:2 20497:4 20499:1 20503:1 20521:1 20526:1 20529:1 20530:1 20531:1 20551:1 20557:2 20565:5 20569:1 20576:1 20578:5 20582:1 20584:1 20585:2 20596:2 20603:2 20611:1 20647:1 20662:1 20665:1 20669:3 20741:1 20743:1 20781:1 20796:1 20802:1 20806:1 20820:1 20825:1 20828:1 20856:1 20877:1 20915:1 20977:6 20985:1 21000:1 21007:1 21019:1 21021:8 21023:4 21027:1 21044:1 21049:1 21050:3 21072:1 21079:3 21092:1 21095:1 21097:2 21101:1 21117:1 21132:1 21140:1 21145:1 21146:2 21147:1 21156:2 21160:7 21192:2 21216:1 21226:1 21237:4 21262:6 21276:1 21279:1 21291:1 21298:12 21299:2 21308:1 21309:1 21326:2 21350:1 21359:1 21361:1 21378:21 21391:1 21398:3 21399:1 21417:1 21425:4 21436:2 21442:2 21446:1 21464:1 21476:2 21486:1 21511:2 21523:2 21524:3 21542:1 21547:1 21551:5 21573:1 21580:1 21590:2 21597:5 21598:2 21603:1 21635:2 21652:2 21666:1 21667:1 21676:1 21747:1 21753:1 21755:4 21761:1 21777:2 21798:2 21832:1 21862:1 21863:1 21868:1 21871:1 21875:3 21879:1 21888:1 21894:1 21905:1 21926:1 21936:1 21971:2 21972:1 21978:1 21996:1 22001:1 22010:1 22021:1 22036:1 22045:11 22062:1 22064:1 22066:2 22068:1 22084:9 22116:1 22117:1 22122:1 22149:1 22159:1 22235:2 22240:1 22272:2 22284:1 22287:1 22288:2 22299:1 22307:1 22316:1 22325:4 22337:1 22339:3 22345:7 22367:1 22381:2 22387:1 22411:1 22446:2 22450:4 22456:2 22462:1 22476:1 22482:4 22507:1 22512:1 22513:1 22533:2 22538:1 22548:1 22577:1 22585:1 22589:1 22604:1 22617:2 22622:1 22630:1 22635:2 22636:1 22643:2 22655:7 22657:1 22661:1 22674:11 22675:1 22703:1 22704:1 22716:1 22724:1 22736:1 22747:1 22784:1 22786:1 22810:1 22812:1 22815:4 22818:1 22819:1 22827:2 22829:1 22838:1 22854:1 22868:1 22870:2 22873:1 22876:2 22902:1 22904:2 22915:1 22939:1 22957:1 22987:1 22988:2 22991:1 22992:1 23010:1 23019:1 23026:1 23034:2 23037:2 23058:1 23060:1 23078:1 23084:4 23116:1 23129:1 23147:1 23168:2 23169:1 23178:1 23201:1 23233:1 23242:1 23245:1 23248:1 23256:1 23257:1 23261:2 23276:3 23280:1 23303:1 23307:1 23317:1 23322:1 23325:1 23331:1 23346:2 23349:1 23363:2 23368:1 23377:1 23380:1 23382:1 23392:1 23399:1 23422:1 23458:2 23462:3 23476:2 23478:1 23496:1 23511:2 23513:1 23519:3 23535:2 23543:2 23554:1 23556:1 23564:1 23566:1 23571:1 23572:4 23573:2 23583:1 23590:4 23596:1 23615:1 23616:1 23657:1 23662:1 23723:2 23737:1 23744:1 23745:1 23763:1 23803:1 23811:2 23826:2 23836:1 23863:7 23870:1 23871:1 23878:1 23880:1 23893:2 23899:1 23912:1 23921:8 23941:1 23953:1 23954:1 23958:1 23965:1 23973:1 23979:1 23981:1 23988:1 24008:1 24009:2 24023:1 24026:2 24032:1 24038:1 24039:2 24055:1 24057:1 24063:1 24078:1 24101:1 24115:2 24119:1 24144:1 24148:1 24153:1 24159:1 24163:2 24164:1 24172:1 24174:1 24181:4 24183:3 24187:1 24190:1 24198:1 24225:1 24232:2 24233:2 24236:1 24254:1 24263:2 24272:1 24273:2 24275:1 24276:3 24279:1 24283:1 24285:2 24301:1 24307:1 24311:2 24316:2 24319:1 24327:1 24332:2 24358:1 24360:1 24372:2 24382:1 24383:3 24386:3 24400:1 24402:2 24407:2 24436:1 24438:1 24450:2 24455:2 24475:1 24476:1 24486:1 24487:1 24494:1 24495:3 24518:1 24534:1 24537:1 24554:1 24568:1 24572:1 24573:1 24583:1 24586:4 24590:4 24597:1 24603:1 24613:2 24618:1 24620:2 24621:1 24627:1 24633:1 24635:1 24651:1 24657:1 24663:1 24669:1 24676:2 24680:1 24693:1 24701:5 24708:1 24716:1 24719:1 24727:2 24735:1 24737:1 24772:1 24773:2 24777:2 24782:1 24786:3 24787:1 24795:2 24805:1 24808:1 24820:1 24839:1 24862:2 24863:1 24876:1 24935:1 24945:1 24976:1 24981:1 24988:1 25019:2 25032:1 25033:1 25044:1 25047:1 25056:13 25071:1 25091:6 25097:1 25105:1 25115:6 25123:1 25142:1 25148:3 25174:1 25191:3 25192:1 25193:1 25200:1 25202:1 25214:1 25215:1 25217:1 25246:1 25253:1 25266:1 25267:1 25268:1 25271:1 25272:1 25275:1 25280:3 25301:1 25302:1 25308:1 25323:2 25330:1 25332:8 25340:1 25352:2 25353:1 25361:1 25364:2 25376:1 25391:1 25392:1 25398:2 25410:1 25413:1 25421:5 25435:1 25442:1 25450:1 25470:1 25472:2 25476:1 25490:1 25520:1 25525:2 25545:1 25546:1 25556:1 25572:1 25577:1 25593:1 25619:1 25630:3 25655:1 25674:7 25689:1 25694:1 25704:1 25709:3 25734:1 25736:1 25749:1 25766:2 25772:1 25781:1 25788:1 25793:1 25798:4 25799:1 25802:2 25803:1 25808:1 25835:1 25844:2 25891:1 25896:1 25907:1 25919:2 25924:1 25927:1 25928:1 25937:1 25940:1 25961:1 25970:1 25995:1 26000:1 26011:1 26012:1 26014:1 26058:1 26065:1 26089:1 26092:1 26094:1 26103:1 26107:1 26123:1 26125:3 26128:1 26133:1 26135:2 26136:1 26139:2 26143:1 26147:2 26154:1 26155:1 26158:1 26164:3 26169:1 26178:3 26192:1 26193:1 26208:2 26213:1 26225:1 26235:2 26248:5 26262:1 26263:1 26268:3 26271:1 26273:1 26276:1 26280:1 26281:1 26282:1 26288:2 26293:1 26305:5 26315:1 26339:3 26355:1 26364:1 26385:1 26389:3 26404:1 26428:1 26435:1 26438:1 26444:2 26447:1 26466:1 26491:2 26552:1 26553:1 26560:1 26563:2 26569:1 26589:1 26592:1 26594:1 26595:1 26604:1 26607:1 26608:2 26611:4 26618:1 26622:1 26630:1 26631:1 26632:1 26642:1 26653:4 26660:1 26690:1 26692:1 26694:1 26696:1 26716:1 26727:1 26744:1 26746:1 26749:1 26755:1 26757:1 26762:2 26769:1 26781:7 26809:3 26819:1 26821:2 26863:1 26894:1 26901:2 26902:1 26904:2 26915:1 26916:2 26929:1 26931:1 26943:1 27033:1 27034:1 27037:2 27039:1 27046:1 27052:1 27075:3 27088:3 27093:2 27095:1 27097:1 27104:2 27113:1 27125:1 27138:1 27145:1 27163:1 27164:1 27177:1 27202:1 27207:1 27209:4 27216:1 27230:2 27232:1 27247:1 27253:1 27264:1 27273:1 27297:3 27302:2 27308:1 27315:1 27326:1 27338:1 27352:3 27362:2 27375:1 27390:1 27400:1 27402:1 27416:1 27418:1 27422:1 27426:11 27427:1 27429:1 27441:1 27466:2 27472:2 27488:1 27515:2 27546:1 27559:1 27574:1 27575:1 27582:2 27583:1 27588:2 27604:4 27605:1 27606:2 27614:1 27620:2 27639:1 27662:9 27667:3 27685:2 27690:2 27693:1 27718:2 27726:1 27737:5 27761:3 27768:1 27785:1 27788:1 27792:1 27799:1 27817:5 27822:1 27839:2 27851:7 27892:1 27906:1 27945:3 27950:1 27969:1 27979:1 27995:2 28000:1 28005:1 28025:1 28040:1 28046:1 28056:1 28066:1 28072:1 28074:1 28084:2 28094:1 28122:2 28128:1 28139:1 28149:1 28159:1 28160:1 28189:1 28193:1 28197:1 28204:3 28207:1 28217:2 28256:1 28259:2 28262:2 28266:1 28275:1 28301:1 28307:1 28400:1 28406:1 28419:1 28428:3 28459:1 28474:1 28488:1 28499:1 28502:1 28504:1 28505:1 28527:3 28540:9 28555:1 28561:2 28575:1 28630:1 28642:1 28644:1 28645:1 28658:2 28715:1 28716:1 28723:2 28728:2 28744:1 28754:2 28755:7 28764:1 28765:1 28778:8 28783:2 28792:1 28800:1 28809:1 28823:1 28843:2 28856:1 28858:9 28876:1 28877:3 28883:1 28900:1 28911:1 28916:1 28929:1 28933:22 28947:1 28960:1 28961:1 28977:1 28984:2 29024:1 29034:2 29039:1 29052:2 29063:1 29071:1 29075:1 29078:1 29090:1 29091:1 29113:1 29126:1 29146:1 29154:1 29161:1 29182:1 29193:1 29207:1 29221:3 29231:1 29239:5 29240:1 29268:1 29272:3 29292:1 29314:1 29339:2 29348:1 29349:2 29357:1 29387:2 29396:2 29404:2 29413:1 29422:1 29424:2 29429:1 29430:2 29431:3 29444:1 29457:5 29465:1 29471:7 29490:1 29495:2 29519:1 29535:1 29537:1 29543:2 29546:1 29551:1 29557:3 29560:1 29581:1 29602:1 29627:1 29650:1 29652:2 29664:1 29675:1 29684:1 29708:1 29721:1 29727:1 29730:1 29742:1 29748:1 29749:1 29759:1 29761:1 29762:1 29763:1 29764:1 29770:1 29775:1 29795:3 29798:1 29810:1 29816:8 29855:1 29865:1 29866:2 29890:1 29901:1 29902:1 29930:1 29931:1 29932:1 29935:2 29988:1 29990:1 29998:1 30003:1 30013:1 30036:1 30047:1 30056:2 30084:3 30088:1 30113:3 30123:1 30137:15 30138:1 30144:1 30145:1 30157:1 30162:3 30173:2 30180:2 30183:1 30184:2 30186:1 30187:1 30225:2 30226:1 30239:7 30241:11 30253:1 30263:1 30264:2 30277:2 30279:1 30280:1 30284:1 30294:2 30312:1 30330:3 30334:1 30335:2 30339:7 30352:1 30362:1 30384:1 30385:1 30394:1 30396:6 30438:1 30447:2 30449:2 30459:1 30462:4 30466:1 30468:1 30508:1 30522:1 30538:1 30541:1 30549:1 30551:1 30561:2 30573:1 30580:1 30586:1 30592:1 30607:1 30621:3 30637:1 30646:1 30653:1 30654:1 30678:1 30679:1 30680:2 30682:2 30686:2 30716:2 30725:2 30760:3 30787:1 30795:2 30815:4 30823:1 30854:3 30868:1 30871:1 30872:1 30897:2 30898:1 30901:1 30902:1 30903:1 30906:1 30927:1 30950:2 30952:1 30962:1 30998:1 31028:1 31032:1 31034:1 31037:2 31051:1 31060:1 31076:1 31089:4 31095:1 31098:4 31105:2 31115:1 31128:1 31138:1 31156:1 31168:1 31184:2 31210:1 31215:1 31233:4 31258:1 31281:1 31308:1 31316:1 31331:1 31341:1 31342:3 31353:1 31355:3 31359:1 31377:1 31378:1 31383:1 31390:1 31407:3 31421:1 31427:2 31432:1 31446:1 31447:2 31462:1 31478:2 31481:1 31489:5 31494:1 31495:1 31497:1 31505:6 31507:1 31508:1 31510:1 31514:1 31542:1 31548:1 31550:1 31559:1 31567:1 31615:2 18 6:1 8:1 13:1 14:1 18:2 21:1 34:1 37:1 55:1 65:1 69:1 75:1 80:1 85:1 123:2 142:1 188:4 210:2 214:1 216:2 219:1 232:1 237:2 266:1 269:2 273:2 283:3 302:1 323:3 339:4 352:1 358:1 359:1 372:7 383:1 384:1 389:1 394:1 395:1 410:1 448:1 449:3 454:1 462:1 464:1 466:1 469:2 477:1 490:1 501:1 538:1 548:2 552:1 570:1 572:1 595:3 599:1 600:4 603:3 618:1 628:4 632:1 643:1 646:2 656:4 664:1 683:1 694:2 704:7 715:1 716:1 735:1 748:3 756:1 767:3 768:1 781:1 782:1 790:1 795:1 802:1 846:1 866:1 881:1 888:4 890:3 897:1 898:2 909:1 921:1 923:2 924:3 926:1 937:2 949:1 950:2 960:2 964:1 970:1 973:1 992:1 1011:1 1014:4 1050:2 1082:1 1130:1 1132:3 1135:2 1148:1 1152:1 1167:1 1181:1 1202:1 1210:1 1248:4 1270:2 1272:2 1279:2 1280:2 1281:1 1283:2 1295:1 1316:3 1332:1 1342:1 1343:1 1351:2 1353:1 1371:2 1434:1 1437:1 1444:2 1447:1 1453:2 1454:2 1461:1 1465:1 1487:2 1500:3 1501:1 1506:1 1518:1 1520:1 1522:1 1554:1 1556:2 1558:1 1562:1 1582:1 1595:2 1604:1 1615:2 1619:1 1633:4 1634:1 1636:1 1637:3 1647:3 1648:1 1662:1 1664:1 1689:1 1706:2 1708:2 1720:2 1723:1 1749:1 1751:1 1752:1 1785:1 1789:3 1824:1 1831:1 1842:4 1866:2 1885:1 1960:1 1963:1 1966:1 1979:2 1981:2 1985:1 1991:1 1993:4 2014:2 2043:2 2047:1 2061:1 2073:1 2079:1 2085:2 2091:1 2093:2 2117:1 2131:2 2133:3 2137:1 2140:16 2143:1 2144:1 2147:1 2152:1 2169:1 2183:1 2187:1 2192:1 2212:1 2217:1 2225:1 2242:2 2253:2 2254:1 2263:1 2273:1 2290:1 2300:3 2303:1 2310:1 2312:6 2314:1 2315:1 2318:1 2319:6 2321:1 2322:1 2324:1 2326:2 2328:1 2329:4 2336:4 2342:4 2344:2 2346:1 2361:2 2362:1 2363:1 2365:1 2369:1 2371:1 2374:1 2375:3 2377:2 2381:2 2382:1 2388:1 2393:3 2396:2 2397:4 2403:2 2407:1 2410:2 2412:1 2414:3 2416:1 2423:3 2432:23 2442:1 2450:3 2456:1 2506:4 2517:1 2521:1 2528:1 2541:1 2543:1 2545:1 2547:1 2555:1 2557:4 2565:1 2580:1 2608:1 2619:1 2621:2 2645:1 2649:1 2653:1 2662:1 2687:2 2699:5 2701:1 2717:1 2718:1 2720:2 2728:3 2737:1 2754:2 2769:1 2771:1 2793:2 2820:2 2827:3 2828:1 2836:1 2840:1 2847:1 2850:2 2873:1 2880:1 2883:3 2884:1 2889:1 2895:1 2896:1 2925:1 2931:1 2949:1 2952:6 2956:1 2964:2 2974:1 2975:1 2988:1 3040:1 3050:2 3059:1 3063:11 3066:3 3068:1 3088:1 3107:2 3116:1 3119:20 3126:1 3127:2 3129:1 3133:1 3143:2 3148:3 3156:1 3164:3 3182:1 3184:2 3218:1 3221:1 3226:1 3230:1 3317:2 3329:1 3330:6 3388:4 3401:1 3439:1 3442:1 3447:1 3448:3 3467:1 3479:1 3489:1 3490:1 3494:3 3495:1 3500:1 3525:1 3528:3 3532:1 3537:2 3545:1 3563:3 3573:1 3581:1 3588:1 3595:1 3600:1 3619:1 3661:1 3719:1 3728:1 3732:1 3736:4 3751:1 3791:1 3798:1 3808:1 3820:3 3825:1 3828:1 3838:1 3860:1 3861:1 3872:1 3900:1 3928:2 3948:1 3949:2 3952:3 3973:2 3982:1 3997:1 4010:1 4019:1 4020:3 4025:2 4056:1 4058:2 4061:1 4063:1 4064:7 4065:5 4066:1 4077:1 4078:1 4086:2 4089:2 4096:1 4115:4 4116:1 4123:1 4128:1 4129:2 4133:4 4166:1 4167:1 4173:1 4176:1 4181:1 4185:3 4186:1 4197:1 4202:1 4223:1 4232:1 4242:1 4248:1 4255:2 4260:1 4281:2 4289:1 4301:1 4307:2 4313:2 4328:2 4348:1 4354:2 4371:1 4376:1 4390:1 4398:1 4410:1 4419:3 4422:3 4431:4 4437:1 4456:1 4467:2 4492:1 4496:1 4505:1 4526:1 4531:1 4540:2 4549:1 4560:1 4600:1 4609:2 4631:2 4634:1 4661:1 4663:1 4668:1 4677:4 4711:1 4712:1 4715:1 4717:2 4754:2 4757:1 4779:1 4789:5 4793:1 4798:1 4803:1 4822:1 4848:1 4851:2 4868:1 4890:1 4917:1 4920:1 4921:2 4922:3 4928:2 4933:1 4946:3 4968:1 4969:3 4983:1 4992:1 5002:1 5009:1 5012:5 5024:7 5031:1 5039:1 5041:1 5046:1 5080:1 5082:1 5098:3 5104:1 5108:2 5116:2 5119:1 5121:1 5136:1 5154:1 5155:1 5204:1 5212:2 5226:1 5245:1 5249:1 5268:3 5272:1 5282:1 5300:1 5310:16 5314:2 5315:1 5325:1 5335:1 5365:1 5370:1 5380:1 5423:1 5440:1 5444:1 5455:1 5474:2 5478:1 5481:1 5526:2 5531:1 5545:1 5546:1 5562:1 5567:1 5571:1 5575:1 5581:3 5582:1 5622:1 5648:2 5651:3 5683:1 5699:1 5719:3 5743:1 5746:3 5759:2 5764:1 5779:1 5783:1 5785:1 5790:2 5795:1 5799:1 5800:1 5811:1 5817:1 5831:1 5854:1 5859:9 5882:1 5887:1 5894:1 5900:1 5912:1 5919:1 5921:2 5925:5 5942:2 5975:1 5992:1 6000:1 6006:1 6008:1 6014:1 6020:2 6027:1 6029:1 6049:2 6053:2 6057:1 6087:1 6090:1 6110:2 6127:1 6128:1 6195:2 6227:2 6229:1 6232:3 6242:1 6262:1 6266:1 6294:1 6297:1 6334:1 6340:1 6341:4 6363:2 6378:2 6397:1 6409:1 6416:1 6442:2 6444:2 6445:2 6471:1 6472:1 6473:1 6480:1 6492:1 6497:1 6500:1 6555:2 6557:1 6571:1 6575:1 6590:2 6603:4 6612:1 6613:9 6630:3 6645:1 6654:1 6672:2 6696:1 6698:3 6699:1 6721:1 6763:7 6815:7 6826:2 6827:2 6828:1 6829:1 6832:7 6835:1 6840:1 6842:1 6849:1 6851:1 6869:1 6875:1 6883:1 6894:4 6916:3 6917:1 6923:1 6926:1 6931:1 6932:2 6935:1 6938:1 6939:1 6941:1 6942:2 6945:1 6969:1 6971:1 7005:1 7065:1 7071:1 7081:1 7084:3 7090:2 7093:3 7113:9 7118:1 7127:1 7128:1 7129:1 7169:1 7180:1 7197:2 7210:1 7230:1 7234:1 7239:9 7240:1 7268:1 7276:1 7280:1 7296:1 7302:11 7303:1 7319:2 7333:1 7345:1 7369:1 7380:2 7388:1 7401:1 7419:1 7421:2 7428:3 7429:2 7434:3 7439:1 7460:1 7463:1 7468:1 7516:1 7529:2 7532:1 7550:2 7560:2 7561:1 7575:1 7576:1 7584:1 7593:1 7643:2 7651:1 7658:1 7694:1 7706:1 7750:6 7751:1 7762:1 7763:1 7764:2 7779:1 7781:1 7814:2 7818:1 7823:1 7870:2 7901:1 7906:3 7936:1 7944:1 7945:5 7969:1 7971:1 7978:3 7979:1 7996:1 8006:1 8030:2 8033:2 8055:1 8058:16 8068:3 8087:1 8088:2 8104:1 8105:1 8126:1 8130:2 8175:2 8179:1 8185:1 8238:1 8241:4 8258:2 8289:2 8307:4 8309:1 8327:1 8328:1 8329:4 8332:2 8333:5 8341:1 8351:4 8352:2 8359:6 8360:2 8364:1 8366:1 8372:1 8377:1 8378:1 8386:24 8389:1 8410:21 8413:1 8438:1 8441:1 8452:1 8460:1 8483:1 8513:1 8517:1 8540:1 8544:1 8546:1 8560:1 8569:1 8592:3 8595:3 8623:1 8624:1 8648:1 8682:1 8705:3 8710:3 8712:1 8761:1 8766:3 8781:1 8819:2 8823:1 8829:1 8839:1 8841:1 8868:1 8878:1 8879:1 8883:1 8889:2 8921:14 8950:3 8964:1 8976:16 8982:7 8983:1 8984:2 8985:1 8986:2 9007:1 9016:2 9020:1 9021:3 9059:1 9073:1 9079:1 9100:1 9117:1 9120:1 9134:1 9138:4 9178:1 9182:1 9183:16 9191:2 9208:1 9220:9 9223:1 9229:2 9235:1 9250:1 9283:2 9285:1 9286:1 9290:2 9296:1 9297:1 9299:1 9300:1 9301:2 9302:1 9303:1 9304:1 9312:1 9315:1 9317:2 9332:1 9354:1 9355:1 9380:2 9381:6 9390:1 9395:3 9402:1 9403:1 9406:1 9416:1 9417:1 9451:2 9476:1 9490:1 9491:2 9508:1 9514:2 9520:1 9561:1 9570:3 9571:1 9597:2 9610:1 9648:1 9652:2 9658:3 9675:1 9685:2 9701:1 9713:2 9715:1 9724:1 9725:2 9734:3 9740:1 9743:2 9781:1 9785:1 9789:1 9792:1 9799:1 9801:1 9812:1 9815:2 9831:1 9844:2 9848:1 9850:1 9856:1 9859:1 9893:1 9907:1 9910:2 9911:1 9920:1 9932:2 9934:1 9957:2 9961:1 9979:1 9985:1 10048:2 10062:1 10086:1 10095:1 10116:3 10135:1 10162:1 10178:1 10185:1 10206:1 10211:1 10214:1 10251:4 10255:1 10257:1 10273:1 10283:2 10307:1 10342:1 10351:1 10372:3 10374:1 10377:6 10381:32 10383:1 10385:4 10387:1 10392:2 10399:2 10402:1 10406:1 10416:5 10420:1 10423:1 10430:4 10434:2 10450:4 10491:1 10492:3 10503:1 10508:1 10510:2 10516:2 10532:1 10535:1 10539:1 10545:1 10552:1 10569:1 10608:1 10621:2 10622:1 10649:1 10654:1 10655:1 10659:2 10678:4 10705:1 10716:1 10751:1 10757:2 10759:1 10773:1 10776:1 10777:3 10784:1 10793:3 10800:3 10808:1 10822:1 10828:3 10830:1 10836:1 10857:3 10860:23 10886:1 10922:2 10951:4 10971:1 10988:1 10989:1 11034:1 11094:1 11113:1 11114:2 11126:1 11130:2 11139:1 11141:1 11178:1 11183:3 11185:1 11189:1 11203:1 11209:1 11221:1 11250:1 11257:1 11274:1 11289:1 11290:1 11295:2 11304:2 11306:1 11313:5 11323:1 11362:2 11382:1 11383:1 11388:1 11404:3 11408:2 11451:1 11453:2 11467:16 11473:1 11484:1 11486:1 11489:1 11498:1 11503:1 11514:1 11515:5 11520:1 11530:1 11553:1 11557:2 11574:4 11585:1 11591:2 11598:1 11608:2 11634:1 11654:1 11655:1 11661:2 11663:1 11693:1 11703:1 11706:1 11710:9 11714:1 11728:1 11730:1 11742:2 11761:1 11766:1 11785:1 11789:1 11798:1 11820:1 11840:3 11854:1 11860:4 11863:3 11864:1 11866:1 11879:1 11883:1 11886:3 11887:1 11888:2 11893:2 11896:1 11900:1 11910:1 11929:1 11943:1 12001:1 12004:1 12013:1 12025:1 12026:1 12027:1 12042:4 12045:1 12048:1 12071:1 12072:1 12088:1 12094:1 12097:1 12098:1 12123:1 12135:1 12145:1 12167:1 12174:2 12186:1 12188:1 12191:1 12200:1 12213:1 12214:2 12220:2 12225:1 12227:1 12228:1 12235:1 12239:1 12258:1 12260:1 12266:1 12289:1 12292:1 12296:1 12319:1 12327:1 12334:1 12351:1 12373:1 12399:1 12419:1 12420:3 12424:1 12425:1 12427:1 12452:1 12463:1 12473:1 12475:1 12476:1 12489:1 12505:1 12530:1 12536:3 12543:1 12551:4 12564:2 12571:1 12574:2 12576:1 12583:1 12595:2 12630:2 12646:4 12648:1 12653:1 12659:1 12665:2 12677:6 12680:2 12686:3 12704:1 12706:6 12716:2 12730:1 12735:1 12739:3 12745:1 12760:1 12774:2 12778:1 12787:1 12810:3 12838:1 12884:1 12890:1 12924:1 12926:1 12970:1 12974:1 12983:2 13000:1 13027:1 13034:1 13053:1 13055:2 13061:1 13062:1 13081:4 13086:1 13091:1 13098:1 13105:2 13142:1 13166:1 13188:1 13191:1 13209:2 13226:2 13230:1 13232:2 13270:1 13276:1 13301:1 13319:1 13329:1 13337:2 13351:8 13363:1 13364:1 13369:1 13387:2 13392:2 13401:1 13405:1 13416:1 13457:1 13478:1 13506:1 13537:1 13544:2 13545:2 13550:1 13595:1 13604:1 13616:1 13637:1 13640:2 13644:1 13674:2 13698:1 13703:1 13705:1 13736:10 13750:1 13754:1 13762:11 13792:1 13794:1 13797:1 13825:3 13834:1 13835:1 13845:1 13855:1 13858:1 13861:1 13924:1 13936:4 13937:1 13940:1 13941:2 13987:1 13989:1 13990:2 13993:1 14001:12 14042:1 14052:1 14061:8 14082:1 14086:1 14095:1 14103:1 14157:1 14204:1 14218:1 14232:1 14236:1 14250:2 14255:3 14257:1 14274:2 14293:1 14295:1 14301:4 14311:2 14313:1 14314:1 14324:1 14325:1 14326:1 14328:2 14330:1 14355:1 14393:1 14395:1 14404:1 14411:1 14417:1 14426:3 14450:2 14460:1 14467:2 14474:1 14482:2 14483:1 14493:1 14514:1 14517:1 14520:1 14523:1 14524:1 14526:1 14544:1 14545:1 14549:1 14552:2 14557:5 14563:1 14582:1 14584:1 14626:1 14638:1 14661:1 14662:5 14670:1 14677:4 14713:1 14717:2 14720:1 14727:1 14736:1 14744:4 14749:1 14752:2 14757:1 14760:1 14799:1 14804:4 14813:1 14828:1 14837:1 14847:2 14859:2 14883:1 14890:1 14913:1 14914:1 14915:7 14936:2 14946:1 14965:1 14972:2 14975:2 14987:1 14990:1 15026:3 15035:2 15059:1 15072:1 15078:1 15114:4 15144:4 15154:2 15195:1 15210:3 15213:2 15219:1 15233:2 15252:2 15256:1 15273:1 15274:1 15287:1 15338:1 15344:1 15375:1 15400:1 15401:1 15433:1 15438:9 15448:1 15455:1 15503:1 15510:1 15512:1 15528:1 15530:3 15535:2 15541:1 15545:1 15551:5 15553:1 15558:1 15585:2 15604:23 15606:2 15608:1 15659:3 15660:1 15663:1 15710:5 15715:1 15737:2 15744:1 15763:1 15764:1 15791:1 15822:1 15828:1 15843:1 15852:1 15871:1 15879:1 15905:1 15925:1 15934:1 15951:1 15975:1 15977:1 15980:1 15992:2 15994:1 15997:1 15999:1 16004:1 16006:3 16011:1 16019:2 16026:3 16046:1 16064:3 16090:1 16100:1 16121:1 16130:1 16132:1 16153:1 16156:1 16158:2 16161:1 16162:1 16165:1 16169:1 16175:1 16195:1 16196:3 16199:1 16201:4 16222:1 16224:1 16227:3 16236:1 16255:1 16256:6 16259:2 16274:1 16288:1 16318:1 16330:1 16332:1 16335:1 16351:1 16359:1 16364:1 16375:12 16450:1 16451:1 16460:1 16461:1 16469:4 16481:1 16491:1 16506:1 16524:1 16539:4 16559:1 16589:3 16594:3 16612:1 16639:1 16642:1 16645:1 16663:1 16699:5 16702:2 16709:6 16712:1 16722:2 16730:1 16732:1 16749:1 16750:1 16763:1 16766:1 16772:1 16780:3 16804:15 16806:2 16817:1 16824:1 16825:1 16838:2 16869:1 16875:1 16890:1 16913:7 16919:1 16952:1 16958:1 16963:2 16968:1 16972:1 16974:1 16981:1 16982:1 16995:1 17004:1 17038:2 17045:1 17052:1 17058:3 17070:1 17074:1 17075:1 17098:3 17107:1 17127:1 17145:1 17161:1 17163:4 17164:4 17196:1 17200:2 17202:1 17204:2 17214:1 17223:1 17227:2 17236:1 17240:1 17248:1 17256:1 17267:2 17290:1 17291:1 17295:1 17302:2 17323:1 17338:1 17345:2 17361:2 17373:1 17394:1 17413:3 17428:1 17432:1 17461:7 17482:1 17488:1 17490:3 17495:1 17505:1 17509:1 17513:1 17514:3 17521:3 17522:1 17556:1 17559:1 17561:1 17564:1 17572:1 17574:1 17584:1 17588:1 17590:1 17591:1 17594:1 17599:1 17603:1 17604:2 17610:2 17613:1 17615:1 17658:1 17671:1 17678:2 17679:1 17680:1 17700:1 17717:1 17718:1 17734:1 17792:5 17797:1 17802:1 17828:1 17834:1 17835:2 17836:1 17848:2 17867:1 17882:1 17932:1 17933:1 17944:1 17958:1 17991:2 18019:1 18028:1 18045:1 18046:1 18068:1 18076:1 18108:3 18110:2 18114:2 18120:6 18143:1 18167:1 18173:1 18174:10 18218:1 18223:1 18247:1 18260:1 18286:3 18296:1 18334:1 18344:1 18366:1 18369:1 18373:2 18374:1 18383:1 18414:1 18415:1 18421:1 18424:3 18425:2 18427:3 18435:15 18438:6 18452:6 18457:2 18465:1 18472:2 18479:4 18482:1 18488:2 18489:1 18515:1 18540:1 18579:1 18615:3 18616:1 18632:1 18635:1 18639:2 18643:1 18648:2 18651:1 18661:1 18662:1 18682:1 18713:1 18728:2 18734:1 18743:1 18746:4 18752:3 18759:1 18783:2 18789:3 18793:1 18797:1 18809:1 18817:1 18823:1 18833:1 18841:1 18879:1 18882:2 18885:1 18910:1 18911:1 18918:1 18928:1 18934:2 18951:2 18964:2 18974:5 18984:2 18988:3 19003:1 19004:1 19008:1 19013:1 19019:1 19021:3 19026:1 19030:1 19035:1 19036:1 19054:3 19057:3 19065:1 19066:1 19072:2 19077:4 19087:1 19113:2 19114:1 19118:4 19124:1 19130:1 19132:2 19138:1 19155:1 19176:1 19182:1 19217:1 19226:1 19234:1 19242:1 19256:1 19266:2 19284:3 19287:1 19288:1 19291:1 19297:2 19341:1 19352:1 19372:1 19387:1 19390:1 19399:1 19401:3 19414:1 19418:2 19428:1 19443:1 19446:5 19450:1 19460:1 19472:3 19504:6 19509:1 19511:7 19516:5 19521:1 19522:1 19523:1 19537:1 19557:1 19558:4 19571:4 19589:1 19636:1 19648:1 19664:1 19670:1 19671:3 19676:1 19677:1 19706:1 19757:2 19783:1 19802:7 19812:1 19829:1 19831:1 19847:1 19875:1 19879:1 19880:1 19883:1 19906:1 19908:6 19916:1 19925:1 19959:4 19980:23 20029:1 20034:2 20070:2 20083:2 20110:1 20129:5 20131:1 20174:2 20179:1 20264:1 20268:23 20271:1 20272:1 20293:2 20304:1 20309:1 20326:1 20328:3168 20336:1 20365:1 20372:1 20378:3 20407:1 20411:1 20434:1 20439:1 20448:1 20468:1 20471:2 20497:4 20499:1 20503:1 20521:1 20526:1 20529:1 20530:1 20531:1 20551:1 20557:2 20565:5 20569:1 20576:1 20578:5 20582:1 20584:1 20585:2 20596:2 20603:2 20611:1 20647:1 20662:1 20665:1 20669:3 20741:1 20743:1 20781:1 20784:1 20796:1 20802:1 20806:1 20820:1 20825:1 20828:1 20856:1 20877:1 20915:1 20977:6 20985:1 21000:1 21007:1 21019:1 21021:8 21023:4 21027:1 21044:1 21049:1 21050:3 21072:1 21079:3 21092:1 21095:1 21097:2 21101:1 21117:1 21132:1 21140:1 21145:1 21146:2 21147:1 21156:2 21158:1 21160:7 21192:2 21216:1 21226:1 21237:4 21262:6 21276:1 21279:1 21291:1 21298:12 21299:2 21308:1 21309:1 21320:1 21326:2 21350:1 21359:1 21361:1 21378:21 21391:1 21398:4 21399:1 21417:1 21425:4 21436:2 21442:2 21446:1 21464:1 21476:2 21486:1 21511:2 21523:2 21524:3 21542:1 21547:1 21551:5 21573:1 21580:1 21590:2 21597:5 21598:2 21603:1 21630:1 21635:2 21646:1 21652:2 21666:1 21667:1 21676:1 21747:1 21753:1 21755:4 21761:1 21777:2 21798:2 21832:1 21862:1 21863:1 21868:1 21871:1 21875:3 21879:1 21888:1 21894:1 21905:1 21926:2 21936:1 21971:2 21972:1 21978:1 21993:1 21996:1 22001:1 22010:1 22021:1 22036:1 22045:11 22062:1 22064:1 22066:2 22068:1 22084:9 22116:1 22117:1 22122:1 22149:1 22159:1 22235:2 22240:1 22272:2 22284:1 22287:1 22288:2 22299:1 22307:1 22316:1 22325:4 22337:1 22339:3 22345:7 22367:1 22381:2 22387:1 22411:1 22446:2 22450:4 22456:2 22462:1 22476:1 22482:4 22507:1 22512:1 22513:1 22533:2 22538:1 22548:1 22577:1 22585:1 22589:1 22604:1 22617:2 22622:1 22630:1 22635:2 22636:1 22643:2 22655:7 22657:1 22661:1 22674:11 22675:1 22703:1 22704:1 22716:1 22724:1 22736:1 22747:1 22784:1 22786:1 22810:1 22812:1 22815:4 22818:1 22819:1 22827:2 22829:1 22838:1 22854:1 22868:1 22870:2 22873:1 22876:2 22881:1 22902:1 22904:2 22915:1 22939:1 22957:1 22987:1 22988:2 22991:1 22992:1 23010:1 23019:1 23026:1 23034:2 23037:2 23058:1 23060:1 23078:1 23084:4 23112:1 23116:1 23129:1 23147:1 23168:2 23169:1 23178:1 23201:1 23233:1 23242:1 23245:1 23248:1 23256:1 23257:1 23261:2 23276:3 23280:1 23303:1 23307:1 23317:1 23322:1 23325:2 23331:1 23346:2 23349:1 23361:1 23363:2 23368:1 23377:1 23380:1 23382:1 23392:1 23399:1 23404:1 23422:1 23455:1 23458:2 23462:3 23476:2 23478:1 23496:1 23511:2 23513:1 23519:3 23535:2 23543:2 23554:1 23556:1 23564:2 23566:1 23571:1 23572:4 23573:2 23583:1 23590:4 23596:1 23615:1 23616:1 23657:1 23662:1 23723:2 23737:1 23744:1 23745:1 23763:1 23803:1 23811:2 23826:2 23836:1 23863:7 23870:1 23871:1 23874:1 23878:1 23880:1 23893:2 23899:1 23912:1 23921:9 23941:1 23953:1 23954:1 23958:1 23965:1 23973:1 23979:1 23981:1 23988:1 24008:1 24009:2 24023:1 24026:2 24032:1 24038:1 24039:3 24055:1 24057:1 24063:1 24078:1 24101:1 24115:2 24119:1 24144:1 24148:1 24153:1 24159:1 24163:2 24164:1 24172:1 24174:1 24181:4 24183:3 24187:1 24190:1 24198:1 24225:1 24232:3 24233:2 24236:1 24254:1 24263:2 24272:1 24273:2 24275:1 24276:3 24279:1 24283:1 24285:2 24301:1 24307:1 24311:3 24316:2 24319:1 24327:1 24332:2 24358:1 24360:1 24372:2 24382:1 24383:3 24386:3 24400:1 24402:2 24407:2 24436:1 24438:1 24450:2 24455:2 24475:1 24476:1 24486:1 24487:1 24494:1 24495:3 24518:1 24534:1 24537:1 24554:1 24568:1 24572:1 24573:1 24583:1 24586:4 24590:5 24597:1 24603:1 24613:2 24618:1 24620:2 24621:1 24627:1 24633:1 24635:1 24651:1 24657:1 24663:1 24669:1 24676:2 24680:1 24693:1 24701:5 24708:1 24716:1 24719:1 24727:2 24735:1 24737:1 24770:1 24772:1 24773:2 24777:2 24782:1 24786:3 24787:1 24795:2 24805:1 24808:1 24820:1 24839:1 24862:2 24863:1 24876:1 24935:1 24945:1 24976:1 24981:1 24988:1 25019:2 25032:1 25033:1 25044:1 25047:1 25056:13 25071:1 25091:6 25097:1 25105:1 25115:6 25123:1 25142:1 25148:3 25174:1 25191:3 25192:1 25193:1 25200:1 25202:1 25214:1 25215:1 25217:1 25246:1 25253:1 25266:1 25267:1 25268:1 25271:1 25272:1 25275:1 25280:3 25301:1 25302:1 25308:1 25314:1 25323:2 25330:1 25332:8 25340:1 25352:3 25353:1 25361:1 25364:2 25376:1 25391:1 25392:1 25398:2 25410:1 25413:1 25421:5 25435:1 25442:1 25450:1 25470:1 25472:2 25476:1 25490:1 25520:1 25525:2 25545:1 25546:1 25556:1 25572:1 25577:1 25593:1 25619:1 25630:3 25655:1 25674:7 25689:1 25694:1 25704:1 25709:3 25734:1 25736:1 25749:1 25766:2 25772:1 25781:1 25788:1 25793:1 25798:4 25799:1 25802:2 25803:1 25808:1 25835:1 25844:2 25891:1 25896:1 25907:1 25919:2 25924:1 25927:1 25928:1 25937:1 25940:1 25961:1 25970:1 25995:1 26000:1 26011:1 26012:1 26014:1 26017:1 26058:1 26065:1 26066:1 26089:1 26092:1 26094:1 26103:1 26107:1 26123:1 26125:3 26128:1 26133:1 26135:2 26136:1 26139:2 26143:1 26147:2 26154:1 26155:1 26158:1 26164:3 26169:1 26178:3 26192:1 26193:1 26208:2 26213:2 26225:1 26235:2 26248:5 26262:1 26263:1 26268:3 26271:1 26273:1 26276:1 26280:1 26281:1 26282:1 26288:2 26293:1 26305:5 26315:1 26339:3 26355:1 26364:1 26385:1 26389:3 26404:1 26419:1 26420:1 26428:1 26435:1 26438:1 26444:2 26447:1 26466:1 26491:2 26552:1 26553:1 26560:1 26563:2 26569:1 26589:1 26592:1 26594:1 26595:1 26604:1 26607:1 26608:2 26611:4 26618:1 26622:1 26630:1 26631:1 26632:1 26642:1 26653:4 26660:1 26690:1 26692:1 26694:1 26696:1 26716:1 26727:1 26744:1 26746:1 26749:1 26755:1 26757:1 26762:2 26769:1 26781:8 26809:3 26819:1 26821:2 26863:1 26894:1 26901:2 26902:1 26904:2 26915:1 26916:2 26929:1 26931:1 26943:1 26950:1 27033:1 27034:1 27037:2 27039:1 27046:1 27052:2 27075:3 27088:3 27093:2 27095:1 27097:1 27104:2 27113:1 27125:1 27138:1 27145:1 27163:1 27164:1 27177:1 27202:1 27207:1 27209:4 27210:1 27216:1 27230:2 27232:1 27247:1 27253:1 27264:1 27273:1 27297:3 27302:2 27308:1 27315:1 27326:2 27338:1 27352:3 27362:2 27375:1 27382:1 27390:1 27400:1 27402:1 27416:1 27418:1 27422:1 27426:11 27427:1 27429:1 27438:1 27441:1 27466:2 27468:1 27472:2 27488:1 27495:1 27515:2 27546:1 27559:1 27574:1 27575:2 27582:2 27583:1 27588:2 27604:4 27605:1 27606:2 27614:1 27620:2 27639:1 27662:9 27667:3 27685:2 27690:2 27693:2 27718:2 27726:1 27737:5 27761:3 27768:1 27785:1 27788:1 27792:1 27799:1 27817:5 27822:1 27839:2 27851:7 27892:1 27906:1 27945:3 27950:1 27969:1 27979:1 27995:2 28000:1 28005:1 28025:1 28040:1 28046:1 28056:1 28066:1 28072:2 28074:1 28084:2 28094:1 28122:2 28128:1 28139:1 28149:1 28159:1 28160:1 28189:1 28193:1 28197:1 28204:3 28207:1 28217:2 28256:1 28259:2 28262:2 28266:1 28275:2 28301:1 28307:1 28400:1 28403:1 28406:1 28419:1 28428:3 28459:1 28474:1 28488:1 28499:1 28502:1 28504:1 28505:1 28527:3 28540:9 28555:1 28561:2 28575:1 28630:1 28642:1 28644:1 28645:1 28658:2 28715:1 28716:1 28723:2 28728:2 28744:1 28754:2 28755:7 28764:1 28765:1 28778:9 28783:2 28792:1 28800:1 28809:1 28823:1 28843:2 28856:1 28858:9 28868:1 28876:1 28877:3 28883:1 28900:1 28911:1 28916:1 28929:1 28933:23 28947:1 28960:1 28961:1 28977:1 28984:2 29024:1 29034:2 29039:1 29052:2 29063:1 29071:1 29075:1 29078:1 29090:1 29091:1 29105:1 29113:1 29126:1 29146:1 29154:1 29161:1 29182:1 29193:1 29207:1 29221:3 29231:1 29239:5 29240:1 29268:1 29272:3 29292:1 29314:1 29339:2 29348:1 29349:2 29357:1 29387:2 29396:2 29404:2 29413:1 29422:1 29424:2 29429:1 29430:2 29431:3 29444:1 29457:5 29465:1 29471:7 29490:1 29495:2 29519:1 29535:1 29537:1 29543:2 29546:1 29551:1 29557:3 29560:1 29581:1 29602:1 29627:1 29650:1 29652:2 29654:1 29664:1 29675:1 29684:1 29701:1 29708:1 29721:1 29727:1 29730:1 29742:1 29748:1 29749:1 29759:1 29761:2 29762:1 29763:1 29764:1 29770:1 29775:1 29795:3 29798:1 29810:1 29816:9 29855:1 29865:1 29866:2 29890:1 29901:1 29902:1 29930:1 29931:1 29932:1 29935:3 29988:1 29990:1 29998:1 30003:1 30013:1 30036:1 30047:1 30056:2 30084:3 30088:1 30113:3 30123:1 30137:16 30138:1 30144:1 30145:1 30157:1 30162:3 30173:3 30180:2 30183:1 30184:2 30186:1 30187:1 30225:3 30226:1 30239:7 30241:11 30253:1 30263:1 30264:2 30277:2 30279:1 30280:1 30284:1 30294:2 30312:1 30330:3 30334:1 30335:2 30339:7 30352:1 30362:1 30384:1 30385:1 30394:1 30396:6 30438:1 30447:2 30449:2 30459:1 30462:4 30466:1 30468:1 30508:1 30522:1 30538:1 30541:1 30549:1 30551:1 30561:2 30573:1 30580:1 30586:1 30592:1 30607:1 30621:3 30637:1 30646:1 30653:1 30654:1 30678:1 30679:1 30680:2 30682:2 30686:2 30716:2 30725:2 30760:3 30787:1 30795:2 30815:4 30823:2 30854:3 30868:1 30871:1 30872:1 30897:2 30898:1 30901:1 30902:1 30903:1 30906:1 30911:1 30927:1 30950:2 30952:1 30962:1 30998:1 31028:1 31032:1 31034:1 31037:2 31051:1 31060:1 31076:1 31089:4 31095:1 31098:4 31105:2 31115:1 31128:1 31138:1 31156:1 31168:1 31184:2 31210:1 31215:1 31233:4 31258:1 31281:1 31308:1 31312:1 31316:1 31331:1 31341:1 31342:3 31353:1 31355:3 31359:1 31377:1 31378:1 31383:1 31390:1 31407:3 31421:1 31427:2 31432:1 31446:1 31447:2 31462:1 31478:2 31481:1 31489:5 31494:1 31495:1 31497:1 31505:6 31507:1 31508:1 31510:1 31514:1 31542:1 31548:1 31550:1 31559:1 31567:1 31615:2 18 6:1 8:1 13:1 14:1 18:2 21:1 34:1 37:1 55:1 65:1 69:1 75:1 80:1 85:1 123:2 142:1 188:4 210:2 214:1 216:2 219:1 232:1 237:2 266:1 269:2 273:2 283:3 302:1 323:3 339:4 352:1 358:1 359:1 372:7 383:1 384:1 389:1 394:1 395:1 410:1 448:1 449:3 454:1 462:1 464:1 466:1 469:2 477:1 490:1 501:1 538:1 548:2 552:1 559:1 570:1 572:1 595:3 599:1 600:4 603:3 607:1 618:1 628:4 632:1 643:1 646:2 656:4 664:1 683:1 694:2 704:7 715:1 716:1 735:1 748:3 756:2 767:3 768:1 781:1 782:1 790:1 795:1 802:1 846:1 866:1 881:1 888:4 890:3 897:1 898:2 909:1 921:1 923:2 924:3 926:1 937:2 949:1 950:2 960:2 964:1 970:1 973:2 980:1 992:1 1011:1 1014:4 1050:2 1082:1 1130:1 1132:3 1135:2 1148:1 1152:1 1167:1 1181:1 1202:1 1210:1 1228:1 1248:4 1270:2 1272:2 1279:2 1280:2 1281:1 1283:2 1295:1 1316:3 1332:1 1342:1 1343:1 1351:2 1353:1 1371:2 1424:1 1434:1 1437:1 1444:2 1447:1 1453:2 1454:2 1461:1 1465:1 1487:2 1500:3 1501:1 1506:1 1518:1 1520:1 1522:1 1554:1 1556:2 1558:1 1562:1 1582:1 1595:3 1604:1 1615:2 1619:1 1633:4 1634:1 1636:1 1637:3 1647:4 1648:1 1662:1 1664:1 1689:1 1706:2 1708:2 1720:2 1723:1 1731:1 1749:1 1751:1 1752:1 1785:1 1789:3 1824:1 1831:1 1842:4 1866:2 1885:1 1960:1 1963:1 1966:1 1979:2 1981:2 1985:1 1991:1 1993:4 2014:2 2043:2 2047:1 2061:1 2073:1 2079:1 2085:2 2091:1 2093:2 2117:1 2131:2 2133:3 2137:1 2140:16 2143:2 2144:1 2147:1 2152:1 2169:1 2183:1 2187:1 2192:1 2212:1 2217:1 2225:1 2242:2 2253:2 2254:1 2263:1 2273:1 2290:1 2300:3 2303:1 2310:1 2312:6 2314:1 2315:1 2318:1 2319:7 2321:1 2322:1 2324:1 2326:2 2328:1 2329:4 2336:4 2342:4 2344:2 2346:1 2361:2 2362:1 2363:1 2365:1 2369:1 2371:1 2374:1 2375:3 2377:2 2381:2 2382:1 2388:1 2393:3 2396:2 2397:4 2403:2 2407:1 2410:2 2412:1 2414:3 2416:1 2423:3 2432:23 2442:1 2446:1 2450:3 2456:1 2506:4 2517:1 2521:1 2528:1 2541:1 2543:1 2545:1 2547:1 2555:1 2557:4 2565:1 2580:1 2608:1 2616:1 2619:1 2621:2 2645:1 2649:1 2653:1 2662:1 2687:2 2699:5 2701:1 2717:1 2718:1 2720:2 2728:3 2737:1 2754:2 2769:1 2771:1 2781:1 2793:2 2820:2 2827:3 2828:1 2836:1 2840:1 2847:1 2850:2 2873:1 2880:1 2883:3 2884:1 2889:1 2895:1 2896:1 2925:1 2931:1 2949:1 2952:6 2956:1 2964:2 2974:1 2975:1 2988:1 3040:1 3050:2 3059:1 3063:11 3066:3 3068:1 3088:1 3107:3 3116:1 3119:20 3126:1 3127:2 3129:1 3133:1 3143:2 3148:3 3156:1 3164:3 3182:1 3184:2 3218:1 3221:1 3226:1 3230:2 3317:2 3329:1 3330:6 3388:4 3401:1 3439:1 3442:1 3447:1 3448:3 3467:1 3479:1 3489:1 3490:1 3494:3 3495:1 3500:1 3525:1 3528:3 3532:1 3537:2 3545:1 3563:4 3573:1 3581:1 3588:1 3595:1 3600:1 3619:1 3661:1 3719:1 3728:1 3732:1 3736:4 3751:1 3791:1 3798:1 3808:1 3820:3 3825:1 3828:1 3838:1 3860:1 3861:1 3872:1 3900:1 3928:2 3948:1 3949:2 3952:3 3973:2 3982:1 3997:1 4010:1 4019:1 4020:3 4025:2 4056:1 4058:2 4061:1 4063:1 4064:7 4065:5 4066:1 4077:1 4078:1 4086:2 4089:2 4096:1 4115:4 4116:1 4123:1 4128:1 4129:2 4133:5 4166:1 4167:1 4173:1 4176:1 4181:1 4185:3 4186:1 4197:1 4202:1 4223:1 4232:1 4242:1 4248:1 4255:2 4260:1 4281:2 4289:1 4301:1 4307:2 4313:2 4328:2 4348:1 4354:2 4371:1 4376:1 4390:1 4398:1 4410:1 4419:3 4422:3 4431:4 4437:1 4456:1 4467:2 4492:1 4496:1 4505:1 4526:1 4531:1 4540:2 4549:1 4560:1 4600:1 4609:2 4631:2 4634:1 4661:1 4663:1 4668:1 4677:4 4709:1 4711:1 4712:1 4715:1 4717:2 4754:2 4757:1 4779:1 4789:5 4793:1 4798:1 4803:1 4822:1 4848:1 4851:2 4868:1 4890:1 4917:1 4920:1 4921:2 4922:3 4928:3 4933:1 4946:3 4968:1 4969:3 4983:1 4992:1 5002:1 5009:1 5012:5 5024:7 5031:1 5039:1 5041:1 5046:1 5080:1 5082:1 5098:3 5104:1 5108:2 5116:2 5119:1 5121:1 5136:1 5154:1 5155:1 5204:1 5212:2 5226:1 5229:1 5245:1 5249:1 5268:3 5272:1 5282:1 5300:1 5310:17 5314:2 5315:1 5325:1 5335:1 5365:1 5370:1 5380:1 5423:1 5440:1 5441:1 5444:1 5455:1 5474:2 5478:1 5481:1 5526:2 5531:1 5532:1 5545:1 5546:1 5562:1 5567:1 5571:1 5575:1 5581:3 5582:1 5622:1 5648:2 5651:4 5683:1 5699:1 5703:1 5719:3 5743:1 5746:3 5759:2 5764:1 5779:1 5783:1 5785:1 5790:2 5795:1 5799:1 5800:1 5811:1 5817:1 5831:1 5854:1 5859:9 5882:1 5887:1 5894:1 5900:1 5912:1 5919:1 5921:2 5925:5 5942:2 5975:1 5992:1 6000:1 6006:1 6008:1 6014:1 6020:2 6027:1 6029:1 6049:2 6053:2 6057:1 6087:1 6090:1 6110:2 6127:1 6128:1 6195:2 6227:2 6229:1 6232:4 6242:1 6262:1 6266:1 6294:1 6297:1 6334:1 6340:1 6341:4 6363:2 6378:2 6397:1 6402:1 6409:1 6416:1 6442:2 6444:3 6445:2 6471:1 6472:1 6473:1 6480:1 6492:1 6497:1 6500:1 6555:2 6557:1 6571:1 6575:1 6590:2 6603:4 6612:1 6613:9 6630:3 6645:1 6654:1 6672:2 6696:1 6698:3 6699:1 6721:1 6763:7 6815:7 6826:2 6827:2 6828:1 6829:1 6832:7 6835:1 6840:1 6842:1 6849:1 6851:1 6869:1 6875:1 6883:1 6894:4 6916:3 6917:1 6923:1 6926:1 6931:1 6932:2 6935:1 6938:1 6939:1 6941:1 6942:2 6945:1 6969:1 6971:1 7005:1 7065:1 7071:1 7081:1 7084:3 7090:2 7093:3 7113:9 7118:1 7127:1 7128:1 7129:1 7169:1 7180:1 7197:2 7210:1 7230:1 7234:1 7239:9 7240:1 7268:1 7276:1 7280:1 7296:1 7302:12 7303:1 7319:2 7333:1 7345:1 7369:1 7380:2 7388:1 7401:1 7419:1 7421:2 7428:3 7429:2 7434:3 7439:1 7460:1 7463:1 7468:1 7516:1 7529:2 7532:1 7550:2 7560:2 7561:1 7575:1 7576:1 7584:1 7593:1 7643:2 7651:1 7658:1 7694:1 7706:1 7750:6 7751:1 7762:1 7763:1 7764:2 7779:1 7781:1 7814:2 7818:1 7823:1 7870:2 7901:2 7906:3 7936:1 7944:1 7945:5 7950:1 7969:1 7971:1 7978:3 7979:1 7996:1 8006:1 8030:2 8033:2 8055:1 8058:16 8068:3 8087:1 8088:2 8104:1 8105:1 8126:1 8130:2 8175:2 8179:1 8185:1 8238:1 8241:4 8258:2 8289:2 8294:1 8307:4 8309:1 8327:1 8328:1 8329:4 8332:2 8333:5 8341:1 8351:4 8352:2 8359:6 8360:2 8362:1 8364:1 8366:1 8372:1 8377:1 8378:1 8386:24 8389:1 8410:21 8413:1 8419:1 8438:1 8441:1 8452:1 8460:1 8483:1 8513:1 8517:2 8540:1 8544:1 8546:1 8560:1 8569:1 8592:3 8595:3 8623:1 8624:1 8648:1 8682:1 8705:3 8710:3 8712:1 8761:1 8766:3 8781:1 8819:2 8823:1 8829:1 8839:1 8841:1 8868:1 8878:1 8879:1 8883:1 8889:2 8921:16 8950:3 8964:1 8976:16 8982:7 8983:1 8984:2 8985:1 8986:2 9007:1 9016:2 9020:1 9021:3 9059:1 9073:1 9079:1 9100:1 9117:1 9120:1 9134:1 9138:4 9178:1 9182:1 9183:16 9191:2 9208:1 9220:9 9223:1 9229:3 9235:1 9250:1 9283:2 9285:2 9286:1 9290:2 9296:1 9297:1 9299:1 9300:1 9301:2 9302:1 9303:1 9304:1 9312:1 9315:1 9317:2 9332:1 9354:1 9355:1 9380:2 9381:6 9390:1 9395:3 9402:1 9403:1 9406:1 9416:1 9417:1 9451:2 9476:1 9490:1 9491:2 9508:1 9514:2 9520:1 9561:1 9570:3 9571:1 9593:1 9597:2 9610:1 9648:1 9652:2 9658:3 9675:1 9685:2 9701:1 9713:2 9715:1 9724:1 9725:2 9734:3 9740:1 9743:2 9781:1 9785:1 9789:1 9792:1 9799:1 9801:1 9812:1 9815:2 9831:1 9844:2 9848:1 9850:1 9856:1 9859:1 9893:1 9907:1 9910:2 9911:1 9920:1 9932:2 9934:1 9957:2 9961:1 9979:1 9985:1 10048:2 10062:1 10086:1 10095:1 10116:3 10135:1 10162:1 10178:1 10185:1 10206:1 10211:1 10214:1 10251:4 10255:1 10257:1 10273:1 10283:2 10307:1 10342:1 10351:1 10372:3 10374:1 10377:6 10381:32 10383:1 10385:4 10387:1 10392:2 10399:2 10402:1 10406:1 10416:5 10420:1 10423:1 10430:4 10434:2 10450:4 10491:1 10492:3 10503:1 10508:1 10510:2 10516:2 10532:1 10535:1 10539:1 10545:1 10552:1 10569:1 10608:1 10621:2 10622:1 10649:1 10654:1 10655:1 10659:2 10678:4 10705:1 10716:1 10751:1 10757:2 10759:1 10773:1 10776:1 10777:3 10784:1 10793:3 10800:3 10808:1 10822:1 10828:3 10830:1 10836:1 10857:3 10860:23 10886:1 10922:2 10951:4 10971:1 10988:1 10989:1 11034:1 11094:1 11113:1 11114:2 11126:1 11130:2 11139:1 11141:1 11146:1 11178:1 11183:3 11185:1 11189:1 11203:1 11209:1 11221:1 11250:1 11257:1 11274:1 11277:1 11289:1 11290:1 11295:2 11304:2 11306:1 11313:5 11323:1 11362:2 11382:1 11383:1 11388:1 11404:3 11408:3 11451:1 11453:2 11467:16 11473:1 11484:1 11486:1 11489:1 11498:1 11503:1 11514:1 11515:5 11520:1 11530:1 11553:1 11557:2 11574:4 11585:1 11591:2 11598:1 11608:2 11634:1 11654:1 11655:1 11661:2 11663:1 11693:1 11703:1 11706:1 11710:9 11714:1 11728:1 11730:1 11742:2 11761:1 11766:1 11785:1 11789:1 11798:1 11820:1 11840:3 11854:1 11860:4 11863:3 11864:1 11866:1 11879:1 11883:1 11886:3 11887:1 11888:2 11893:2 11896:1 11900:1 11910:1 11929:1 11943:1 12001:1 12004:1 12013:1 12025:1 12026:1 12027:1 12042:4 12045:1 12048:1 12071:1 12072:1 12088:1 12094:1 12097:1 12098:1 12123:1 12135:1 12145:1 12167:1 12174:2 12186:1 12188:1 12191:1 12200:1 12213:1 12214:2 12220:2 12225:1 12227:1 12228:1 12235:1 12239:1 12258:1 12260:1 12266:1 12289:1 12292:1 12296:1 12319:1 12327:1 12334:1 12351:1 12373:1 12399:1 12419:1 12420:3 12424:1 12425:1 12427:1 12452:1 12463:1 12473:1 12475:1 12476:1 12489:1 12505:1 12530:1 12531:1 12536:3 12543:1 12551:4 12564:2 12571:1 12574:2 12576:1 12583:1 12595:2 12630:2 12646:4 12648:1 12653:1 12659:1 12660:1 12665:2 12677:6 12680:2 12686:3 12704:1 12706:6 12716:2 12730:1 12735:1 12739:3 12745:1 12760:1 12774:2 12778:1 12787:1 12810:3 12838:1 12884:1 12890:1 12924:1 12926:1 12970:1 12974:1 12983:2 13000:1 13027:1 13034:1 13053:1 13055:2 13061:1 13062:1 13081:4 13086:1 13091:1 13098:1 13105:2 13139:1 13142:1 13166:1 13188:1 13191:1 13209:2 13226:2 13230:1 13232:2 13270:1 13276:1 13301:1 13319:1 13329:1 13337:2 13351:8 13363:1 13364:1 13369:1 13387:2 13392:2 13401:1 13405:1 13416:1 13457:1 13478:1 13506:1 13537:1 13544:2 13545:2 13550:1 13595:1 13604:2 13616:1 13637:1 13640:2 13644:1 13674:2 13698:1 13703:1 13705:1 13736:11 13750:1 13754:1 13762:11 13792:1 13794:1 13797:1 13825:3 13834:1 13835:1 13845:1 13855:1 13858:1 13861:1 13924:1 13936:4 13937:1 13940:1 13941:2 13987:1 13989:1 13990:2 13993:1 14001:12 14042:1 14052:1 14061:8 14082:1 14086:1 14095:1 14103:1 14157:1 14204:1 14218:1 14232:1 14236:1 14250:2 14255:3 14257:1 14274:2 14293:1 14295:1 14301:4 14311:2 14313:1 14314:1 14324:1 14325:1 14326:1 14328:2 14330:1 14355:1 14393:1 14395:1 14404:1 14411:1 14417:1 14426:3 14450:2 14460:1 14467:2 14474:1 14482:2 14483:1 14493:1 14514:1 14517:1 14520:1 14523:1 14524:1 14526:1 14544:1 14545:1 14549:1 14552:2 14557:5 14563:1 14582:1 14584:1 14626:1 14638:1 14661:1 14662:5 14670:1 14677:4 14713:1 14717:2 14720:1 14727:1 14736:1 14744:4 14749:1 14752:2 14757:1 14760:1 14799:1 14804:4 14813:1 14828:1 14837:1 14847:2 14859:2 14883:1 14890:1 14913:1 14914:1 14915:7 14936:2 14946:1 14965:1 14972:2 14975:2 14987:1 14990:1 15026:3 15035:2 15059:1 15072:1 15078:1 15114:4 15144:4 15154:2 15195:1 15210:3 15213:2 15219:1 15233:2 15252:2 15256:1 15273:1 15274:1 15287:1 15338:1 15344:1 15375:1 15400:1 15401:1 15418:1 15433:1 15438:9 15448:1 15455:1 15503:1 15510:1 15512:1 15528:1 15530:3 15535:2 15541:1 15545:1 15551:5 15553:1 15558:1 15585:2 15604:23 15606:2 15608:1 15659:4 15660:1 15663:1 15710:5 15715:1 15737:2 15744:1 15763:1 15764:1 15791:1 15816:1 15822:1 15828:1 15843:1 15852:1 15871:1 15879:1 15905:1 15925:1 15934:1 15951:1 15975:1 15977:1 15980:1 15992:2 15994:1 15997:1 15999:1 16004:1 16006:3 16011:1 16019:2 16026:3 16046:1 16064:3 16090:1 16100:1 16121:1 16130:1 16132:1 16153:1 16156:1 16158:2 16161:1 16162:1 16165:1 16169:1 16175:1 16195:1 16196:3 16199:2 16201:4 16222:1 16224:1 16227:3 16236:1 16255:1 16256:6 16259:2 16274:1 16288:1 16318:1 16330:1 16332:1 16335:1 16351:1 16359:1 16364:1 16375:12 16446:1 16450:1 16451:1 16460:1 16461:1 16469:4 16481:1 16491:1 16506:1 16524:1 16539:4 16559:1 16589:3 16594:3 16612:1 16639:1 16642:1 16645:1 16663:1 16699:5 16702:2 16709:6 16712:1 16722:2 16730:1 16732:1 16749:1 16750:1 16763:1 16766:1 16772:1 16780:3 16804:16 16806:2 16817:1 16824:1 16825:1 16838:2 16869:1 16875:1 16890:1 16913:7 16919:1 16952:1 16958:1 16963:2 16968:1 16972:1 16974:1 16981:1 16982:1 16995:1 17004:1 17038:2 17045:1 17052:1 17058:3 17070:1 17074:1 17075:1 17098:3 17107:1 17127:1 17145:1 17161:1 17163:4 17164:4 17196:1 17200:2 17202:1 17204:2 17214:1 17223:1 17227:2 17236:1 17240:1 17248:1 17256:1 17267:2 17290:1 17291:1 17295:1 17302:2 17323:1 17326:1 17338:1 17345:2 17361:2 17373:1 17394:1 17413:3 17428:1 17432:1 17461:7 17482:1 17488:1 17490:3 17495:1 17505:1 17509:1 17513:1 17514:4 17521:3 17522:1 17556:2 17559:1 17561:1 17564:1 17572:1 17574:2 17584:1 17588:1 17590:2 17591:1 17594:2 17599:1 17603:1 17604:2 17610:2 17613:1 17615:1 17658:1 17671:1 17678:2 17679:1 17680:1 17700:1 17717:1 17718:1 17734:1 17792:5 17797:1 17802:1 17828:1 17834:1 17835:2 17836:1 17848:2 17867:1 17882:1 17932:1 17933:1 17944:1 17958:1 17991:2 18019:1 18028:1 18045:1 18046:1 18068:1 18076:1 18108:3 18110:2 18114:2 18119:1 18120:6 18143:1 18167:1 18173:1 18174:10 18218:1 18223:1 18247:1 18260:1 18286:3 18296:1 18334:1 18344:1 18366:1 18369:1 18373:2 18374:1 18383:1 18389:1 18414:1 18415:1 18421:1 18424:3 18425:2 18427:3 18435:16 18438:6 18452:6 18457:2 18465:1 18472:2 18479:4 18482:1 18488:2 18489:1 18515:1 18540:1 18579:1 18615:3 18616:1 18632:1 18635:1 18639:2 18643:1 18648:2 18651:1 18661:1 18662:1 18682:1 18713:1 18728:2 18734:1 18743:1 18746:4 18752:3 18759:1 18783:2 18789:3 18793:1 18797:1 18809:1 18817:1 18823:1 18833:1 18841:1 18879:1 18882:2 18885:1 18910:1 18911:1 18918:1 18928:1 18934:2 18951:2 18964:2 18974:5 18984:2 18988:3 19003:1 19004:1 19008:1 19013:1 19019:1 19021:3 19026:1 19030:1 19035:1 19036:1 19054:3 19057:3 19065:1 19066:1 19072:2 19077:4 19087:1 19113:2 19114:1 19118:4 19124:1 19130:1 19132:2 19138:1 19155:1 19176:1 19182:1 19217:1 19226:1 19234:1 19242:1 19256:1 19266:2 19284:3 19287:1 19288:1 19291:1 19297:2 19341:1 19352:1 19372:1 19387:1 19390:1 19399:1 19401:3 19414:1 19418:2 19428:1 19443:1 19446:5 19450:1 19460:1 19472:3 19504:6 19509:1 19511:7 19516:5 19521:1 19522:1 19523:1 19537:1 19557:1 19558:4 19571:4 19589:1 19636:1 19648:1 19664:1 19670:1 19671:3 19676:1 19677:1 19679:1 19706:1 19757:2 19783:1 19802:7 19812:1 19829:1 19831:1 19847:1 19875:1 19879:1 19880:1 19883:1 19906:1 19908:6 19916:1 19925:1 19959:4 19980:23 20029:1 20034:2 20070:2 20083:2 20110:1 20129:5 20131:1 20174:2 20179:1 20258:1 20264:1 20268:23 20271:1 20272:1 20293:2 20304:1 20309:1 20326:1 20328:3219 20336:1 20365:1 20372:1 20378:3 20407:1 20411:1 20434:1 20439:1 20448:1 20468:1 20471:2 20497:4 20499:1 20503:1 20521:1 20526:1 20529:1 20530:1 20531:1 20551:1 20557:2 20565:5 20569:1 20576:1 20578:5 20582:1 20584:1 20585:2 20596:2 20603:2 20611:1 20647:1 20662:1 20665:1 20669:3 20741:1 20743:1 20781:1 20784:1 20796:1 20802:1 20806:1 20820:1 20825:1 20828:1 20856:1 20877:1 20915:1 20977:6 20985:1 21000:1 21007:1 21019:1 21021:8 21023:4 21027:1 21044:1 21049:1 21050:3 21072:1 21079:3 21092:1 21095:1 21097:2 21101:1 21117:1 21132:1 21140:1 21145:1 21146:2 21147:1 21156:3 21158:1 21160:7 21192:2 21216:1 21226:1 21237:4 21262:6 21276:1 21279:1 21291:1 21298:12 21299:2 21308:1 21309:1 21320:1 21326:2 21350:1 21359:1 21361:1 21378:22 21391:1 21398:4 21399:1 21417:1 21425:4 21436:2 21442:2 21446:1 21464:1 21476:2 21486:1 21511:2 21523:3 21524:3 21542:1 21547:1 21551:5 21573:1 21580:1 21590:2 21597:5 21598:2 21603:1 21617:1 21630:1 21635:2 21646:1 21652:2 21666:1 21667:1 21676:1 21747:1 21753:1 21755:4 21761:1 21777:2 21798:2 21832:1 21862:1 21863:1 21868:1 21871:1 21875:3 21879:1 21888:1 21894:1 21905:1 21926:2 21936:1 21971:2 21972:1 21978:1 21993:1 21996:1 22001:1 22010:1 22021:1 22036:1 22045:11 22062:1 22064:1 22066:2 22068:1 22084:9 22116:1 22117:1 22122:1 22149:1 22159:1 22235:2 22240:1 22272:2 22284:1 22287:1 22288:2 22299:1 22307:1 22316:1 22325:4 22337:1 22339:3 22345:7 22367:1 22381:2 22387:1 22403:1 22411:1 22446:2 22450:4 22456:2 22462:1 22476:1 22482:4 22507:1 22512:1 22513:1 22533:2 22538:1 22548:1 22577:1 22585:1 22589:1 22604:1 22617:2 22622:1 22630:1 22635:2 22636:1 22643:2 22655:7 22657:1 22661:1 22674:11 22675:1 22703:1 22704:1 22716:1 22724:1 22736:1 22747:1 22784:1 22786:1 22810:1 22812:1 22815:5 22818:1 22819:1 22827:2 22829:1 22838:1 22854:1 22868:1 22870:2 22873:1 22876:2 22881:1 22902:1 22904:2 22915:1 22939:1 22957:1 22987:1 22988:2 22991:1 22992:1 23010:1 23019:1 23026:1 23034:2 23037:2 23058:1 23060:1 23078:1 23084:4 23112:1 23116:1 23129:1 23147:1 23168:2 23169:1 23178:1 23201:1 23233:1 23242:1 23245:1 23248:1 23256:1 23257:1 23261:2 23276:3 23280:1 23303:1 23307:1 23317:1 23322:1 23325:2 23331:1 23346:2 23349:1 23361:1 23363:3 23368:1 23377:1 23380:1 23382:1 23392:1 23399:1 23404:1 23422:1 23455:1 23458:2 23462:3 23476:2 23478:1 23496:1 23511:2 23513:1 23519:3 23535:2 23543:2 23554:1 23556:1 23564:2 23566:1 23571:1 23572:4 23573:2 23583:1 23590:4 23596:1 23615:1 23616:1 23657:1 23662:1 23708:1 23723:2 23737:1 23744:1 23745:1 23763:1 23803:1 23811:2 23826:2 23836:1 23863:7 23870:1 23871:1 23874:1 23878:1 23880:1 23893:2 23899:1 23912:1 23921:9 23941:1 23953:1 23954:1 23958:1 23965:1 23973:1 23979:1 23981:1 23988:1 24008:1 24009:2 24023:1 24026:2 24032:1 24038:1 24039:4 24055:1 24057:1 24063:1 24078:1 24101:1 24115:2 24119:1 24144:1 24148:1 24153:1 24159:1 24163:2 24164:2 24172:1 24174:1 24181:4 24183:3 24187:1 24190:1 24198:1 24225:1 24232:3 24233:2 24236:1 24254:1 24263:2 24272:1 24273:2 24275:1 24276:3 24279:1 24283:1 24285:2 24301:1 24307:1 24311:3 24316:2 24319:1 24322:1 24327:1 24332:2 24358:1 24360:1 24372:2 24382:1 24383:3 24386:3 24400:1 24402:2 24407:2 24436:1 24438:1 24450:2 24455:2 24475:1 24476:1 24486:1 24487:1 24494:1 24495:3 24518:1 24534:1 24537:1 24554:1 24568:2 24572:1 24573:1 24583:1 24586:4 24590:5 24597:1 24603:1 24613:2 24618:1 24620:2 24621:1 24627:1 24633:1 24635:1 24651:1 24657:1 24663:1 24669:1 24676:2 24680:1 24693:1 24701:5 24708:1 24716:1 24719:1 24727:2 24735:1 24737:1 24770:1 24772:1 24773:2 24777:2 24782:1 24786:3 24787:1 24795:2 24805:1 24808:1 24820:1 24839:1 24862:2 24863:1 24876:1 24935:1 24945:1 24976:1 24981:1 24988:1 25019:2 25032:1 25033:1 25044:1 25047:1 25056:13 25061:1 25071:1 25091:6 25097:1 25105:1 25115:6 25123:1 25142:1 25148:3 25174:1 25191:3 25192:1 25193:1 25200:1 25202:1 25214:1 25215:1 25217:1 25246:1 25253:1 25266:1 25267:1 25268:1 25271:1 25272:1 25275:1 25280:3 25301:1 25302:1 25308:1 25314:1 25323:2 25330:1 25332:8 25340:1 25352:4 25353:1 25361:1 25364:2 25376:1 25391:1 25392:1 25398:2 25410:1 25413:1 25421:5 25435:1 25442:1 25450:1 25470:1 25472:2 25476:1 25490:1 25520:2 25525:2 25545:1 25546:1 25556:1 25572:1 25577:1 25593:1 25619:1 25630:3 25655:1 25674:7 25689:1 25694:1 25704:1 25709:3 25734:1 25736:1 25749:1 25766:2 25772:1 25781:1 25788:1 25793:1 25798:4 25799:1 25802:2 25803:1 25808:1 25835:1 25844:2 25891:1 25896:1 25907:1 25919:2 25924:1 25927:1 25928:1 25937:1 25940:1 25961:1 25970:1 25995:1 26000:1 26008:1 26011:1 26012:1 26014:1 26017:1 26058:1 26065:1 26066:1 26089:1 26092:1 26094:1 26103:1 26107:1 26123:1 26125:3 26128:1 26133:1 26135:2 26136:1 26139:2 26143:1 26147:2 26154:1 26155:1 26158:1 26164:3 26169:1 26178:3 26192:1 26193:1 26208:2 26213:2 26225:1 26235:2 26248:5 26258:1 26262:1 26263:1 26268:3 26271:1 26273:1 26276:1 26280:1 26281:1 26282:1 26288:2 26293:1 26305:5 26315:1 26339:3 26355:1 26364:1 26385:1 26388:1 26389:3 26404:1 26419:1 26420:1 26428:1 26435:1 26438:1 26444:2 26447:1 26466:1 26491:2 26552:1 26553:1 26560:1 26563:2 26569:1 26589:1 26592:1 26594:1 26595:1 26604:1 26607:1 26608:2 26611:4 26618:1 26622:1 26630:1 26631:1 26632:1 26642:1 26653:4 26660:1 26690:1 26692:1 26694:1 26696:1 26716:1 26727:1 26744:1 26746:1 26749:1 26755:1 26757:1 26762:2 26769:1 26781:8 26809:3 26819:1 26821:2 26863:1 26894:1 26901:2 26902:1 26904:2 26915:1 26916:2 26929:1 26931:1 26943:1 26950:1 27033:1 27034:1 27037:2 27039:1 27046:1 27052:2 27075:3 27088:3 27093:2 27095:1 27097:1 27104:2 27113:1 27125:1 27138:1 27145:1 27163:1 27164:1 27177:1 27202:1 27207:1 27209:4 27210:1 27216:1 27230:2 27232:1 27247:1 27253:1 27264:1 27273:1 27297:3 27302:2 27308:2 27315:1 27326:2 27338:1 27352:3 27362:2 27375:1 27382:1 27390:1 27400:1 27402:1 27416:1 27418:1 27422:1 27426:11 27427:1 27429:1 27438:1 27441:1 27466:2 27468:1 27472:2 27488:1 27495:1 27515:2 27546:1 27559:1 27574:1 27575:2 27582:2 27583:1 27588:2 27604:5 27605:1 27606:2 27614:1 27620:2 27639:1 27662:10 27667:3 27685:2 27690:2 27693:2 27718:2 27726:1 27737:5 27761:3 27768:1 27785:1 27788:1 27792:1 27799:1 27817:5 27822:1 27839:2 27851:7 27892:1 27906:1 27945:3 27950:1 27969:1 27979:1 27995:2 28000:1 28005:1 28025:1 28040:1 28046:1 28056:1 28066:1 28072:2 28074:1 28084:2 28094:1 28122:2 28128:1 28139:1 28149:1 28159:1 28160:1 28189:1 28193:1 28197:1 28204:3 28207:1 28217:2 28256:1 28259:2 28262:2 28266:1 28275:2 28301:1 28307:1 28400:1 28403:1 28406:1 28419:1 28428:3 28459:1 28474:1 28488:1 28499:1 28502:1 28504:1 28505:1 28527:3 28540:9 28555:1 28561:2 28575:1 28621:1 28630:1 28642:1 28644:1 28645:1 28658:2 28715:1 28716:1 28723:2 28728:3 28744:1 28754:2 28755:7 28764:1 28765:1 28778:9 28783:2 28792:1 28800:1 28809:1 28823:1 28843:2 28856:1 28858:9 28868:1 28876:1 28877:3 28883:1 28900:1 28911:1 28916:1 28929:1 28933:23 28947:1 28960:1 28961:1 28977:1 28984:2 29024:1 29034:2 29039:1 29052:2 29063:1 29071:1 29075:1 29078:1 29090:1 29091:1 29105:1 29113:1 29126:1 29146:1 29154:1 29161:1 29182:1 29193:1 29207:1 29221:3 29231:1 29239:5 29240:1 29268:1 29272:3 29292:1 29314:1 29339:2 29348:1 29349:2 29357:1 29387:2 29396:2 29404:2 29413:1 29422:1 29424:2 29429:1 29430:2 29431:3 29444:1 29457:5 29465:1 29471:7 29490:1 29495:2 29519:1 29535:1 29537:1 29543:2 29546:1 29551:1 29557:3 29560:1 29581:1 29602:1 29627:1 29650:1 29652:2 29654:1 29664:1 29675:1 29684:1 29701:1 29708:1 29721:1 29727:1 29730:1 29742:1 29748:1 29749:1 29759:1 29761:2 29762:1 29763:1 29764:1 29770:1 29775:1 29795:3 29798:1 29810:1 29816:9 29855:1 29865:1 29866:2 29890:1 29901:1 29902:1 29930:1 29931:1 29932:1 29935:3 29977:1 29988:1 29990:1 29998:1 30003:1 30013:1 30036:1 30047:1 30056:2 30084:3 30088:1 30113:3 30123:1 30137:16 30138:1 30144:1 30145:1 30157:1 30162:3 30173:3 30180:2 30183:1 30184:2 30186:1 30187:1 30225:3 30226:1 30239:7 30241:11 30253:1 30263:1 30264:2 30277:2 30279:1 30280:1 30284:1 30294:2 30312:1 30330:3 30334:1 30335:2 30339:7 30352:1 30362:1 30384:1 30385:1 30394:1 30396:6 30438:1 30447:2 30449:2 30459:1 30462:4 30466:1 30468:1 30508:1 30522:1 30538:1 30541:1 30549:1 30551:1 30561:2 30573:1 30580:1 30586:1 30592:1 30607:1 30621:3 30637:1 30646:1 30653:1 30654:1 30678:1 30679:1 30680:2 30682:2 30686:2 30716:2 30725:2 30760:3 30787:1 30795:2 30815:4 30823:2 30824:1 30854:3 30868:1 30871:1 30872:1 30897:2 30898:1 30901:1 30902:1 30903:1 30906:1 30911:1 30927:1 30950:2 30952:1 30962:1 30998:1 31028:1 31032:1 31034:1 31037:2 31051:1 31060:1 31076:1 31089:4 31095:1 31098:4 31105:2 31115:1 31128:1 31138:1 31156:1 31168:1 31184:2 31210:1 31215:1 31233:4 31258:1 31281:1 31308:1 31312:1 31316:1 31331:1 31341:1 31342:3 31353:1 31355:3 31359:1 31377:1 31378:1 31383:1 31390:1 31407:3 31421:1 31427:2 31432:1 31446:1 31447:2 31462:1 31478:2 31481:1 31489:5 31494:1 31495:1 31497:1 31505:7 31507:1 31508:1 31510:1 31514:1 31542:1 31548:1 31550:1 31559:1 31567:1 31615:2 18 6:1 8:1 13:1 14:1 18:2 21:1 34:1 37:1 55:1 65:1 69:1 75:1 80:1 85:1 123:2 142:1 188:4 210:2 214:1 216:2 219:1 232:1 237:2 266:1 269:2 273:2 283:3 302:1 323:3 339:4 352:1 358:1 359:1 372:7 383:1 384:1 389:1 394:1 395:1 410:1 448:1 449:3 454:1 462:1 464:1 466:1 469:2 477:1 490:1 501:1 538:1 548:2 552:1 559:1 570:1 572:1 595:3 599:1 600:4 603:3 607:1 618:1 628:4 632:1 643:1 646:2 656:4 664:1 683:1 694:2 704:7 715:1 716:1 735:1 748:3 756:2 759:1 767:3 768:1 781:1 782:1 790:1 795:1 802:1 846:1 866:1 881:1 888:4 890:3 897:1 898:2 909:1 921:1 923:2 924:3 926:2 937:2 949:1 950:2 960:2 964:1 970:1 973:2 980:1 992:1 1011:1 1014:4 1050:2 1082:1 1130:1 1132:3 1135:2 1148:1 1152:1 1167:1 1181:1 1202:1 1210:1 1228:1 1248:4 1270:2 1272:2 1279:2 1280:2 1281:1 1283:2 1295:1 1316:3 1332:1 1342:1 1343:1 1351:2 1353:1 1371:2 1424:1 1434:1 1437:1 1444:2 1447:1 1453:2 1454:2 1461:1 1465:1 1470:1 1487:2 1500:3 1501:1 1506:1 1518:1 1520:1 1522:1 1554:1 1556:2 1558:1 1562:1 1564:1 1582:1 1595:3 1604:1 1615:2 1619:1 1633:4 1634:1 1636:1 1637:3 1647:4 1648:1 1662:1 1664:1 1689:1 1706:2 1708:2 1720:2 1723:1 1731:1 1749:1 1751:2 1752:1 1785:1 1789:3 1824:1 1831:1 1842:4 1849:1 1866:2 1885:1 1960:1 1963:1 1966:1 1979:2 1981:2 1985:1 1990:1 1991:1 1993:4 2014:2 2043:2 2047:1 2061:1 2073:1 2079:1 2085:2 2091:1 2093:2 2117:1 2131:2 2133:3 2137:1 2140:16 2143:2 2144:1 2147:1 2152:1 2169:1 2183:1 2187:1 2192:1 2212:1 2217:2 2225:1 2242:2 2253:2 2254:1 2263:1 2273:1 2290:1 2300:3 2303:1 2310:1 2312:6 2314:1 2315:1 2318:1 2319:7 2321:1 2322:1 2324:1 2326:2 2328:1 2329:5 2336:4 2342:4 2344:2 2346:1 2361:2 2362:1 2363:1 2365:1 2369:1 2371:1 2374:1 2375:3 2377:2 2381:2 2382:1 2388:1 2393:3 2396:2 2397:4 2403:2 2407:1 2410:2 2412:1 2414:3 2416:1 2423:3 2432:24 2442:1 2446:1 2450:3 2456:1 2506:4 2517:1 2521:1 2528:1 2541:1 2543:1 2545:1 2547:1 2555:1 2557:4 2565:1 2580:1 2608:1 2616:1 2619:1 2621:2 2645:1 2649:1 2653:1 2662:1 2687:2 2699:6 2701:1 2717:1 2718:1 2720:2 2728:3 2737:1 2754:2 2769:1 2771:1 2781:1 2793:3 2820:2 2827:3 2828:1 2836:1 2840:1 2847:1 2850:2 2873:1 2880:1 2883:3 2884:1 2889:1 2895:1 2896:1 2913:1 2925:1 2931:1 2949:1 2952:6 2956:1 2964:2 2974:1 2975:1 2988:2 3015:1 3040:1 3050:2 3059:1 3063:11 3066:3 3068:1 3088:1 3107:3 3116:1 3119:20 3126:1 3127:3 3129:1 3133:1 3143:2 3148:3 3156:1 3164:3 3182:1 3184:3 3218:1 3221:1 3226:1 3230:2 3317:2 3329:1 3330:6 3388:4 3401:1 3439:1 3442:1 3447:2 3448:3 3467:1 3479:1 3489:1 3490:1 3494:3 3495:1 3500:2 3525:1 3528:3 3532:1 3537:2 3545:1 3563:4 3573:1 3581:1 3588:1 3595:1 3600:1 3619:1 3661:1 3719:1 3728:1 3732:1 3736:4 3751:1 3791:1 3798:1 3808:1 3820:3 3825:1 3828:1 3838:1 3860:1 3861:1 3872:1 3900:1 3928:2 3948:1 3949:2 3952:3 3973:2 3982:1 3997:1 4010:1 4019:1 4020:3 4025:3 4056:1 4058:2 4061:1 4063:1 4064:8 4065:5 4066:1 4077:1 4078:1 4086:2 4089:2 4096:1 4099:1 4115:4 4116:1 4123:1 4128:1 4129:2 4133:5 4166:1 4167:1 4173:1 4176:1 4181:1 4185:3 4186:1 4197:1 4202:1 4223:1 4232:1 4242:1 4248:1 4255:2 4260:1 4281:2 4289:1 4301:1 4307:2 4313:2 4328:2 4348:1 4354:2 4371:1 4376:1 4390:1 4398:1 4410:1 4419:3 4422:3 4431:4 4437:1 4456:1 4467:2 4492:1 4496:1 4505:1 4526:1 4531:1 4540:2 4549:1 4560:1 4600:1 4609:2 4631:2 4634:1 4661:1 4663:1 4668:1 4677:4 4709:1 4711:1 4712:1 4715:1 4717:2 4754:2 4757:1 4779:1 4789:5 4793:1 4798:1 4803:1 4822:1 4848:1 4851:2 4868:1 4890:1 4917:1 4920:1 4921:2 4922:3 4928:3 4933:1 4946:3 4968:1 4969:3 4983:1 4992:1 5002:1 5009:1 5012:5 5024:8 5031:1 5039:1 5041:1 5046:1 5080:1 5082:1 5098:3 5104:1 5108:2 5116:2 5119:1 5121:1 5136:1 5154:1 5155:1 5159:1 5204:1 5212:2 5226:1 5229:1 5245:1 5249:1 5268:3 5272:1 5278:1 5282:1 5300:1 5310:17 5314:2 5315:1 5325:1 5335:1 5365:1 5370:1 5380:1 5423:1 5440:1 5441:1 5444:1 5455:1 5474:2 5478:1 5481:1 5526:2 5531:1 5532:1 5545:1 5546:1 5562:1 5567:1 5571:1 5575:1 5581:3 5582:1 5622:1 5648:2 5651:4 5683:1 5699:1 5703:1 5719:3 5743:1 5746:3 5759:2 5764:1 5779:1 5783:1 5785:1 5790:2 5795:1 5799:1 5800:1 5811:1 5817:1 5831:1 5854:1 5859:9 5863:1 5882:1 5887:1 5894:1 5900:1 5912:1 5919:2 5921:2 5925:5 5942:2 5975:1 5992:1 6000:1 6006:1 6008:1 6014:1 6020:2 6027:1 6029:1 6049:3 6053:2 6057:1 6087:1 6090:1 6110:2 6127:1 6128:1 6195:2 6227:2 6229:1 6232:4 6242:1 6262:1 6266:1 6269:1 6294:1 6297:1 6334:1 6340:1 6341:4 6363:2 6378:2 6379:1 6397:1 6402:1 6409:1 6416:1 6442:2 6444:3 6445:2 6471:1 6472:1 6473:1 6480:1 6492:1 6497:1 6500:1 6532:1 6555:2 6557:1 6571:1 6575:1 6590:2 6603:4 6612:1 6613:9 6630:3 6645:1 6654:1 6672:2 6696:1 6698:3 6699:1 6721:1 6763:7 6815:7 6826:2 6827:2 6828:1 6829:1 6832:7 6835:1 6840:1 6842:1 6849:1 6851:1 6869:1 6875:1 6883:1 6894:4 6916:3 6917:1 6923:1 6926:1 6931:1 6932:2 6935:1 6938:1 6939:1 6941:1 6942:2 6945:1 6969:1 6971:1 7005:1 7065:1 7071:1 7081:1 7084:3 7090:2 7093:3 7113:9 7118:1 7127:1 7128:1 7129:1 7169:1 7180:1 7197:2 7210:1 7230:1 7234:1 7239:9 7240:1 7268:1 7276:1 7280:1 7296:1 7302:12 7303:1 7319:2 7333:1 7345:1 7363:1 7369:1 7380:2 7388:1 7401:1 7419:1 7421:2 7428:3 7429:2 7434:3 7439:1 7460:1 7463:1 7468:1 7516:1 7529:2 7532:1 7550:2 7560:2 7561:1 7575:1 7576:1 7584:1 7593:1 7643:2 7651:1 7658:1 7694:1 7706:1 7750:6 7751:1 7762:1 7763:1 7764:2 7779:1 7781:1 7814:2 7818:1 7823:1 7849:1 7870:2 7901:2 7906:3 7924:1 7936:1 7944:1 7945:5 7950:1 7969:1 7971:1 7978:3 7979:1 7996:1 8006:1 8030:2 8033:2 8055:1 8058:16 8068:3 8087:1 8088:2 8104:1 8105:1 8126:1 8130:2 8175:2 8179:1 8185:1 8238:1 8241:4 8258:2 8289:2 8294:1 8307:4 8309:1 8327:1 8328:1 8329:4 8332:2 8333:5 8341:1 8351:4 8352:2 8359:6 8360:2 8362:1 8364:1 8366:2 8372:1 8377:1 8378:1 8386:24 8389:1 8410:21 8413:1 8419:1 8438:1 8441:1 8452:1 8460:1 8483:1 8513:1 8517:2 8540:1 8544:1 8546:1 8560:1 8569:1 8592:3 8595:3 8623:1 8624:1 8648:1 8682:1 8705:3 8710:3 8712:1 8761:1 8766:3 8781:1 8819:2 8823:1 8828:1 8829:1 8839:1 8841:1 8868:1 8878:1 8879:1 8883:1 8889:2 8921:16 8950:3 8964:1 8976:16 8982:8 8983:1 8984:2 8985:1 8986:2 9007:1 9016:2 9020:1 9021:3 9059:1 9073:1 9074:1 9079:1 9100:1 9117:1 9120:1 9134:1 9138:4 9178:1 9182:1 9183:16 9191:2 9208:1 9220:9 9223:1 9229:3 9235:1 9250:1 9283:2 9285:2 9286:1 9290:2 9296:1 9297:1 9299:1 9300:1 9301:2 9302:1 9303:1 9304:1 9312:1 9315:1 9317:2 9332:1 9354:1 9355:1 9380:2 9381:6 9390:1 9395:3 9402:1 9403:1 9406:1 9416:1 9417:1 9451:2 9476:1 9490:1 9491:2 9508:1 9514:2 9520:1 9561:1 9570:3 9571:1 9593:1 9597:2 9610:1 9648:1 9652:2 9658:3 9675:1 9685:2 9701:1 9713:2 9715:1 9724:1 9725:2 9734:3 9740:1 9743:2 9781:1 9785:1 9789:1 9792:1 9799:1 9801:1 9812:1 9815:2 9831:1 9844:2 9848:1 9850:1 9856:1 9859:1 9893:1 9907:1 9910:2 9911:1 9920:1 9932:2 9934:1 9957:2 9961:1 9979:1 9985:1 10048:2 10062:1 10086:1 10095:2 10116:3 10135:1 10162:1 10178:1 10185:1 10206:1 10208:1 10211:1 10214:1 10251:4 10255:1 10257:1 10273:1 10283:2 10307:1 10342:1 10351:1 10372:3 10374:1 10377:7 10381:33 10383:1 10385:4 10387:1 10392:2 10399:2 10402:1 10406:1 10416:6 10420:1 10423:1 10430:5 10434:2 10450:4 10452:1 10491:1 10492:3 10503:1 10508:1 10510:2 10516:2 10532:1 10535:1 10539:1 10545:1 10552:1 10569:1 10608:1 10621:3 10622:1 10649:1 10654:1 10655:1 10659:2 10678:4 10705:1 10716:1 10751:1 10757:2 10759:1 10773:1 10776:1 10777:3 10784:1 10793:3 10800:3 10808:1 10822:1 10827:1 10828:3 10830:1 10836:1 10857:3 10860:24 10886:1 10922:2 10951:4 10971:1 10988:1 10989:1 11034:1 11036:1 11094:1 11113:1 11114:2 11126:1 11130:2 11139:1 11141:1 11146:1 11178:1 11183:3 11185:1 11189:2 11203:1 11209:1 11221:1 11250:1 11257:1 11274:1 11277:1 11289:1 11290:1 11295:2 11304:2 11306:1 11313:6 11323:1 11362:2 11382:1 11383:1 11388:1 11404:3 11408:3 11451:1 11453:2 11467:16 11473:2 11484:1 11486:1 11489:1 11498:1 11503:1 11514:1 11515:6 11520:1 11530:1 11553:1 11557:2 11574:4 11585:1 11591:2 11598:1 11608:2 11634:1 11654:1 11655:1 11661:2 11663:1 11693:1 11703:1 11706:1 11710:9 11714:1 11728:1 11730:1 11742:2 11761:1 11766:1 11785:1 11789:1 11798:1 11820:1 11840:3 11854:1 11860:5 11863:3 11864:1 11866:1 11879:1 11883:1 11886:3 11887:1 11888:2 11893:2 11896:1 11900:1 11910:1 11929:1 11943:1 12001:1 12004:1 12013:1 12025:1 12026:1 12027:1 12042:4 12045:1 12048:1 12053:1 12071:1 12072:1 12088:1 12094:1 12097:1 12098:1 12123:1 12135:1 12145:1 12167:1 12174:2 12186:1 12188:1 12191:1 12200:1 12213:1 12214:3 12220:2 12225:1 12227:1 12228:1 12235:1 12239:1 12258:1 12260:1 12266:1 12289:1 12292:1 12296:1 12319:1 12327:1 12334:1 12351:1 12373:1 12399:1 12402:1 12419:1 12420:3 12424:1 12425:1 12427:1 12452:1 12463:1 12473:1 12475:1 12476:1 12489:1 12505:1 12530:1 12531:1 12536:3 12543:1 12551:4 12564:2 12571:1 12574:2 12576:2 12583:1 12595:2 12630:2 12646:4 12648:1 12653:1 12659:1 12660:1 12665:2 12677:6 12680:2 12686:3 12704:1 12706:6 12716:2 12730:1 12735:1 12739:3 12745:1 12760:1 12774:2 12778:1 12787:1 12810:3 12811:1 12838:1 12884:1 12890:1 12924:1 12926:1 12970:1 12974:1 12983:3 12996:1 13000:1 13027:1 13034:1 13053:1 13055:2 13061:1 13062:1 13081:4 13086:1 13091:1 13098:1 13105:2 13139:1 13142:1 13166:1 13188:1 13191:1 13209:2 13226:2 13230:1 13232:2 13270:1 13276:1 13301:1 13319:2 13329:1 13337:2 13351:8 13363:1 13364:1 13369:1 13387:2 13392:2 13401:1 13405:1 13416:1 13457:1 13478:1 13506:1 13537:1 13544:2 13545:2 13550:1 13595:1 13604:2 13616:1 13637:1 13640:2 13644:1 13674:2 13698:1 13703:1 13705:1 13736:11 13750:1 13754:1 13762:11 13792:1 13794:2 13797:1 13820:1 13825:3 13834:1 13835:1 13845:1 13855:1 13858:1 13861:1 13924:1 13936:4 13937:2 13940:1 13941:2 13980:1 13987:1 13989:1 13990:2 13993:1 14001:12 14042:1 14052:1 14061:8 14082:1 14086:1 14095:1 14103:1 14141:1 14157:1 14204:1 14218:1 14232:1 14236:1 14250:2 14255:3 14257:1 14274:2 14293:1 14295:1 14301:4 14311:2 14313:1 14314:1 14324:1 14325:1 14326:1 14328:2 14330:1 14355:1 14393:1 14395:1 14404:1 14411:1 14417:1 14426:3 14450:2 14460:1 14467:2 14474:1 14482:2 14483:1 14493:1 14514:1 14517:1 14520:1 14523:1 14524:1 14526:1 14544:1 14545:1 14549:1 14552:2 14557:5 14563:1 14582:1 14584:1 14613:1 14626:1 14638:1 14661:1 14662:5 14670:1 14677:4 14713:1 14717:2 14720:1 14727:1 14732:1 14736:1 14744:4 14749:1 14752:2 14757:1 14760:1 14799:1 14804:4 14813:1 14828:1 14837:1 14847:2 14859:2 14883:1 14890:2 14913:1 14914:1 14915:7 14936:2 14946:1 14965:1 14972:2 14975:2 14987:1 14990:1 15026:3 15035:2 15059:1 15072:1 15078:1 15114:4 15144:4 15154:2 15195:1 15210:3 15213:2 15219:1 15233:2 15252:2 15256:1 15273:1 15274:1 15287:1 15338:1 15344:1 15375:1 15400:1 15401:1 15418:1 15433:1 15438:9 15448:1 15455:1 15503:1 15510:1 15512:1 15528:1 15530:3 15535:2 15541:1 15545:1 15551:6 15553:1 15558:1 15585:2 15604:24 15606:2 15608:1 15641:1 15659:4 15660:1 15663:1 15710:5 15715:1 15737:2 15744:1 15763:1 15764:1 15791:1 15816:1 15822:1 15828:1 15843:1 15852:1 15871:1 15879:1 15905:1 15925:1 15934:1 15951:1 15975:1 15977:1 15980:1 15992:2 15994:1 15997:1 15999:1 16004:1 16006:3 16011:1 16019:2 16026:3 16046:1 16064:3 16090:1 16100:1 16121:1 16130:1 16132:1 16153:1 16156:1 16158:2 16161:1 16162:1 16165:1 16169:1 16175:1 16195:1 16196:3 16199:2 16201:4 16222:1 16224:1 16227:3 16236:1 16255:1 16256:6 16259:2 16274:1 16288:1 16318:1 16330:1 16332:1 16335:1 16351:1 16359:1 16364:1 16375:12 16446:1 16450:1 16451:1 16460:1 16461:1 16469:4 16481:1 16491:1 16506:1 16524:1 16539:4 16559:1 16589:3 16594:3 16612:1 16639:1 16642:1 16645:1 16663:1 16697:1 16699:5 16702:2 16709:6 16712:1 16722:2 16730:1 16732:1 16749:1 16750:1 16763:1 16766:1 16772:1 16780:3 16804:17 16806:2 16817:1 16824:1 16825:1 16838:2 16844:1 16869:1 16875:1 16890:1 16913:7 16919:1 16952:1 16958:1 16963:2 16968:1 16972:1 16974:1 16981:1 16982:1 16995:1 17004:1 17038:3 17045:1 17052:1 17058:3 17070:1 17074:1 17075:1 17098:3 17107:1 17127:1 17145:1 17161:1 17163:4 17164:4 17196:1 17200:2 17202:1 17204:2 17214:1 17223:1 17227:2 17236:1 17240:1 17248:1 17256:1 17267:2 17290:1 17291:1 17295:1 17302:2 17323:1 17326:1 17332:1 17338:1 17345:2 17361:2 17373:1 17394:1 17413:3 17428:1 17432:1 17461:8 17482:1 17488:1 17490:3 17495:1 17505:1 17509:1 17513:1 17514:4 17521:3 17522:1 17556:2 17559:1 17561:1 17564:1 17572:1 17574:2 17584:1 17588:1 17590:2 17591:1 17594:2 17599:1 17603:1 17604:2 17610:2 17613:1 17615:1 17658:1 17671:1 17678:2 17679:1 17680:1 17700:1 17717:1 17718:1 17734:1 17792:5 17797:1 17802:1 17828:1 17834:1 17835:2 17836:1 17848:2 17867:1 17882:1 17932:1 17933:1 17944:1 17958:1 17991:2 18019:1 18028:1 18045:1 18046:1 18068:1 18076:1 18108:3 18110:3 18114:2 18119:1 18120:6 18143:1 18167:1 18173:1 18174:10 18178:1 18218:1 18223:1 18247:1 18260:1 18286:3 18296:1 18334:1 18344:1 18366:1 18369:1 18373:2 18374:1 18383:1 18389:1 18410:1 18414:1 18415:1 18421:1 18424:3 18425:2 18427:3 18435:17 18438:6 18452:6 18457:2 18465:2 18470:1 18472:2 18479:4 18482:1 18488:2 18489:1 18515:1 18540:1 18579:1 18615:3 18616:1 18632:1 18635:2 18639:2 18643:1 18648:2 18651:1 18661:1 18662:1 18682:1 18713:1 18728:2 18734:1 18743:1 18746:4 18752:3 18759:1 18783:2 18789:3 18793:1 18797:1 18809:1 18817:1 18823:1 18833:1 18841:1 18879:1 18882:2 18885:1 18910:1 18911:1 18918:1 18928:1 18934:2 18951:3 18964:2 18974:5 18984:2 18988:3 19003:2 19004:1 19008:1 19013:1 19019:1 19021:3 19026:1 19030:1 19035:1 19036:1 19054:3 19057:3 19065:1 19066:1 19072:2 19077:4 19087:1 19113:2 19114:1 19118:4 19124:1 19130:1 19132:2 19138:1 19155:1 19176:1 19182:1 19217:1 19226:1 19234:1 19242:1 19256:1 19266:2 19284:3 19287:1 19288:1 19291:1 19297:2 19341:1 19352:2 19372:1 19387:1 19390:1 19399:1 19401:3 19414:1 19418:2 19428:1 19443:1 19446:5 19450:1 19460:1 19472:3 19504:6 19509:1 19511:7 19516:5 19521:1 19522:1 19523:1 19537:1 19557:1 19558:4 19571:4 19589:1 19636:1 19648:1 19664:1 19670:1 19671:3 19676:1 19677:1 19679:1 19706:1 19757:2 19783:1 19802:7 19812:1 19829:1 19831:1 19847:1 19875:1 19879:1 19880:1 19883:1 19906:2 19908:6 19916:1 19925:1 19959:4 19980:24 20029:1 20034:2 20070:2 20083:2 20110:1 20129:5 20131:1 20174:2 20179:1 20209:1 20258:1 20264:1 20268:24 20271:1 20272:1 20293:2 20304:1 20309:1 20326:1 20328:3240 20336:1 20365:1 20372:1 20378:3 20407:1 20411:1 20434:1 20439:1 20447:1 20448:1 20468:1 20471:2 20497:4 20499:1 20503:1 20521:1 20526:1 20529:1 20530:1 20531:1 20551:1 20557:2 20565:5 20569:1 20576:1 20578:5 20582:1 20584:1 20585:2 20596:2 20603:2 20611:1 20647:1 20662:1 20665:1 20669:3 20741:1 20743:1 20781:1 20784:1 20796:1 20802:1 20806:1 20820:1 20825:1 20828:1 20856:1 20877:1 20915:1 20977:6 20985:1 21000:1 21007:1 21019:1 21021:8 21023:4 21027:1 21044:1 21049:1 21050:3 21072:1 21078:1 21079:3 21092:1 21095:1 21097:2 21101:1 21117:1 21132:1 21140:1 21145:1 21146:2 21147:1 21156:3 21158:1 21160:7 21192:2 21216:1 21226:1 21237:4 21262:6 21276:1 21279:1 21291:1 21298:12 21299:2 21308:1 21309:1 21320:1 21326:2 21350:1 21359:1 21361:1 21378:23 21391:1 21398:5 21399:1 21417:1 21425:4 21436:2 21442:2 21446:1 21461:1 21464:1 21476:2 21486:1 21511:2 21523:3 21524:3 21542:1 21547:1 21551:5 21573:1 21580:1 21590:2 21597:5 21598:2 21603:1 21617:1 21630:1 21635:2 21639:1 21646:1 21652:2 21666:1 21667:1 21676:1 21747:1 21753:1 21755:4 21761:1 21777:2 21798:2 21832:1 21835:1 21862:1 21863:1 21868:1 21871:1 21875:3 21879:1 21888:1 21894:1 21905:1 21926:3 21936:1 21971:2 21972:1 21978:1 21993:1 21996:1 22001:1 22010:1 22021:1 22036:1 22045:11 22062:1 22064:1 22066:2 22068:1 22084:9 22116:1 22117:1 22122:1 22149:1 22159:1 22235:2 22240:1 22272:3 22284:1 22287:1 22288:2 22299:1 22307:1 22316:1 22325:4 22337:1 22339:3 22345:7 22367:1 22381:2 22387:2 22403:1 22411:1 22446:2 22450:4 22456:2 22462:1 22476:1 22482:4 22507:1 22512:1 22513:1 22533:2 22538:1 22548:1 22577:1 22585:1 22589:1 22604:1 22617:2 22622:1 22630:1 22635:2 22636:1 22643:2 22655:7 22657:1 22661:1 22674:11 22675:2 22703:1 22704:1 22716:1 22724:1 22736:1 22747:1 22784:1 22786:1 22810:1 22812:1 22815:5 22818:1 22819:1 22827:2 22829:1 22838:1 22854:1 22868:1 22870:2 22873:1 22876:2 22881:1 22902:1 22904:2 22915:1 22939:1 22957:1 22987:1 22988:2 22991:1 22992:1 23010:1 23019:1 23026:1 23034:2 23037:2 23044:1 23058:1 23060:1 23078:1 23084:4 23112:1 23116:1 23129:1 23147:1 23168:2 23169:1 23178:1 23201:1 23233:1 23242:1 23245:1 23248:1 23256:1 23257:1 23261:2 23276:3 23280:1 23303:1 23307:1 23317:1 23322:1 23325:2 23331:1 23346:2 23349:1 23361:1 23363:3 23368:1 23377:1 23380:1 23382:1 23392:1 23399:1 23404:1 23422:1 23455:1 23458:2 23462:3 23476:2 23478:1 23496:2 23511:2 23513:1 23519:3 23535:2 23543:2 23554:1 23556:1 23564:2 23566:1 23571:1 23572:4 23573:2 23583:1 23590:4 23596:1 23615:1 23616:1 23657:1 23662:1 23708:1 23723:2 23737:1 23744:1 23745:1 23763:1 23803:1 23811:2 23826:2 23836:1 23863:7 23866:1 23870:1 23871:1 23874:1 23878:1 23880:2 23893:2 23899:1 23912:1 23921:9 23941:1 23953:1 23954:1 23958:1 23965:1 23973:1 23979:1 23981:1 23988:1 24008:1 24009:2 24023:1 24026:2 24032:1 24038:1 24039:4 24055:1 24057:1 24063:1 24078:1 24101:1 24115:2 24119:1 24144:1 24148:1 24153:1 24159:1 24163:2 24164:2 24172:1 24174:1 24181:4 24183:3 24187:1 24190:1 24198:1 24225:1 24232:3 24233:2 24236:1 24254:1 24263:2 24272:1 24273:2 24275:1 24276:3 24279:1 24283:1 24285:2 24301:1 24307:1 24311:3 24316:2 24319:1 24322:1 24327:1 24332:2 24358:1 24360:1 24372:2 24382:1 24383:3 24386:3 24400:1 24402:2 24407:2 24436:1 24438:1 24450:2 24455:2 24475:1 24476:1 24486:1 24487:1 24494:1 24495:3 24518:1 24534:1 24537:1 24554:1 24568:2 24572:1 24573:1 24583:1 24586:4 24590:6 24597:1 24603:1 24613:2 24618:1 24620:2 24621:1 24627:1 24633:1 24635:1 24651:1 24657:1 24663:1 24669:1 24676:2 24680:1 24693:1 24701:5 24708:1 24716:1 24719:1 24727:2 24735:1 24737:1 24770:1 24772:1 24773:2 24777:2 24782:1 24786:3 24787:1 24795:2 24805:1 24808:1 24820:1 24839:1 24862:2 24863:1 24876:1 24935:1 24945:1 24976:1 24981:1 24988:1 25019:2 25032:1 25033:1 25044:1 25047:1 25056:14 25061:1 25071:1 25091:6 25097:1 25105:1 25108:1 25115:6 25123:1 25142:1 25148:3 25173:1 25174:1 25191:3 25192:1 25193:1 25200:1 25202:1 25214:1 25215:1 25217:1 25246:1 25253:1 25266:1 25267:1 25268:1 25271:1 25272:1 25275:1 25280:3 25301:1 25302:1 25308:1 25314:1 25323:2 25330:1 25332:8 25340:1 25352:4 25353:1 25361:1 25364:2 25376:1 25391:1 25392:1 25398:2 25410:1 25413:1 25421:5 25435:1 25442:1 25450:1 25470:1 25472:2 25476:1 25490:1 25520:2 25525:2 25545:1 25546:1 25556:1 25572:1 25577:1 25593:1 25619:1 25630:3 25655:1 25674:8 25689:1 25694:1 25704:1 25709:3 25734:1 25736:1 25749:1 25766:2 25772:1 25781:1 25788:1 25793:1 25798:4 25799:1 25802:2 25803:1 25808:1 25835:1 25844:2 25891:1 25896:1 25907:1 25919:2 25924:1 25927:1 25928:1 25937:1 25940:1 25961:1 25970:1 25995:1 26000:1 26008:1 26011:1 26012:1 26014:1 26017:1 26058:1 26065:1 26066:1 26089:1 26092:1 26094:1 26103:1 26107:1 26123:1 26125:3 26128:1 26133:1 26135:2 26136:1 26139:2 26143:1 26147:2 26154:1 26155:1 26158:1 26164:3 26169:1 26178:3 26192:1 26193:1 26208:2 26213:2 26225:1 26235:2 26248:5 26258:1 26262:1 26263:1 26268:3 26271:1 26273:1 26276:1 26280:1 26281:1 26282:1 26288:2 26293:1 26305:5 26315:1 26339:3 26355:1 26362:1 26364:1 26385:1 26388:1 26389:3 26404:1 26419:1 26420:1 26428:1 26435:1 26438:1 26444:2 26447:1 26466:1 26491:2 26552:1 26553:1 26560:1 26563:2 26569:1 26589:1 26592:1 26594:1 26595:1 26604:1 26607:1 26608:2 26611:4 26618:1 26622:1 26630:1 26631:1 26632:1 26642:1 26653:4 26660:1 26690:1 26692:1 26694:1 26696:1 26716:1 26727:1 26744:1 26746:1 26749:2 26755:1 26757:1 26762:2 26769:1 26781:8 26809:3 26819:1 26821:2 26863:1 26894:1 26901:2 26902:1 26904:3 26915:1 26916:2 26929:1 26931:1 26943:1 26950:1 27033:1 27034:1 27037:2 27039:1 27046:1 27052:2 27075:3 27088:3 27093:2 27095:1 27097:1 27104:2 27113:1 27125:1 27138:1 27145:1 27163:1 27164:1 27177:1 27202:1 27207:1 27209:4 27210:1 27216:1 27230:2 27232:1 27247:1 27253:1 27264:1 27273:1 27297:3 27302:2 27308:2 27315:1 27326:2 27329:1 27338:1 27352:3 27362:2 27375:1 27382:1 27390:1 27400:1 27402:1 27416:1 27418:1 27422:1 27426:11 27427:1 27429:1 27438:1 27441:1 27466:2 27468:1 27472:2 27488:1 27495:1 27515:2 27546:1 27559:1 27574:1 27575:2 27582:2 27583:1 27588:2 27604:5 27605:1 27606:2 27614:1 27620:2 27639:1 27662:10 27667:3 27685:2 27690:2 27693:2 27718:2 27726:1 27737:5 27761:3 27768:1 27785:1 27788:1 27792:1 27799:1 27817:5 27822:1 27839:2 27851:7 27892:1 27906:1 27945:3 27950:1 27969:1 27979:1 27995:2 27999:1 28000:1 28005:1 28025:1 28040:1 28046:1 28056:1 28066:1 28072:2 28074:1 28084:2 28094:1 28119:1 28122:2 28128:1 28139:1 28149:1 28159:1 28160:1 28189:1 28193:1 28197:1 28204:3 28207:1 28217:2 28256:1 28259:2 28262:2 28266:1 28275:2 28301:1 28307:1 28398:1 28400:1 28403:1 28406:1 28412:1 28419:1 28428:3 28459:1 28474:1 28488:1 28499:1 28502:1 28504:1 28505:1 28527:3 28540:9 28555:1 28561:2 28575:1 28621:1 28630:1 28642:1 28644:1 28645:1 28658:2 28715:1 28716:1 28723:2 28728:3 28744:1 28754:2 28755:7 28764:1 28765:1 28778:9 28783:2 28786:1 28791:1 28792:1 28800:1 28809:1 28823:1 28843:2 28856:1 28858:9 28868:1 28876:1 28877:3 28883:1 28900:1 28911:1 28916:1 28929:1 28933:24 28947:1 28960:1 28961:1 28977:1 28984:2 29024:1 29034:2 29039:1 29052:2 29063:1 29071:1 29075:1 29078:1 29090:1 29091:1 29105:1 29113:1 29126:1 29146:1 29154:1 29161:1 29182:1 29193:1 29207:1 29221:3 29231:1 29239:5 29240:1 29268:1 29272:3 29292:1 29314:1 29339:3 29348:1 29349:2 29357:1 29387:2 29396:2 29404:2 29413:1 29422:1 29424:2 29429:1 29430:2 29431:3 29444:1 29457:5 29465:1 29471:8 29490:1 29495:2 29504:1 29519:1 29535:1 29537:1 29543:2 29546:1 29551:1 29557:3 29560:1 29581:1 29602:1 29627:1 29650:1 29652:2 29654:1 29664:1 29675:1 29684:1 29701:1 29708:1 29721:1 29727:1 29730:1 29742:1 29748:1 29749:1 29759:1 29761:2 29762:1 29763:1 29764:1 29770:1 29775:1 29795:3 29798:1 29810:1 29816:9 29855:1 29865:1 29866:2 29890:1 29901:1 29902:1 29930:1 29931:1 29932:1 29935:3 29977:1 29988:1 29990:1 29998:1 30003:1 30013:1 30036:1 30047:1 30056:2 30084:3 30088:1 30113:3 30123:1 30137:16 30138:1 30144:1 30145:1 30157:1 30162:3 30173:3 30180:2 30183:1 30184:2 30186:1 30187:1 30225:3 30226:1 30239:8 30241:11 30253:1 30263:1 30264:2 30277:2 30279:1 30280:1 30284:1 30294:2 30310:1 30312:1 30330:3 30334:1 30335:2 30339:8 30352:1 30362:1 30384:1 30385:1 30394:1 30396:6 30438:1 30447:2 30449:2 30459:1 30462:4 30466:1 30468:1 30508:1 30511:1 30522:1 30538:1 30541:2 30545:1 30549:1 30551:1 30561:2 30573:1 30580:1 30586:1 30592:1 30607:1 30620:1 30621:3 30637:1 30646:1 30653:1 30654:1 30678:1 30679:1 30680:2 30682:2 30686:2 30705:1 30715:1 30716:2 30725:2 30760:3 30787:2 30795:2 30815:4 30823:2 30824:1 30854:3 30868:1 30871:1 30872:1 30897:2 30898:1 30901:1 30902:1 30903:1 30906:1 30911:1 30927:1 30950:2 30952:1 30962:1 30975:1 30998:1 31028:1 31032:1 31034:1 31037:2 31051:1 31060:1 31076:1 31089:4 31095:1 31098:4 31105:2 31115:1 31128:1 31138:1 31156:1 31168:1 31184:2 31210:1 31215:1 31233:4 31258:1 31280:1 31281:1 31308:1 31312:1 31315:1 31316:1 31331:1 31341:1 31342:3 31353:1 31355:3 31359:1 31377:1 31378:1 31383:1 31390:1 31403:1 31407:3 31421:1 31427:2 31432:1 31446:1 31447:2 31462:1 31478:2 31481:1 31489:5 31494:1 31495:1 31497:1 31505:7 31507:1 31508:1 31510:1 31514:1 31542:1 31548:1 31550:1 31559:1 31567:1 31615:2 18 6:1 8:1 13:1 14:1 18:2 21:1 34:1 37:1 55:1 65:1 69:1 75:1 80:1 85:1 123:2 142:1 188:4 210:2 214:1 216:2 219:1 232:1 237:2 266:1 269:2 273:2 283:3 302:1 323:3 339:4 352:1 358:1 359:1 372:7 383:1 384:1 389:1 394:1 395:1 410:1 448:1 449:3 452:1 454:1 462:1 464:1 466:1 469:2 477:1 490:1 501:1 538:1 548:2 552:1 559:1 570:1 572:1 595:3 599:1 600:4 603:3 607:1 618:1 628:4 632:1 643:1 646:2 656:4 664:1 683:1 694:2 704:7 715:1 716:1 735:1 748:3 756:2 759:1 767:3 768:1 781:1 782:1 790:1 795:1 802:1 846:1 866:1 881:1 888:4 890:3 897:1 898:2 909:1 921:1 923:2 924:3 926:2 937:2 949:1 950:2 960:2 964:1 970:1 973:2 980:1 992:1 1011:1 1014:4 1050:2 1082:1 1130:1 1132:3 1135:2 1148:1 1152:1 1167:1 1181:1 1202:1 1210:1 1228:1 1248:4 1270:2 1272:2 1279:2 1280:2 1281:1 1283:2 1295:1 1316:3 1332:1 1342:1 1343:1 1351:2 1353:1 1371:2 1424:1 1434:1 1437:1 1444:2 1447:1 1453:2 1454:2 1461:1 1465:1 1470:1 1487:2 1500:3 1501:1 1506:1 1518:1 1520:1 1522:1 1554:1 1556:2 1558:1 1562:1 1564:1 1582:1 1595:3 1604:1 1606:1 1615:2 1619:1 1633:4 1634:1 1636:1 1637:3 1647:4 1648:1 1662:1 1664:1 1689:1 1706:2 1708:2 1720:2 1723:1 1731:1 1749:1 1751:2 1752:1 1785:1 1789:3 1824:1 1831:1 1842:4 1849:1 1866:2 1885:1 1960:1 1963:1 1966:1 1979:2 1981:2 1985:1 1990:2 1991:1 1993:4 2014:2 2043:2 2047:1 2061:1 2073:1 2079:1 2085:2 2091:1 2093:2 2117:1 2131:2 2133:3 2137:1 2140:17 2143:2 2144:1 2147:1 2152:1 2169:1 2183:1 2187:1 2192:1 2212:1 2217:2 2225:1 2242:2 2253:2 2254:1 2263:1 2273:1 2290:1 2300:3 2303:1 2310:1 2312:6 2314:1 2315:1 2318:1 2319:7 2321:1 2322:1 2324:1 2326:2 2328:1 2329:5 2336:4 2342:4 2344:2 2346:1 2361:2 2362:1 2363:1 2365:1 2369:1 2371:1 2374:1 2375:3 2377:2 2381:2 2382:1 2388:1 2393:3 2396:2 2397:4 2403:2 2407:1 2410:2 2412:1 2414:3 2416:1 2423:3 2432:24 2442:1 2446:1 2450:3 2456:1 2506:4 2517:1 2521:1 2528:1 2541:1 2543:1 2545:1 2547:1 2555:1 2557:4 2565:1 2580:1 2608:1 2616:1 2619:1 2621:2 2645:1 2649:1 2653:1 2662:1 2687:2 2699:6 2701:1 2717:1 2718:1 2720:2 2728:3 2737:1 2754:2 2769:1 2771:1 2781:1 2793:5 2820:2 2827:3 2828:1 2836:1 2840:1 2847:1 2850:2 2873:1 2880:1 2883:3 2884:1 2889:1 2895:1 2896:1 2913:1 2925:1 2931:1 2949:1 2952:6 2956:1 2964:2 2974:1 2975:1 2988:2 3015:1 3040:1 3050:2 3059:1 3063:11 3066:3 3068:1 3088:1 3107:3 3116:1 3119:21 3126:1 3127:3 3129:1 3133:1 3143:2 3148:3 3156:1 3164:3 3182:1 3184:5 3218:1 3221:1 3226:1 3230:2 3317:2 3329:1 3330:6 3388:4 3401:1 3439:1 3442:1 3447:2 3448:3 3467:1 3479:1 3487:1 3489:1 3490:1 3494:3 3495:1 3500:2 3525:1 3528:4 3532:1 3537:2 3545:1 3563:4 3573:1 3581:1 3588:1 3595:1 3600:1 3619:1 3661:1 3719:1 3728:1 3732:1 3736:4 3751:1 3791:1 3798:1 3808:1 3820:3 3825:1 3828:1 3838:1 3860:1 3861:1 3872:1 3900:1 3928:2 3948:1 3949:3 3952:3 3973:2 3982:1 3986:1 3997:1 4010:1 4019:1 4020:3 4025:3 4056:1 4058:2 4061:1 4063:1 4064:8 4065:5 4066:1 4077:1 4078:1 4086:2 4089:2 4096:1 4099:2 4115:5 4116:1 4123:1 4128:1 4129:2 4133:5 4166:1 4167:1 4173:1 4176:1 4181:1 4185:3 4186:1 4197:1 4202:1 4223:1 4232:1 4242:1 4248:1 4255:2 4260:1 4281:2 4289:1 4301:1 4307:2 4313:2 4328:2 4348:1 4354:2 4371:1 4376:1 4390:1 4398:1 4410:1 4419:3 4422:3 4431:4 4437:1 4456:1 4467:2 4492:1 4496:1 4505:1 4525:1 4526:1 4531:1 4540:2 4549:1 4560:1 4600:1 4609:2 4631:2 4634:1 4641:1 4661:1 4663:1 4668:1 4677:4 4709:1 4711:1 4712:1 4715:1 4717:2 4754:2 4757:1 4779:1 4789:5 4793:1 4798:1 4803:1 4822:1 4848:1 4851:2 4868:1 4890:1 4896:1 4917:1 4920:1 4921:2 4922:3 4928:3 4933:1 4946:3 4968:1 4969:3 4983:1 4992:1 5002:1 5009:1 5012:5 5024:8 5031:1 5039:1 5041:1 5046:1 5080:1 5082:1 5098:3 5104:1 5108:2 5116:2 5119:1 5121:1 5136:1 5154:1 5155:1 5159:1 5204:1 5212:2 5226:1 5229:1 5245:1 5249:1 5268:3 5272:1 5278:1 5282:1 5300:1 5310:17 5314:2 5315:1 5325:1 5335:1 5365:1 5370:1 5380:1 5423:1 5440:1 5441:2 5444:1 5455:1 5474:2 5478:1 5481:1 5526:2 5531:1 5532:1 5545:1 5546:1 5562:1 5567:1 5571:1 5575:1 5581:3 5582:1 5622:1 5648:2 5651:4 5683:1 5699:1 5703:2 5719:3 5743:1 5746:3 5759:2 5764:1 5779:1 5783:1 5785:1 5790:2 5795:1 5799:1 5800:1 5811:1 5817:1 5831:1 5834:1 5854:1 5859:9 5863:2 5882:1 5887:1 5894:1 5900:1 5912:1 5919:2 5921:2 5925:5 5942:2 5975:1 5992:1 6000:1 6006:1 6008:1 6014:1 6020:2 6027:1 6029:1 6049:3 6053:2 6057:1 6087:1 6090:1 6110:2 6127:1 6128:1 6195:2 6227:2 6229:1 6232:4 6242:1 6245:1 6262:1 6266:1 6269:1 6275:1 6294:1 6297:1 6334:1 6340:1 6341:4 6363:2 6378:2 6379:2 6397:1 6402:1 6409:1 6416:1 6442:2 6444:3 6445:2 6457:1 6471:1 6472:1 6473:1 6480:1 6492:1 6497:1 6500:1 6532:1 6555:2 6557:1 6571:1 6575:1 6590:2 6603:4 6612:1 6613:9 6630:3 6645:1 6654:1 6672:2 6696:1 6698:3 6699:1 6721:1 6763:7 6815:7 6826:2 6827:2 6828:1 6829:1 6832:7 6835:1 6840:1 6842:1 6849:1 6851:1 6869:1 6875:1 6883:1 6894:6 6916:3 6917:1 6923:1 6926:1 6931:1 6932:2 6935:1 6938:1 6939:1 6941:1 6942:2 6945:1 6969:1 6971:1 7005:1 7065:1 7071:1 7081:1 7084:3 7090:2 7093:3 7113:9 7118:1 7127:1 7128:1 7129:1 7169:1 7180:1 7197:2 7210:1 7230:1 7234:1 7239:9 7240:1 7268:1 7276:1 7280:1 7296:1 7302:12 7303:1 7319:2 7333:1 7345:1 7363:1 7369:1 7379:1 7380:2 7388:1 7401:1 7402:1 7419:1 7421:2 7428:3 7429:2 7434:3 7439:1 7460:1 7463:1 7468:1 7516:1 7529:2 7532:1 7550:2 7560:2 7561:1 7575:1 7576:1 7584:1 7593:1 7643:2 7651:1 7658:1 7694:1 7706:1 7750:6 7751:1 7762:1 7763:1 7764:2 7779:1 7781:1 7814:2 7818:1 7823:1 7849:1 7870:2 7901:2 7906:3 7924:1 7936:1 7944:1 7945:5 7950:1 7969:1 7971:1 7978:3 7979:1 7996:1 8006:1 8030:2 8033:2 8055:1 8058:17 8068:3 8087:1 8088:2 8104:1 8105:1 8126:1 8130:2 8175:2 8179:1 8185:1 8238:1 8241:4 8258:2 8289:2 8294:1 8307:4 8309:1 8327:1 8328:1 8329:4 8332:2 8333:5 8341:1 8351:4 8352:2 8359:6 8360:2 8362:1 8364:1 8366:2 8372:1 8377:1 8378:1 8386:24 8389:1 8410:22 8413:1 8419:1 8438:1 8441:1 8452:1 8460:1 8483:1 8513:1 8517:2 8540:1 8544:1 8546:1 8560:1 8569:1 8592:3 8595:3 8623:1 8624:1 8648:1 8682:1 8705:3 8710:3 8712:1 8761:1 8766:3 8781:1 8819:2 8823:1 8828:1 8829:1 8839:1 8841:1 8868:1 8878:1 8879:1 8883:1 8889:2 8921:17 8950:3 8964:1 8976:16 8982:10 8983:1 8984:2 8985:1 8986:2 9007:1 9016:2 9020:1 9021:3 9059:1 9073:1 9074:2 9079:1 9100:1 9117:1 9120:1 9134:1 9138:4 9154:1 9178:1 9182:1 9183:17 9191:2 9208:1 9220:9 9223:1 9229:3 9235:1 9250:1 9283:2 9285:2 9286:1 9290:2 9296:1 9297:1 9299:1 9300:1 9301:2 9302:1 9303:1 9304:1 9312:1 9315:1 9317:2 9332:1 9354:1 9355:1 9380:2 9381:6 9390:1 9395:3 9402:1 9403:1 9406:1 9416:1 9417:1 9451:2 9476:1 9490:1 9491:2 9508:1 9514:2 9516:1 9520:1 9561:1 9570:3 9571:1 9593:1 9597:2 9610:1 9648:1 9652:2 9658:3 9675:1 9685:2 9701:1 9713:2 9715:1 9724:1 9725:2 9734:3 9740:1 9743:2 9781:1 9785:1 9789:1 9792:1 9799:1 9801:1 9812:1 9815:2 9831:1 9844:2 9848:1 9850:1 9856:1 9859:1 9893:1 9907:1 9910:2 9911:1 9920:1 9932:2 9934:1 9957:2 9961:1 9979:1 9985:1 10048:2 10062:1 10086:1 10095:2 10116:3 10135:1 10162:1 10178:1 10185:1 10206:1 10208:1 10211:1 10214:1 10251:4 10255:1 10257:1 10273:1 10283:2 10307:1 10342:1 10351:1 10372:3 10374:1 10377:8 10381:33 10383:1 10385:5 10387:1 10392:2 10399:3 10402:1 10406:1 10416:7 10420:1 10423:1 10430:5 10434:2 10450:4 10452:1 10491:1 10492:3 10503:1 10508:1 10510:2 10516:2 10532:1 10535:1 10539:1 10545:1 10549:1 10552:1 10569:1 10608:1 10621:3 10622:1 10649:1 10654:1 10655:1 10659:2 10678:4 10705:1 10716:1 10751:1 10757:2 10759:1 10773:1 10776:1 10777:3 10784:1 10793:3 10800:3 10808:1 10822:1 10827:1 10828:3 10830:1 10836:1 10857:3 10860:24 10886:1 10922:2 10951:4 10971:2 10988:1 10989:1 11006:1 11034:1 11036:2 11094:1 11113:1 11114:2 11126:1 11130:2 11139:1 11141:1 11146:2 11178:1 11183:3 11185:1 11189:2 11203:1 11209:1 11221:1 11250:1 11257:1 11274:1 11277:1 11289:1 11290:1 11295:2 11304:2 11306:1 11313:6 11323:1 11362:2 11382:1 11383:1 11388:1 11404:3 11408:4 11420:1 11451:1 11453:2 11467:17 11473:2 11484:1 11486:1 11489:1 11498:1 11503:1 11514:1 11515:6 11520:1 11530:1 11553:1 11557:2 11574:4 11585:1 11591:2 11598:1 11608:2 11634:2 11654:1 11655:1 11661:2 11663:1 11693:1 11703:1 11706:1 11710:9 11714:1 11728:1 11730:1 11742:2 11761:1 11766:1 11785:1 11789:1 11798:1 11820:1 11840:3 11854:1 11860:5 11863:3 11864:1 11866:1 11879:1 11883:1 11886:4 11887:1 11888:2 11893:2 11896:1 11900:1 11910:1 11929:1 11943:1 12001:1 12004:1 12013:1 12025:1 12026:1 12027:1 12042:4 12045:1 12048:1 12053:1 12071:1 12072:1 12088:1 12094:1 12097:1 12098:1 12123:1 12135:1 12145:1 12167:1 12174:2 12186:1 12188:1 12191:1 12200:1 12213:1 12214:3 12220:2 12225:1 12227:1 12228:1 12235:1 12239:1 12258:1 12260:1 12266:1 12289:1 12292:1 12296:1 12319:1 12327:1 12334:1 12351:1 12373:2 12399:1 12402:2 12419:1 12420:3 12424:1 12425:1 12427:1 12452:1 12463:1 12473:1 12475:1 12476:1 12489:1 12505:1 12530:1 12531:1 12536:3 12543:1 12551:4 12564:2 12571:1 12574:2 12576:2 12583:1 12595:2 12630:2 12646:4 12648:1 12653:1 12659:1 12660:1 12665:2 12677:6 12680:2 12686:3 12704:1 12706:6 12716:2 12730:1 12735:1 12739:3 12745:1 12760:1 12774:2 12778:1 12787:1 12810:3 12811:2 12838:1 12884:1 12890:1 12924:1 12926:1 12970:1 12974:1 12983:3 12996:2 13000:1 13027:1 13034:1 13053:1 13055:2 13061:1 13062:1 13081:5 13086:1 13091:1 13098:1 13105:2 13139:1 13142:1 13166:1 13188:1 13191:1 13209:2 13226:2 13230:1 13232:2 13270:1 13276:1 13301:1 13319:2 13329:1 13337:2 13351:9 13363:1 13364:1 13369:1 13387:2 13392:2 13401:1 13405:1 13416:1 13457:1 13478:1 13506:1 13537:1 13544:2 13545:2 13550:1 13595:1 13604:3 13616:1 13637:1 13640:2 13644:1 13674:2 13698:1 13703:1 13705:1 13736:11 13750:1 13754:1 13762:11 13792:1 13794:2 13797:1 13820:1 13825:3 13834:1 13835:1 13845:1 13855:1 13858:1 13861:1 13907:1 13922:1 13924:1 13936:4 13937:2 13940:1 13941:2 13980:2 13987:1 13989:1 13990:2 13993:1 14001:12 14042:1 14052:1 14061:8 14082:1 14086:1 14095:1 14103:1 14141:1 14157:1 14204:1 14218:1 14232:1 14236:1 14250:2 14255:3 14257:1 14274:2 14293:1 14295:1 14301:4 14311:3 14313:2 14314:1 14324:1 14325:1 14326:1 14328:2 14330:1 14355:1 14393:1 14395:1 14404:1 14411:1 14417:1 14426:3 14450:2 14460:1 14467:2 14474:1 14482:2 14483:1 14493:1 14514:1 14517:1 14520:1 14523:1 14524:1 14526:1 14544:1 14545:1 14549:1 14552:2 14557:5 14563:1 14582:1 14584:1 14613:1 14626:1 14638:1 14661:1 14662:5 14670:1 14677:4 14713:1 14717:2 14720:1 14727:1 14732:2 14736:1 14744:4 14749:1 14752:2 14757:1 14760:1 14799:1 14804:4 14813:1 14828:1 14837:1 14847:2 14859:2 14883:1 14890:2 14900:1 14913:1 14914:1 14915:7 14936:2 14946:1 14965:1 14972:2 14975:2 14987:1 14990:1 15026:3 15035:2 15059:1 15072:1 15078:1 15114:4 15144:4 15154:2 15195:1 15210:3 15213:2 15219:1 15233:2 15252:2 15256:1 15273:1 15274:1 15287:1 15338:1 15344:1 15375:1 15400:1 15401:1 15418:1 15433:1 15438:9 15448:1 15455:1 15503:1 15510:1 15512:1 15528:1 15530:3 15535:2 15541:1 15545:1 15551:6 15553:1 15558:1 15585:2 15604:24 15606:2 15608:1 15641:1 15659:4 15660:1 15663:1 15710:5 15715:1 15737:2 15744:1 15763:1 15764:1 15791:1 15809:1 15816:1 15822:1 15828:1 15843:1 15852:1 15871:1 15879:1 15905:1 15925:1 15934:1 15951:1 15975:1 15977:1 15980:1 15992:2 15994:1 15997:1 15999:1 16004:1 16006:3 16011:1 16019:2 16026:3 16046:1 16064:3 16090:1 16100:1 16121:1 16130:1 16132:1 16153:1 16156:1 16158:2 16161:1 16162:1 16165:1 16169:1 16175:1 16195:1 16196:3 16199:2 16201:4 16222:1 16224:1 16227:3 16236:1 16255:2 16256:6 16259:2 16274:1 16288:1 16318:1 16330:1 16332:1 16335:1 16351:1 16359:1 16364:1 16375:12 16446:2 16450:1 16451:1 16460:1 16461:1 16469:4 16481:1 16491:1 16506:1 16524:1 16539:4 16559:1 16589:3 16594:3 16612:1 16639:1 16642:1 16645:1 16663:1 16697:2 16699:5 16702:2 16709:6 16712:1 16722:2 16730:1 16732:1 16749:1 16750:1 16763:1 16766:1 16772:1 16780:3 16804:17 16806:2 16817:1 16824:1 16825:1 16838:2 16844:1 16869:1 16875:1 16890:1 16913:7 16919:1 16952:1 16958:1 16963:2 16968:1 16972:1 16974:1 16981:1 16982:1 16995:1 17004:1 17038:3 17045:1 17052:1 17058:3 17070:1 17074:1 17075:1 17098:4 17107:1 17127:1 17145:1 17161:1 17163:4 17164:4 17196:1 17200:2 17202:1 17204:2 17214:1 17223:1 17227:2 17236:1 17240:1 17248:1 17256:1 17267:2 17290:1 17291:1 17295:1 17302:2 17323:1 17326:2 17332:2 17338:1 17345:2 17361:2 17373:1 17394:1 17413:3 17428:1 17432:1 17461:8 17482:1 17488:1 17490:3 17495:1 17505:1 17509:1 17513:1 17514:4 17521:3 17522:1 17556:2 17559:1 17561:1 17564:1 17572:1 17574:2 17584:1 17588:2 17590:2 17591:1 17594:2 17599:1 17603:1 17604:2 17610:2 17613:1 17615:1 17658:1 17671:1 17678:2 17679:1 17680:1 17700:1 17717:1 17718:1 17734:1 17792:5 17797:1 17802:1 17828:1 17834:1 17835:2 17836:1 17848:2 17867:1 17882:1 17932:1 17933:1 17944:1 17958:1 17991:2 18019:1 18028:1 18045:1 18046:1 18068:1 18076:1 18108:3 18110:3 18114:2 18119:1 18120:6 18143:1 18167:1 18173:1 18174:10 18178:1 18218:1 18223:1 18247:1 18260:1 18286:3 18296:1 18334:1 18344:1 18355:1 18356:1 18366:1 18369:1 18373:2 18374:1 18383:1 18389:2 18410:1 18414:1 18415:1 18421:1 18424:3 18425:2 18427:3 18435:17 18438:6 18452:6 18457:2 18465:2 18470:1 18472:2 18479:4 18482:1 18488:2 18489:1 18515:1 18540:1 18579:1 18615:3 18616:1 18632:1 18635:2 18639:2 18643:1 18647:1 18648:2 18651:1 18661:1 18662:1 18682:1 18713:1 18728:2 18734:1 18743:1 18746:4 18752:3 18759:1 18783:2 18789:3 18793:1 18797:1 18809:1 18817:1 18823:1 18833:1 18841:1 18879:1 18882:2 18885:1 18910:1 18911:1 18918:1 18928:1 18934:2 18951:3 18964:2 18974:5 18984:2 18988:3 19003:2 19004:1 19008:1 19013:1 19019:1 19021:3 19026:1 19030:1 19035:1 19036:1 19054:3 19057:3 19065:1 19066:1 19072:2 19077:4 19087:1 19113:2 19114:1 19118:4 19124:1 19125:1 19130:1 19132:2 19138:1 19155:2 19176:1 19182:1 19217:1 19226:1 19234:1 19242:1 19256:1 19266:2 19284:3 19287:1 19288:1 19291:1 19297:2 19341:1 19352:2 19372:1 19387:1 19390:1 19399:1 19401:3 19414:1 19418:2 19428:1 19443:1 19446:5 19450:1 19460:1 19472:3 19504:6 19509:1 19511:7 19516:5 19521:1 19522:1 19523:1 19537:1 19557:1 19558:4 19571:4 19589:1 19636:1 19648:1 19664:1 19670:1 19671:3 19676:1 19677:1 19679:1 19706:1 19757:2 19783:1 19802:8 19812:1 19829:1 19831:1 19847:1 19875:1 19879:1 19880:1 19883:1 19906:2 19908:6 19916:1 19925:1 19959:4 19980:24 20029:1 20034:2 20070:2 20083:2 20110:1 20129:5 20131:1 20174:2 20179:1 20209:1 20234:1 20258:1 20264:1 20268:24 20271:1 20272:1 20293:2 20304:1 20309:1 20326:1 20328:3287 20336:1 20365:1 20372:1 20378:5 20407:1 20411:1 20434:1 20439:1 20447:2 20448:1 20468:1 20471:2 20497:4 20499:1 20503:1 20521:1 20526:1 20529:1 20530:1 20531:1 20551:1 20557:2 20565:5 20569:1 20576:1 20578:5 20582:1 20584:1 20585:2 20596:2 20603:2 20611:2 20647:1 20662:1 20665:1 20669:3 20741:1 20743:1 20772:1 20781:1 20784:1 20796:1 20802:1 20806:1 20820:1 20825:1 20828:1 20856:1 20877:1 20915:1 20977:6 20985:1 21000:1 21007:1 21019:1 21021:8 21023:5 21027:1 21044:1 21049:1 21050:3 21072:1 21078:1 21079:3 21092:1 21095:1 21097:2 21101:1 21117:1 21132:1 21140:1 21145:1 21146:2 21147:1 21156:3 21158:1 21160:7 21192:2 21216:1 21226:1 21237:4 21262:6 21276:1 21279:1 21291:1 21298:12 21299:2 21308:1 21309:1 21320:1 21326:2 21350:1 21359:1 21361:1 21378:23 21391:1 21398:6 21399:1 21417:1 21425:4 21436:2 21442:2 21446:1 21461:1 21464:1 21476:2 21486:1 21511:2 21523:3 21524:3 21542:1 21547:1 21551:6 21573:1 21580:1 21590:2 21597:5 21598:2 21603:1 21617:1 21630:1 21635:2 21639:1 21646:1 21652:2 21666:1 21667:1 21676:1 21747:1 21753:1 21755:4 21761:1 21777:2 21798:2 21832:1 21835:2 21862:1 21863:1 21868:1 21871:1 21875:3 21879:1 21888:1 21894:1 21905:1 21926:3 21936:1 21971:2 21972:1 21978:1 21993:1 21996:1 22001:1 22010:1 22021:1 22036:1 22045:11 22062:1 22064:1 22066:2 22068:1 22084:10 22116:1 22117:1 22122:1 22149:1 22159:1 22235:2 22240:1 22272:3 22284:1 22287:1 22288:2 22299:1 22307:1 22316:1 22325:4 22337:1 22339:3 22345:7 22367:1 22381:2 22387:2 22403:1 22411:1 22446:2 22450:4 22456:2 22462:1 22476:1 22482:4 22507:1 22512:1 22513:1 22533:2 22538:1 22548:1 22577:1 22585:1 22589:1 22592:1 22604:1 22617:2 22622:1 22630:1 22635:2 22636:1 22643:2 22655:7 22657:1 22659:1 22661:1 22674:11 22675:2 22703:1 22704:1 22716:1 22724:1 22736:1 22747:1 22784:1 22786:1 22792:1 22810:1 22812:1 22815:5 22818:1 22819:1 22827:2 22829:1 22838:1 22854:1 22868:1 22870:2 22873:1 22876:2 22881:1 22902:1 22904:2 22915:1 22939:1 22957:1 22987:1 22988:2 22991:1 22992:1 23010:1 23019:1 23026:1 23034:2 23037:2 23044:2 23058:1 23060:1 23078:1 23084:4 23112:1 23116:1 23129:1 23147:1 23168:2 23169:1 23178:1 23201:1 23233:1 23242:1 23245:1 23248:1 23256:1 23257:1 23261:2 23276:3 23280:1 23303:1 23307:1 23317:1 23322:1 23325:2 23331:1 23346:2 23349:1 23361:1 23363:3 23368:1 23377:1 23380:1 23382:1 23392:1 23399:1 23404:1 23422:1 23455:1 23458:2 23462:3 23476:2 23478:1 23496:2 23511:2 23513:1 23519:3 23535:2 23543:2 23554:1 23556:1 23564:2 23566:1 23571:1 23572:4 23573:2 23583:1 23590:4 23596:1 23615:1 23616:1 23657:1 23662:1 23708:2 23723:2 23737:1 23744:1 23745:1 23763:1 23803:1 23811:2 23826:2 23836:1 23863:7 23866:1 23870:1 23871:1 23874:1 23878:1 23880:2 23893:2 23899:1 23912:1 23921:9 23941:1 23953:1 23954:1 23958:1 23965:1 23973:1 23979:1 23981:1 23988:1 24008:1 24009:2 24023:1 24026:2 24032:1 24038:1 24039:4 24055:1 24057:1 24063:1 24078:1 24101:1 24115:2 24119:1 24144:1 24148:1 24153:1 24159:1 24163:2 24164:2 24172:1 24174:1 24181:4 24183:3 24187:1 24190:1 24198:1 24225:1 24232:3 24233:2 24236:1 24254:1 24262:1 24263:2 24272:1 24273:2 24275:1 24276:3 24279:1 24283:1 24285:2 24301:1 24307:1 24311:3 24316:2 24319:1 24322:1 24327:1 24332:2 24358:1 24360:1 24372:2 24382:1 24383:3 24386:3 24400:1 24402:2 24407:2 24436:1 24438:1 24450:2 24455:2 24475:1 24476:1 24486:1 24487:1 24494:1 24495:3 24518:1 24534:1 24537:1 24554:1 24568:3 24572:1 24573:1 24583:2 24586:4 24590:6 24597:1 24603:1 24613:2 24618:1 24620:2 24621:1 24627:1 24633:1 24635:1 24651:1 24657:1 24663:1 24669:1 24676:2 24680:1 24693:1 24701:5 24708:1 24716:1 24719:1 24727:2 24735:1 24737:1 24770:1 24772:1 24773:2 24777:2 24782:1 24786:3 24787:1 24795:2 24805:1 24808:1 24820:1 24839:1 24862:2 24863:1 24876:2 24935:1 24945:1 24976:1 24981:1 24988:1 25007:1 25019:2 25032:1 25033:1 25044:1 25047:1 25056:14 25061:1 25071:1 25091:7 25097:1 25105:1 25108:1 25115:6 25123:1 25142:1 25148:3 25173:1 25174:1 25191:3 25192:1 25193:1 25200:1 25202:1 25214:1 25215:1 25217:1 25246:1 25253:1 25266:1 25267:1 25268:1 25271:1 25272:1 25275:2 25280:3 25301:1 25302:1 25308:1 25314:1 25323:2 25330:1 25332:8 25340:1 25352:4 25353:1 25361:2 25364:2 25370:1 25376:1 25391:1 25392:1 25398:2 25410:1 25413:1 25421:5 25422:1 25435:1 25442:1 25450:1 25470:1 25472:2 25476:1 25490:1 25520:2 25525:2 25545:1 25546:1 25556:1 25572:1 25577:1 25593:1 25619:1 25630:3 25655:1 25674:8 25689:1 25694:1 25704:1 25709:3 25734:1 25736:1 25749:1 25766:2 25772:1 25781:1 25788:1 25793:1 25798:4 25799:1 25802:2 25803:1 25808:1 25835:1 25844:2 25891:1 25896:1 25907:1 25919:2 25924:1 25927:1 25928:1 25937:1 25940:1 25961:1 25970:1 25995:1 26000:1 26008:1 26011:1 26012:1 26014:1 26017:1 26058:1 26065:2 26066:1 26089:1 26092:1 26094:1 26103:1 26107:1 26123:1 26125:3 26128:1 26133:1 26135:2 26136:1 26139:2 26143:1 26147:2 26154:1 26155:1 26158:1 26164:3 26169:1 26178:3 26192:1 26193:1 26208:2 26213:2 26225:1 26235:2 26248:5 26258:1 26262:1 26263:1 26268:3 26271:1 26273:1 26276:1 26280:1 26281:1 26282:1 26288:2 26293:1 26305:5 26315:1 26339:3 26355:1 26362:2 26364:1 26385:2 26388:1 26389:3 26404:1 26419:1 26420:1 26428:1 26435:1 26438:1 26444:2 26447:1 26463:1 26466:1 26491:2 26552:1 26553:1 26560:1 26563:2 26569:1 26589:1 26592:1 26594:1 26595:1 26604:1 26607:1 26608:2 26611:4 26618:1 26622:1 26630:1 26631:1 26632:1 26642:1 26653:4 26660:1 26690:1 26692:1 26694:1 26696:1 26716:1 26727:1 26744:1 26746:1 26749:2 26755:1 26757:1 26762:2 26769:1 26781:8 26809:3 26819:1 26821:2 26863:1 26894:1 26901:2 26902:1 26904:3 26915:1 26916:2 26929:1 26931:1 26943:1 26950:1 27033:1 27034:1 27037:2 27039:1 27046:1 27052:2 27075:3 27088:3 27093:2 27095:1 27097:1 27104:2 27113:1 27125:1 27138:1 27145:1 27163:1 27164:1 27177:1 27202:1 27207:1 27209:4 27210:1 27216:1 27230:2 27232:1 27247:1 27253:1 27264:1 27273:1 27297:3 27302:2 27308:3 27315:1 27326:2 27329:1 27338:1 27352:3 27362:2 27375:1 27382:1 27390:1 27400:1 27402:1 27416:1 27418:1 27422:1 27426:11 27427:1 27429:1 27438:1 27441:1 27466:2 27468:1 27472:2 27488:1 27495:1 27515:2 27526:1 27546:1 27559:1 27574:1 27575:2 27582:2 27583:1 27588:2 27604:5 27605:1 27606:2 27614:1 27620:2 27639:1 27662:10 27667:3 27685:2 27690:2 27693:2 27718:2 27726:1 27737:5 27761:3 27768:1 27785:1 27788:1 27792:1 27799:1 27817:5 27822:1 27839:2 27851:7 27892:1 27906:1 27945:3 27950:1 27969:2 27979:1 27995:2 27999:2 28000:1 28005:1 28025:1 28040:1 28046:1 28056:1 28066:1 28072:2 28074:1 28084:2 28094:1 28119:1 28122:2 28128:1 28139:1 28149:1 28159:1 28160:1 28189:1 28193:1 28197:1 28204:3 28207:1 28217:2 28256:1 28259:2 28262:2 28266:1 28275:2 28301:1 28307:1 28398:1 28400:1 28403:1 28406:1 28412:1 28419:1 28428:3 28459:1 28474:1 28488:1 28499:1 28502:1 28504:1 28505:1 28527:3 28540:9 28555:1 28561:2 28575:1 28621:1 28626:1 28630:1 28642:1 28644:1 28645:1 28658:2 28715:1 28716:1 28723:2 28728:3 28744:1 28754:2 28755:7 28764:1 28765:1 28778:9 28783:2 28786:1 28791:2 28792:1 28800:1 28809:1 28823:1 28843:2 28856:1 28858:9 28868:1 28876:1 28877:3 28883:1 28900:1 28911:1 28916:1 28929:1 28933:24 28947:1 28960:1 28961:1 28977:1 28984:2 29024:1 29034:2 29039:1 29043:1 29052:2 29063:1 29071:1 29075:1 29078:1 29090:1 29091:1 29105:1 29113:1 29126:1 29146:1 29154:1 29161:1 29182:1 29193:1 29207:1 29221:3 29231:1 29239:5 29240:1 29268:1 29272:3 29292:1 29314:1 29339:3 29348:1 29349:2 29357:1 29387:2 29396:2 29404:2 29413:1 29422:1 29424:2 29429:1 29430:2 29431:3 29444:1 29457:5 29465:1 29471:8 29490:1 29495:2 29504:1 29519:1 29535:1 29537:1 29543:2 29546:1 29551:1 29557:3 29560:1 29581:1 29597:1 29602:1 29627:1 29650:1 29651:1 29652:2 29654:1 29664:1 29675:1 29684:1 29701:1 29708:1 29721:1 29727:1 29730:1 29742:1 29748:1 29749:1 29759:1 29761:2 29762:1 29763:1 29764:1 29770:1 29775:1 29795:4 29798:1 29810:1 29816:9 29855:1 29865:1 29866:2 29890:1 29901:1 29902:1 29930:1 29931:1 29932:1 29935:3 29977:1 29982:1 29988:1 29990:1 29998:1 30003:1 30013:1 30036:1 30047:1 30056:2 30084:3 30088:1 30113:3 30123:1 30137:16 30138:1 30144:1 30145:1 30157:1 30162:3 30173:3 30180:2 30183:1 30184:2 30186:1 30187:1 30225:3 30226:1 30239:8 30241:11 30253:1 30263:1 30264:2 30277:2 30279:1 30280:1 30284:1 30294:2 30310:1 30312:1 30330:3 30334:1 30335:2 30339:8 30352:1 30362:1 30384:1 30385:1 30394:1 30396:6 30438:1 30447:2 30449:2 30459:1 30462:4 30466:1 30468:1 30508:1 30511:1 30522:1 30538:1 30541:2 30545:1 30546:1 30549:1 30551:1 30561:2 30573:1 30580:1 30586:1 30592:1 30607:1 30620:1 30621:3 30637:1 30646:1 30653:1 30654:1 30678:1 30679:1 30680:2 30682:2 30686:2 30705:1 30715:1 30716:2 30725:2 30760:3 30787:2 30795:2 30815:4 30823:2 30824:1 30854:3 30868:1 30871:1 30872:1 30897:2 30898:1 30901:1 30902:1 30903:1 30906:1 30911:1 30927:1 30950:2 30952:1 30962:1 30975:1 30998:1 31028:1 31032:1 31034:1 31037:2 31051:1 31060:1 31076:1 31089:4 31095:1 31098:4 31105:2 31115:1 31128:1 31138:1 31156:1 31168:1 31184:2 31210:1 31215:1 31233:4 31258:1 31280:1 31281:1 31293:1 31308:1 31312:1 31315:1 31316:1 31331:1 31341:1 31342:3 31353:1 31355:3 31359:1 31377:1 31378:1 31383:1 31390:1 31403:1 31407:3 31421:1 31427:2 31432:1 31446:1 31447:2 31462:1 31478:2 31481:1 31489:5 31494:1 31495:1 31497:1 31505:7 31507:1 31508:1 31510:1 31514:1 31542:1 31548:1 31550:1 31559:1 31567:1 31615:2 18 6:1 8:1 13:1 14:1 18:2 21:1 34:1 37:1 55:1 65:1 69:1 75:1 80:1 85:1 123:2 142:1 188:4 210:2 214:1 216:2 219:1 232:1 237:2 266:1 269:2 273:2 283:3 302:1 323:4 339:4 352:1 358:1 359:1 372:7 374:1 383:1 384:1 389:1 394:1 395:1 410:1 448:1 449:3 452:1 454:1 462:1 464:1 466:1 469:2 477:1 490:1 501:1 538:1 548:2 552:1 559:1 570:1 572:1 595:3 599:1 600:4 603:3 607:1 618:1 628:4 632:1 643:1 646:2 656:4 664:1 683:1 694:2 704:7 715:1 716:1 735:1 748:3 756:2 759:1 767:3 768:1 781:1 782:1 790:1 795:1 802:1 846:1 866:1 881:1 888:4 890:3 897:1 898:3 909:1 921:1 923:2 924:3 926:2 937:2 949:1 950:3 960:2 964:1 970:1 973:2 980:1 992:1 1011:1 1014:4 1050:2 1082:1 1130:1 1132:3 1135:2 1148:1 1152:1 1167:1 1181:1 1202:1 1210:1 1228:1 1248:4 1270:2 1272:2 1279:2 1280:2 1281:1 1283:2 1295:1 1316:3 1332:1 1342:1 1343:1 1351:2 1353:1 1371:2 1424:1 1434:1 1437:1 1444:2 1447:1 1453:2 1454:2 1461:1 1465:1 1470:1 1487:2 1500:3 1501:1 1506:1 1518:1 1520:1 1522:1 1554:1 1556:2 1558:1 1562:1 1564:1 1582:1 1595:3 1604:1 1606:1 1615:2 1619:1 1633:4 1634:1 1636:1 1637:3 1647:4 1648:1 1652:1 1662:1 1664:1 1689:1 1706:2 1708:2 1720:2 1723:1 1731:1 1749:1 1751:2 1752:1 1785:1 1789:3 1824:1 1831:1 1842:4 1849:1 1866:2 1885:1 1960:1 1963:1 1966:1 1979:2 1981:2 1985:1 1990:2 1991:1 1993:5 2014:2 2043:2 2047:1 2061:1 2073:1 2079:1 2085:2 2091:1 2093:2 2117:1 2126:1 2131:2 2133:3 2137:1 2140:17 2143:2 2144:1 2147:1 2152:1 2169:1 2183:1 2187:1 2192:1 2212:1 2217:2 2225:1 2242:2 2253:2 2254:1 2263:1 2273:1 2290:1 2300:3 2303:1 2310:1 2312:6 2314:1 2315:1 2318:1 2319:7 2321:1 2322:1 2324:1 2326:2 2328:1 2329:5 2336:4 2342:4 2344:2 2346:2 2361:2 2362:1 2363:1 2365:1 2369:1 2371:1 2374:1 2375:3 2377:2 2381:2 2382:1 2388:1 2393:3 2396:2 2397:4 2403:2 2407:1 2410:2 2412:1 2414:3 2416:1 2423:3 2432:26 2442:1 2446:1 2450:3 2456:1 2506:4 2517:1 2521:1 2528:1 2541:1 2543:1 2545:1 2547:1 2555:1 2557:4 2565:1 2580:1 2608:1 2616:1 2619:1 2621:2 2645:1 2649:1 2653:1 2662:1 2687:2 2699:6 2701:1 2717:1 2718:1 2720:2 2728:3 2737:1 2754:2 2769:1 2771:1 2781:1 2793:5 2820:2 2827:3 2828:1 2836:1 2840:1 2847:1 2850:2 2873:1 2880:1 2883:3 2884:1 2889:1 2895:1 2896:1 2913:2 2925:1 2931:1 2949:1 2952:6 2956:1 2964:2 2974:1 2975:1 2988:2 3015:2 3040:1 3050:2 3059:1 3063:11 3066:3 3068:1 3088:1 3107:3 3116:1 3119:21 3126:1 3127:3 3129:1 3133:1 3143:2 3148:3 3156:1 3164:3 3182:1 3184:5 3218:1 3221:1 3226:1 3230:2 3317:2 3329:1 3330:6 3388:4 3401:1 3439:1 3442:1 3447:2 3448:3 3467:1 3479:1 3487:1 3489:1 3490:1 3494:3 3495:1 3500:2 3525:1 3528:4 3532:1 3537:2 3545:1 3563:4 3573:1 3581:1 3588:1 3595:1 3600:1 3619:1 3661:1 3719:1 3728:1 3732:1 3736:4 3751:2 3791:1 3798:1 3808:1 3820:3 3825:1 3828:1 3838:1 3860:1 3861:1 3872:1 3900:1 3928:2 3948:1 3949:3 3952:3 3973:2 3982:1 3986:1 3997:1 4010:1 4019:1 4020:4 4025:3 4056:1 4058:2 4061:1 4063:1 4064:9 4065:5 4066:1 4077:1 4078:1 4086:2 4089:2 4096:1 4099:3 4115:5 4116:1 4123:1 4128:1 4129:2 4133:5 4166:1 4167:1 4173:1 4176:1 4181:1 4185:3 4186:1 4197:1 4202:1 4223:1 4232:1 4242:1 4248:1 4255:2 4260:1 4280:1 4281:2 4289:1 4301:1 4307:2 4313:2 4328:2 4348:1 4354:2 4371:1 4376:1 4390:1 4398:1 4410:1 4419:3 4422:3 4431:4 4437:1 4456:1 4467:2 4492:1 4496:1 4505:1 4525:1 4526:1 4531:1 4540:2 4549:1 4560:1 4600:1 4609:2 4631:2 4634:1 4641:1 4661:1 4663:1 4668:1 4677:4 4709:1 4711:1 4712:1 4715:1 4717:2 4754:2 4757:1 4779:1 4789:5 4793:1 4798:1 4803:1 4822:1 4848:1 4851:2 4868:1 4872:1 4890:1 4896:1 4917:1 4920:1 4921:2 4922:3 4928:3 4933:1 4946:4 4968:1 4969:3 4983:1 4992:1 5002:1 5009:1 5012:5 5024:9 5031:1 5039:1 5041:1 5046:1 5080:1 5082:1 5098:3 5104:1 5108:2 5116:2 5119:1 5121:1 5136:1 5154:1 5155:1 5159:1 5204:1 5212:2 5226:1 5229:2 5245:1 5249:1 5268:3 5272:1 5278:1 5282:1 5300:1 5310:18 5314:2 5315:1 5325:1 5335:1 5365:1 5370:1 5380:1 5423:1 5440:1 5441:2 5444:1 5455:1 5474:2 5478:1 5481:1 5526:2 5531:1 5532:1 5545:2 5546:1 5562:1 5567:1 5571:1 5575:1 5581:3 5582:1 5622:1 5648:2 5651:4 5683:1 5699:1 5703:2 5719:3 5743:1 5746:3 5759:2 5764:1 5779:1 5783:1 5785:1 5790:2 5795:1 5799:1 5800:1 5811:1 5817:1 5831:1 5834:1 5854:1 5859:9 5863:2 5882:1 5887:1 5894:1 5900:1 5912:1 5919:2 5921:2 5925:5 5942:2 5956:1 5975:1 5992:1 6000:1 6006:1 6008:1 6014:1 6020:2 6027:1 6029:1 6049:3 6053:2 6057:1 6087:1 6090:1 6110:2 6127:1 6128:1 6157:1 6195:3 6227:2 6229:1 6232:4 6242:1 6245:1 6262:1 6266:1 6269:1 6275:1 6294:1 6297:1 6334:1 6340:1 6341:4 6363:2 6378:2 6379:3 6397:1 6402:1 6409:1 6416:1 6442:2 6444:3 6445:3 6457:1 6471:1 6472:1 6473:1 6480:1 6492:1 6497:1 6500:1 6532:1 6555:2 6557:1 6571:1 6575:1 6590:2 6603:4 6612:1 6613:9 6630:3 6645:1 6654:1 6672:2 6696:1 6698:3 6699:1 6721:1 6763:7 6815:7 6826:2 6827:2 6828:1 6829:1 6832:7 6835:1 6840:1 6842:1 6849:1 6851:1 6869:1 6875:1 6883:1 6894:6 6916:3 6917:1 6923:1 6926:1 6931:1 6932:2 6935:1 6938:1 6939:1 6941:1 6942:2 6945:1 6969:1 6971:1 7005:1 7065:1 7071:1 7081:1 7084:3 7090:2 7093:3 7113:9 7118:1 7127:1 7128:1 7129:1 7169:1 7180:1 7197:2 7210:1 7230:1 7234:1 7239:9 7240:1 7268:1 7276:1 7280:1 7296:1 7302:13 7303:1 7319:2 7333:1 7345:1 7363:1 7369:1 7379:1 7380:2 7388:1 7401:2 7402:1 7419:1 7421:2 7428:3 7429:2 7434:3 7439:1 7460:1 7463:1 7468:1 7516:1 7529:2 7532:1 7550:2 7560:2 7561:1 7575:1 7576:1 7584:1 7593:1 7643:2 7651:1 7658:1 7694:1 7706:1 7742:1 7750:6 7751:1 7762:1 7763:1 7764:2 7779:1 7781:1 7814:2 7818:1 7823:1 7849:1 7850:1 7865:1 7870:2 7901:2 7906:3 7924:1 7936:1 7944:1 7945:5 7950:1 7969:1 7971:1 7978:3 7979:1 7996:1 8006:1 8030:2 8033:2 8055:1 8058:17 8068:3 8087:1 8088:2 8104:1 8105:1 8126:1 8130:2 8161:1 8175:2 8179:1 8185:1 8238:1 8241:4 8258:2 8289:2 8294:1 8307:4 8309:1 8327:1 8328:1 8329:4 8332:2 8333:5 8341:1 8351:4 8352:2 8359:6 8360:2 8362:1 8364:1 8366:2 8372:1 8373:1 8377:1 8378:1 8386:24 8389:1 8410:22 8413:1 8419:1 8438:1 8441:1 8452:1 8460:1 8483:1 8513:1 8517:2 8540:1 8544:1 8546:1 8560:1 8569:1 8592:3 8595:3 8623:1 8624:1 8648:1 8682:1 8705:3 8710:3 8712:1 8761:1 8766:3 8781:1 8819:2 8823:1 8828:1 8829:1 8839:1 8841:1 8860:1 8868:1 8878:1 8879:1 8883:1 8889:2 8921:17 8950:3 8964:1 8976:16 8982:11 8983:1 8984:3 8985:1 8986:2 9007:1 9016:2 9020:1 9021:3 9059:1 9073:1 9074:3 9079:1 9100:1 9117:1 9120:1 9134:1 9138:4 9154:1 9178:1 9182:1 9183:17 9191:2 9208:1 9220:9 9223:1 9229:3 9235:1 9250:1 9283:2 9285:2 9286:1 9290:2 9296:1 9297:1 9299:1 9300:1 9301:2 9302:1 9303:1 9304:1 9312:1 9315:1 9317:2 9332:1 9354:1 9355:1 9380:2 9381:6 9390:1 9395:3 9402:1 9403:1 9406:1 9416:1 9417:1 9451:2 9476:1 9490:1 9491:2 9508:1 9514:2 9516:1 9520:1 9561:1 9570:3 9571:1 9593:1 9597:2 9610:1 9648:1 9652:2 9658:4 9675:1 9685:2 9691:1 9701:1 9713:2 9715:1 9724:1 9725:2 9734:3 9740:1 9743:2 9781:1 9785:1 9789:1 9792:1 9799:1 9801:1 9812:1 9815:2 9831:1 9844:2 9848:1 9850:1 9856:1 9859:1 9893:1 9907:1 9910:2 9911:1 9920:1 9932:2 9934:1 9957:2 9961:1 9979:1 9985:1 10048:2 10062:1 10086:1 10095:2 10116:3 10135:1 10162:1 10178:1 10185:1 10206:1 10208:1 10211:1 10214:1 10251:4 10255:1 10257:1 10273:1 10283:2 10307:1 10342:1 10351:1 10372:3 10374:1 10377:8 10381:33 10383:1 10385:5 10387:1 10392:2 10399:3 10402:1 10406:1 10416:7 10420:1 10423:1 10430:5 10434:2 10450:4 10452:1 10491:1 10492:3 10503:1 10508:1 10510:2 10516:2 10532:1 10535:1 10539:1 10545:1 10549:1 10552:1 10569:1 10608:1 10621:3 10622:1 10649:1 10654:1 10655:1 10659:2 10678:4 10705:1 10716:1 10751:1 10757:2 10759:1 10773:2 10776:1 10777:3 10784:1 10793:3 10800:3 10808:1 10822:1 10827:1 10828:3 10830:1 10836:1 10844:1 10857:3 10860:26 10886:1 10922:2 10951:4 10971:2 10988:1 10989:1 11006:1 11034:1 11036:2 11094:1 11113:1 11114:2 11126:1 11130:2 11139:1 11141:1 11146:2 11178:1 11183:3 11185:1 11189:2 11203:1 11209:1 11221:1 11247:1 11250:1 11257:1 11274:1 11277:1 11289:1 11290:1 11295:2 11304:2 11306:1 11313:6 11323:1 11362:2 11382:1 11383:1 11388:1 11404:3 11408:4 11420:1 11451:1 11453:2 11467:17 11473:2 11484:1 11486:1 11489:1 11498:1 11503:1 11514:1 11515:6 11520:1 11530:1 11553:1 11557:2 11574:4 11585:1 11591:3 11598:1 11608:2 11634:2 11654:1 11655:1 11661:2 11663:1 11693:1 11703:1 11706:1 11710:9 11714:1 11728:1 11730:1 11742:2 11761:1 11766:1 11785:1 11789:1 11798:1 11820:1 11840:3 11854:1 11860:5 11863:3 11864:1 11866:1 11879:1 11883:1 11886:4 11887:1 11888:2 11893:2 11896:1 11900:1 11910:1 11929:1 11943:1 12001:1 12004:1 12013:1 12025:1 12026:1 12027:1 12042:4 12045:1 12048:1 12053:1 12071:1 12072:1 12088:1 12094:1 12097:1 12098:1 12123:1 12135:1 12145:1 12167:1 12174:2 12186:1 12188:1 12191:1 12200:1 12213:1 12214:3 12220:2 12225:1 12227:1 12228:1 12235:1 12239:1 12258:1 12260:1 12266:1 12289:1 12292:1 12296:1 12319:1 12327:1 12334:1 12351:1 12373:2 12399:1 12402:2 12419:1 12420:3 12424:1 12425:1 12427:1 12452:1 12463:1 12473:1 12475:1 12476:1 12489:1 12505:1 12530:1 12531:1 12536:3 12543:1 12551:4 12564:2 12571:1 12574:2 12576:2 12583:1 12595:2 12630:2 12646:4 12648:1 12653:1 12659:1 12660:1 12665:2 12676:1 12677:6 12680:2 12686:3 12704:1 12706:6 12716:2 12730:1 12735:1 12739:3 12745:1 12760:1 12774:2 12778:1 12787:1 12810:3 12811:3 12838:1 12884:1 12890:2 12924:1 12926:1 12970:1 12974:1 12983:3 12996:3 13000:1 13027:1 13034:1 13053:1 13055:2 13061:1 13062:1 13081:5 13086:1 13091:1 13098:1 13105:2 13139:1 13142:1 13166:1 13188:1 13191:1 13209:2 13226:2 13230:1 13232:2 13270:1 13276:1 13301:1 13319:2 13329:1 13337:2 13351:9 13363:1 13364:1 13369:1 13387:2 13392:2 13401:1 13405:1 13416:1 13418:1 13457:1 13478:1 13506:1 13537:1 13544:2 13545:2 13550:1 13595:1 13604:3 13616:1 13637:1 13640:2 13644:1 13674:2 13698:1 13703:1 13705:1 13736:11 13750:1 13754:1 13762:11 13792:1 13794:2 13797:1 13820:1 13825:3 13834:1 13835:1 13845:1 13855:1 13858:1 13861:1 13907:1 13922:1 13924:2 13936:5 13937:2 13940:1 13941:2 13980:3 13987:1 13989:1 13990:2 13993:1 14001:12 14042:1 14052:1 14061:8 14082:1 14086:1 14095:1 14103:1 14141:1 14157:1 14204:1 14218:1 14232:1 14236:1 14250:2 14255:3 14257:1 14274:2 14293:1 14295:1 14301:4 14311:3 14313:2 14314:1 14324:1 14325:1 14326:1 14328:2 14330:1 14355:1 14383:1 14393:1 14395:1 14404:1 14411:1 14417:1 14426:3 14450:2 14460:1 14467:2 14474:1 14482:2 14483:1 14493:1 14514:1 14517:1 14520:1 14523:1 14524:1 14526:1 14544:1 14545:1 14549:1 14552:2 14557:5 14563:1 14582:1 14584:1 14613:1 14626:1 14638:1 14661:1 14662:5 14670:1 14677:4 14713:2 14717:2 14720:1 14727:1 14732:2 14736:1 14744:4 14749:1 14752:2 14757:1 14760:1 14799:1 14804:4 14813:1 14828:1 14837:1 14847:2 14859:2 14883:1 14890:2 14900:1 14913:1 14914:1 14915:7 14936:3 14946:1 14965:1 14972:2 14975:2 14987:1 14990:1 15026:3 15035:2 15059:1 15072:1 15078:1 15114:4 15144:4 15154:2 15195:1 15210:3 15213:2 15219:1 15233:2 15252:2 15256:1 15273:1 15274:1 15285:1 15287:1 15307:1 15338:1 15344:1 15375:1 15400:1 15401:1 15418:1 15433:1 15438:9 15448:1 15455:1 15503:1 15510:1 15512:1 15528:1 15530:3 15535:2 15541:1 15545:1 15551:6 15553:1 15558:1 15585:2 15604:26 15606:2 15608:1 15641:1 15659:4 15660:1 15663:1 15710:5 15715:1 15737:2 15744:1 15763:1 15764:1 15791:1 15809:1 15816:1 15822:1 15828:1 15843:1 15852:1 15871:1 15879:1 15905:1 15925:1 15934:1 15951:1 15975:1 15977:1 15980:1 15992:2 15994:1 15997:1 15999:1 16004:1 16006:3 16011:1 16019:2 16026:3 16046:1 16064:3 16090:1 16100:1 16121:1 16130:1 16132:1 16153:1 16156:1 16158:2 16161:1 16162:1 16165:1 16169:1 16175:1 16195:1 16196:3 16199:2 16201:4 16222:1 16224:1 16227:3 16236:1 16255:2 16256:6 16259:2 16274:1 16288:1 16318:1 16330:1 16332:1 16335:1 16351:1 16359:1 16364:1 16375:12 16409:1 16446:2 16450:1 16451:1 16460:1 16461:1 16469:4 16481:1 16491:1 16506:1 16524:1 16539:4 16559:1 16589:3 16594:4 16605:1 16612:1 16639:1 16642:1 16645:1 16663:1 16697:2 16699:5 16702:2 16709:6 16712:1 16722:2 16730:1 16732:1 16749:1 16750:1 16763:1 16766:1 16772:1 16780:3 16804:18 16806:2 16817:1 16824:1 16825:1 16838:2 16844:1 16869:1 16875:1 16890:1 16913:7 16919:1 16952:1 16958:1 16963:2 16968:1 16972:1 16974:1 16981:1 16982:1 16995:1 17004:1 17038:3 17045:1 17052:1 17058:3 17070:1 17074:1 17075:1 17098:4 17107:1 17127:1 17145:1 17161:1 17163:4 17164:4 17196:1 17200:2 17202:1 17204:2 17214:1 17223:1 17227:2 17236:1 17240:1 17248:1 17256:1 17267:2 17290:1 17291:1 17295:1 17302:2 17314:1 17323:1 17326:2 17332:3 17338:1 17345:2 17361:2 17373:1 17389:1 17394:1 17413:3 17428:1 17432:1 17461:8 17482:1 17488:1 17490:3 17495:1 17505:1 17509:1 17513:1 17514:4 17521:3 17522:1 17556:2 17559:1 17561:1 17564:1 17572:1 17574:2 17584:1 17588:2 17590:2 17591:1 17594:2 17599:1 17603:1 17604:2 17610:2 17613:1 17615:1 17658:1 17671:1 17678:2 17679:1 17680:1 17700:1 17717:1 17718:1 17734:1 17792:5 17797:1 17802:1 17828:1 17834:1 17835:2 17836:1 17848:3 17867:1 17882:1 17932:1 17933:1 17944:1 17958:1 17991:2 18019:1 18028:1 18045:1 18046:1 18068:1 18076:1 18108:3 18110:3 18114:2 18119:1 18120:6 18143:1 18167:1 18173:1 18174:10 18178:1 18195:1 18218:1 18223:1 18247:1 18260:1 18286:3 18296:1 18334:1 18344:1 18355:1 18356:1 18366:1 18369:1 18373:2 18374:1 18383:1 18389:2 18410:1 18414:1 18415:1 18421:1 18424:3 18425:2 18427:3 18430:1 18435:18 18438:6 18452:6 18457:2 18465:2 18469:1 18470:1 18472:2 18479:4 18482:1 18488:2 18489:1 18515:1 18540:1 18571:1 18579:1 18615:3 18616:1 18632:1 18635:2 18639:2 18643:1 18647:1 18648:2 18651:1 18661:1 18662:1 18682:1 18699:1 18713:1 18728:2 18734:1 18743:1 18746:4 18752:4 18759:1 18783:2 18789:3 18793:1 18797:1 18809:1 18817:1 18823:1 18833:1 18841:1 18879:1 18882:2 18885:1 18910:1 18911:1 18918:1 18928:1 18934:2 18951:3 18964:2 18974:5 18984:2 18988:3 19003:2 19004:1 19008:1 19013:1 19019:1 19021:3 19026:1 19030:1 19035:1 19036:1 19054:3 19057:3 19065:1 19066:1 19072:2 19077:4 19087:1 19113:2 19114:1 19118:4 19124:1 19125:1 19130:1 19132:2 19138:1 19155:2 19176:1 19182:1 19217:1 19226:1 19234:1 19242:1 19256:1 19266:2 19284:3 19287:1 19288:1 19291:1 19297:2 19341:1 19352:2 19372:1 19387:1 19390:1 19399:1 19401:3 19414:1 19418:2 19428:1 19443:1 19446:5 19450:1 19460:1 19472:3 19504:6 19509:1 19511:7 19516:5 19521:1 19522:1 19523:1 19537:1 19557:1 19558:4 19571:4 19589:1 19598:1 19636:1 19648:1 19664:1 19670:1 19671:3 19676:1 19677:1 19679:1 19706:1 19757:2 19783:2 19802:8 19812:1 19829:1 19831:1 19847:1 19875:1 19879:1 19880:1 19883:1 19906:2 19908:6 19916:1 19925:1 19959:4 19980:26 20023:1 20029:1 20034:2 20070:2 20083:3 20110:1 20129:5 20131:1 20174:2 20179:1 20209:1 20234:1 20258:1 20264:1 20268:26 20271:1 20272:1 20293:2 20304:1 20309:1 20326:1 20328:3351 20336:1 20365:1 20372:1 20378:5 20407:1 20411:1 20434:1 20439:1 20447:3 20448:1 20468:1 20471:2 20497:4 20499:1 20503:1 20521:1 20526:1 20529:1 20530:1 20531:1 20551:1 20557:2 20565:5 20569:1 20572:1 20576:1 20578:5 20582:1 20584:1 20585:2 20596:2 20603:2 20611:2 20647:1 20662:1 20665:1 20669:3 20741:1 20743:1 20772:1 20781:1 20784:1 20796:1 20802:1 20806:1 20820:1 20825:1 20828:1 20856:1 20877:1 20915:1 20977:6 20985:1 21000:1 21007:1 21019:1 21021:8 21023:5 21027:1 21044:1 21049:1 21050:3 21072:1 21078:1 21079:3 21092:1 21095:1 21097:2 21101:2 21117:1 21132:1 21140:1 21145:1 21146:2 21147:1 21156:3 21158:1 21160:7 21192:2 21216:1 21226:1 21237:4 21262:6 21276:1 21279:1 21291:1 21298:12 21299:2 21308:1 21309:1 21320:1 21326:2 21350:1 21359:1 21361:1 21378:24 21391:1 21398:7 21399:1 21417:1 21425:4 21436:2 21442:2 21446:1 21461:1 21464:1 21476:2 21486:1 21511:2 21523:3 21524:3 21542:1 21547:1 21551:6 21572:1 21573:1 21580:1 21590:2 21597:5 21598:2 21603:1 21617:1 21630:1 21635:2 21639:1 21646:1 21652:2 21666:1 21667:1 21676:1 21689:1 21747:1 21753:1 21755:4 21761:1 21777:2 21798:2 21832:1 21835:3 21862:1 21863:1 21868:1 21871:1 21875:3 21879:1 21888:1 21894:1 21905:1 21926:3 21936:1 21971:2 21972:1 21978:1 21993:1 21996:1 22001:1 22010:1 22021:1 22036:1 22045:11 22062:1 22064:1 22066:2 22068:1 22084:10 22116:1 22117:1 22122:1 22149:1 22159:1 22179:1 22235:2 22240:1 22272:3 22284:1 22287:1 22288:2 22299:1 22307:1 22316:1 22325:4 22337:1 22339:3 22345:7 22367:1 22381:2 22387:2 22403:1 22411:1 22446:2 22450:4 22456:2 22462:1 22476:1 22482:4 22507:1 22512:1 22513:1 22533:2 22538:1 22548:1 22549:1 22577:1 22585:1 22589:1 22592:1 22604:1 22617:2 22622:1 22630:1 22635:2 22636:1 22643:2 22655:7 22657:1 22659:1 22661:1 22674:11 22675:2 22703:1 22704:1 22716:1 22724:1 22736:1 22747:1 22784:1 22786:1 22792:1 22810:1 22812:1 22815:5 22818:1 22819:1 22827:2 22829:1 22838:1 22854:1 22868:1 22870:2 22873:1 22876:2 22881:1 22902:1 22904:2 22915:1 22939:1 22957:1 22987:1 22988:2 22991:1 22992:1 23010:1 23019:1 23026:1 23034:2 23037:2 23044:3 23058:1 23060:1 23078:1 23084:4 23112:1 23116:1 23129:1 23147:1 23168:2 23169:1 23178:1 23199:1 23201:1 23233:1 23242:1 23245:1 23248:1 23256:1 23257:1 23261:2 23276:3 23280:1 23303:1 23307:1 23317:1 23322:1 23325:2 23331:1 23346:2 23349:1 23361:1 23363:3 23368:1 23377:1 23380:1 23382:1 23392:1 23399:1 23404:1 23422:1 23429:1 23455:1 23458:2 23462:3 23476:2 23478:1 23496:2 23511:2 23513:1 23519:3 23535:2 23543:2 23554:1 23556:1 23564:2 23566:1 23571:1 23572:4 23573:2 23583:1 23590:4 23596:1 23615:1 23616:1 23657:1 23662:1 23708:2 23723:2 23737:1 23744:1 23745:1 23763:1 23803:1 23811:2 23826:2 23836:1 23863:7 23866:1 23870:1 23871:1 23874:1 23878:1 23880:2 23893:2 23899:1 23912:1 23921:9 23941:1 23953:1 23954:1 23958:1 23965:1 23973:1 23979:1 23981:1 23988:1 24008:1 24009:2 24023:1 24026:2 24032:1 24038:1 24039:4 24055:1 24057:1 24063:1 24073:1 24078:1 24101:1 24115:2 24119:1 24144:1 24148:1 24153:2 24159:1 24163:2 24164:2 24172:1 24174:1 24181:4 24183:3 24187:1 24190:1 24198:1 24225:1 24232:3 24233:2 24236:1 24254:1 24262:1 24263:2 24272:1 24273:2 24275:1 24276:3 24279:1 24283:1 24285:2 24301:1 24307:1 24311:3 24316:2 24319:1 24322:1 24327:1 24332:2 24358:1 24360:1 24372:2 24382:1 24383:3 24386:3 24400:1 24402:2 24407:2 24436:1 24438:1 24450:2 24455:2 24475:1 24476:1 24486:1 24487:1 24494:1 24495:3 24518:1 24534:1 24537:1 24554:1 24568:3 24572:1 24573:1 24583:2 24586:4 24590:6 24597:1 24603:1 24613:2 24618:1 24620:2 24621:1 24627:1 24633:1 24635:1 24651:1 24657:1 24663:1 24669:1 24676:2 24680:1 24693:1 24701:5 24708:1 24716:1 24719:1 24727:2 24735:1 24737:1 24770:1 24772:1 24773:2 24777:2 24782:1 24786:3 24787:1 24795:2 24805:1 24808:1 24820:1 24839:1 24862:2 24863:1 24876:2 24935:1 24945:1 24976:1 24981:1 24988:1 25007:1 25019:2 25032:1 25033:1 25044:1 25047:1 25056:14 25061:1 25071:1 25091:7 25097:1 25105:1 25108:2 25115:6 25123:1 25142:1 25148:3 25173:1 25174:1 25191:3 25192:1 25193:1 25200:1 25202:1 25214:1 25215:1 25217:1 25246:1 25253:1 25266:1 25267:1 25268:1 25271:1 25272:1 25275:2 25280:3 25301:1 25302:1 25308:1 25314:1 25323:2 25330:1 25332:8 25340:1 25352:4 25353:1 25361:2 25364:2 25370:1 25376:1 25391:1 25392:1 25398:2 25410:1 25413:1 25421:5 25422:1 25435:1 25442:1 25450:1 25470:1 25472:2 25476:1 25490:1 25520:2 25525:2 25545:1 25546:1 25556:1 25572:1 25577:1 25593:1 25619:1 25630:3 25655:1 25674:9 25689:1 25694:1 25704:1 25709:3 25734:1 25736:1 25749:1 25766:2 25772:1 25781:1 25788:1 25793:1 25798:4 25799:1 25802:2 25803:1 25808:1 25835:1 25844:2 25891:1 25896:1 25907:1 25919:2 25924:1 25927:1 25928:1 25937:1 25940:1 25961:1 25970:1 25995:1 26000:1 26008:1 26011:1 26012:1 26014:1 26017:1 26058:1 26065:2 26066:1 26089:1 26092:1 26094:1 26103:1 26107:2 26123:1 26125:3 26128:1 26130:1 26133:1 26135:2 26136:1 26139:2 26143:1 26147:2 26154:1 26155:1 26158:1 26164:3 26169:1 26178:3 26192:1 26193:1 26208:2 26213:2 26225:1 26235:2 26248:5 26258:1 26262:2 26263:1 26268:3 26271:1 26273:1 26276:1 26280:1 26281:1 26282:1 26288:2 26293:1 26305:5 26315:1 26339:3 26355:1 26362:3 26364:1 26385:2 26388:1 26389:3 26404:1 26419:1 26420:1 26428:1 26435:1 26438:1 26444:2 26447:1 26463:1 26466:1 26491:2 26552:1 26553:1 26560:1 26563:2 26569:1 26589:1 26592:1 26594:1 26595:1 26604:1 26607:1 26608:2 26611:4 26618:1 26622:1 26630:1 26631:1 26632:1 26642:1 26651:1 26653:4 26660:1 26690:1 26692:1 26694:1 26696:1 26707:1 26716:1 26727:1 26744:1 26746:1 26749:2 26755:1 26757:1 26762:2 26769:1 26781:8 26809:3 26819:1 26821:2 26863:1 26894:1 26901:2 26902:1 26904:3 26915:1 26916:2 26929:1 26931:1 26943:1 26950:1 27033:1 27034:1 27037:2 27039:1 27046:1 27052:2 27075:3 27088:3 27093:2 27095:1 27097:1 27104:2 27113:1 27125:1 27138:1 27145:1 27163:1 27164:1 27177:1 27202:1 27207:1 27209:4 27210:1 27216:1 27228:1 27230:2 27232:1 27247:1 27253:1 27264:1 27273:1 27297:3 27302:2 27308:3 27315:1 27326:2 27329:1 27338:1 27352:3 27362:2 27375:1 27382:1 27390:1 27400:1 27402:1 27416:1 27418:1 27422:1 27426:11 27427:1 27429:1 27438:1 27441:1 27466:2 27468:1 27472:2 27488:1 27495:1 27515:2 27526:1 27546:1 27559:1 27574:1 27575:2 27582:2 27583:1 27588:2 27604:5 27605:1 27606:2 27614:1 27620:2 27639:1 27662:10 27667:3 27685:2 27690:2 27693:2 27718:2 27726:1 27737:5 27761:3 27768:1 27785:1 27788:1 27792:1 27799:1 27817:6 27822:1 27839:2 27851:7 27892:1 27906:1 27945:3 27950:1 27969:2 27972:1 27979:1 27995:2 27999:3 28000:1 28005:1 28025:1 28040:1 28046:1 28056:1 28066:1 28072:2 28074:1 28084:2 28094:1 28118:1 28119:1 28122:2 28128:1 28139:1 28149:1 28159:1 28160:1 28189:1 28193:1 28197:1 28204:3 28207:1 28217:2 28256:2 28259:2 28262:2 28266:1 28275:2 28292:1 28301:1 28307:1 28398:1 28400:1 28403:1 28406:1 28412:1 28419:1 28428:3 28459:1 28474:1 28488:1 28499:1 28502:1 28504:1 28505:1 28527:3 28540:9 28555:1 28561:2 28575:1 28621:1 28626:1 28630:1 28642:1 28644:1 28645:1 28658:2 28715:1 28716:1 28723:2 28728:3 28744:1 28754:2 28755:7 28764:1 28765:1 28778:9 28783:2 28786:2 28791:2 28792:1 28800:1 28809:1 28823:1 28843:2 28856:1 28858:9 28868:1 28876:1 28877:3 28883:1 28900:1 28911:1 28916:1 28929:1 28933:26 28947:1 28960:1 28961:1 28977:1 28984:2 29024:1 29034:2 29039:1 29043:1 29052:2 29063:1 29071:1 29075:1 29078:1 29080:1 29090:1 29091:1 29105:1 29113:1 29125:1 29126:1 29146:1 29154:1 29161:1 29182:1 29193:1 29207:1 29221:3 29231:1 29239:5 29240:1 29268:1 29272:3 29292:1 29314:1 29339:3 29348:1 29349:2 29357:1 29387:2 29396:2 29404:2 29413:1 29422:1 29424:2 29429:1 29430:2 29431:3 29444:1 29457:5 29465:1 29471:9 29490:1 29495:2 29504:2 29519:1 29535:1 29537:1 29543:2 29546:1 29551:1 29557:3 29560:1 29581:1 29597:1 29602:1 29627:1 29650:1 29651:1 29652:2 29654:1 29664:1 29675:1 29677:1 29684:1 29701:1 29708:1 29721:1 29727:1 29730:1 29742:1 29748:1 29749:1 29759:1 29761:2 29762:1 29763:1 29764:1 29770:1 29775:1 29795:4 29798:1 29810:1 29816:9 29855:1 29865:1 29866:2 29890:1 29901:1 29902:1 29930:1 29931:1 29932:1 29935:3 29977:1 29982:1 29988:1 29990:1 29998:1 30003:1 30013:1 30036:1 30047:1 30056:2 30084:3 30088:1 30113:3 30123:1 30137:16 30138:1 30144:1 30145:1 30157:1 30162:3 30173:3 30180:2 30183:1 30184:2 30186:1 30187:1 30225:3 30226:1 30239:9 30241:11 30253:1 30263:1 30264:2 30277:2 30279:1 30280:1 30284:1 30294:2 30310:1 30312:1 30330:3 30334:1 30335:2 30339:9 30352:1 30362:1 30384:1 30385:1 30394:1 30396:6 30438:1 30447:2 30449:2 30459:1 30462:4 30466:1 30467:1 30468:1 30508:1 30511:2 30522:1 30538:1 30541:2 30545:1 30546:1 30549:1 30551:1 30552:1 30561:2 30573:1 30580:1 30586:1 30592:1 30607:1 30620:1 30621:3 30637:1 30646:1 30653:1 30654:1 30678:1 30679:1 30680:2 30682:2 30686:2 30705:1 30715:1 30716:2 30725:2 30760:3 30787:2 30795:2 30815:4 30823:2 30824:1 30854:3 30868:1 30871:1 30872:1 30897:2 30898:2 30901:1 30902:1 30903:1 30906:1 30911:1 30927:1 30950:2 30952:1 30962:1 30975:1 30998:1 31028:1 31032:1 31034:1 31037:2 31051:1 31060:1 31076:1 31089:4 31095:1 31098:4 31105:2 31115:1 31128:1 31138:1 31156:1 31168:1 31184:2 31210:1 31215:1 31233:4 31258:1 31280:1 31281:1 31293:1 31308:1 31312:1 31315:1 31316:1 31331:1 31341:1 31342:3 31353:1 31355:3 31359:1 31377:1 31378:1 31383:1 31390:1 31403:2 31407:3 31421:1 31427:2 31432:1 31446:1 31447:2 31462:1 31478:2 31481:1 31489:5 31494:1 31495:1 31497:1 31505:7 31507:1 31508:1 31510:1 31514:1 31542:1 31548:1 31550:1 31559:1 31567:1 31615:2
fb3514391f8ba03cf03f4d16a10c1a2b96fed893
449d555969bfd7befe906877abab098c6e63a0e8
/2705/CH5/EX5.7/Ex5_7.sce
85cf1c2f9ccac27876380d8b45763f346626f58c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
792
sce
Ex5_7.sce
clear; clc; disp('Example 5.7'); // aim : To determine // the heat transferred to the gas and its final pressure // Given values m = 2;// masss of the gas, [kg] V1 = .7;// volume,[m^3] T1 = 273+15;// original temperature,[K] T2 = 273+135;// final temperature,[K] cv = .72;// specific heat capacity at constant volume,[kJ/kg K] R = .29;// gas law constant,[kJ/kg K] // solution Q = m*cv*(T2-T1);// Heat transferred at constant volume,[kJ] mprintf('\n The heat transferred to the gas is = %f kJ\n',Q); // Now,using P1*V1=m*R*T1 P1 = m*R*T1/V1;// [kN/m^2] // since volume of the system is constant, so P1/T1=P2/T2 // hence P2 = P1*T2/T1;// final pressure,[kN/m^2] mprintf('\n The final pressure of the gas is = %f kN/m^2 \n',P2); // End
f5c6aef8df5c03d46a5b2e61001390f502676daf
449d555969bfd7befe906877abab098c6e63a0e8
/1760/CH8/EX8.30/EX8_30.sce
c2b07ead7d2ef66c690c4a0933b944e0956f35c4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
259
sce
EX8_30.sce
//EXAMPLE 8-30 PG NO-548 R1=10000; Fc1=40000 ; C1=1/[R1*Fc1*2*%pi]; disp('ii) CAPACITOR (C1) is = '+string (C1) +' F '); Fc2=8000; R2=5000; C2=1/[R2*Fc2*2*%pi]; disp('ii) CAPACITOR (C2) is = '+string (C2) +' F ');
6d81dbd5000fed8c9c80f89d32ac1cc8c4017a6f
449d555969bfd7befe906877abab098c6e63a0e8
/1955/CH9/EX9.18/example18.sce
e9e16204333ee5306731dbf36a8a266e41326021
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,013
sce
example18.sce
clc clear //input data N=50//Speed of the turbine in rpm d=6//Runner diameter of the turbine in m Ae=20//Effective area of flow in m^2 b11=150//The angle of the runner blades at inlet in degree b22=20//The angle of the runner blade at outlet in degree g=9.81//Acceleration due to gravity in m/s^2 dw=1000//Density of water in kg/m^3 //calculations U1=(3.141*d*N)/60//Runner tip speed at inlet in m/s U2=U1//Runner tip speed at outlet in m/s Cr2=U2*tand(b22)//Flow velocity at outlet in m/s Cr1=Cr2//Flow velocity at inlet in m/s Q=Ae*Cr1//Discharge by the turbine in m^3/s Cx1=U1-(Cr1/(tand(180-b11)))//Velocity of whirl at inlet in m/s P=dw*g*Q*(U1*Cx1/g)*10^-3//Theoretical Power developed in kW C2=Cr2//Absolute outlet velocity in m/s H=(U1*Cx1/g)+(C2^2/(2*g))//Net head across the turbine in m nH=(U1*Cx1/g)/(H)//Hydraulic efficiency //output printf('(a)Discharge of the turbine is %3.1f m^3/s\n(b)Theoretical Power developed is %3.2f kW\n(c)Hydraulic efficiency is %3.4f',Q,P,nH)
38a213eab7af9f52d46a80ceb826820a2295fb0e
449d555969bfd7befe906877abab098c6e63a0e8
/3769/CH17/EX17.12/Ex17_12.sce
80eca67555615bca473d880119310a714af187ba
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
260
sce
Ex17_12.sce
clear //Given a=52 //Degree b=33 //Degree //Calculation // u2=(sin(a*3.14/180.0))/(sin(b*3.14/180.0)) C=1/u2 A=asin(C)*180/3.14 //Result printf("\n Angle of refrection is %0.1f Degree",A)
9ebc0fd8f0cdc16bc237cabaa442c14dd1155324
449d555969bfd7befe906877abab098c6e63a0e8
/389/CH8/EX8.6/Example8_6.sce
342322cb31cc5a9f62ab06c170800be8c5a1cec2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
2,755
sce
Example8_6.sce
clear; clc; // Illustration 8.6 // Page: 304 printf('Illustration 8.6 - Page: 304\n\n'); // solution //****Data****// // Gas: // In: y_prime1 = 0.02; Y_prime1 = 0.0204;// [mol/mol dry gas] // Out: y_prime2 = 0.00102; Y_prime2 = 0.00102;// [mol/mol dry gas] // Non absorbed gas: MavG = 11;// [kg/kmol] G = 0.01051;// [kmol/s nonbenzene] Gm = 0.01075;// [kmol/s] T = 26;// [OC] viscosity_G = 10^(-5);// [kg/m.s] DaG = 1.30*10^(-5);// [square m/s] // Liquid: // In: x_prime2 = 0.005; X_prime2 = 0.00503;// [mol benzene/mol oil] // Out: x_prime1 = 0.1063; X_prime1 = 0.1190;// [mol benzene/mol oil] // Benzene free oil: MavL = 260;// [kg/kmol] viscosity_L = 2*10^(-3);// [kg/kmol] Density_L = 840;// [kg/cubic cm] L = 1.787*10^(-3);// [kmol/s] DaL = 4.77*10^(-10);// [square m/s] sigma = 0.03;// [N/square m] m = 0.1250; //*******// A = 0.47^2*%pi/4;// [square m] // At the bottom: L_prime1 = ((L*MavL)+(X_prime1*L*78))/A;// [kg/square m.s] // At the top L_prime2 = ((L*MavL)+(X_prime2*L*78))/A;// [kg/square m.s] L_primeav = (L_prime1+L_prime2)/2;// [kg/square m.s] // At the bottom G_prime1 = ((G*MavG)+(Y_prime1*G*78))/A;// [kg/square m.s] // At the top G_prime2 = ((G*MavG)+(Y_prime2*G*78))/A;// [kg/square m.s] G_primeav = (G_prime1+G_prime2)/2;// [kg/square m.s] // From Illustration 6.6: Fga = 0.0719;// [kmol/cubic cm.s] Fla = 0.01377;// [kmol/cubic cm.s] // Operating Line: X_prime = [0.00503 0.02 0.04 0.06 0.08 0.10 0.1190]; x_prime = zeros(7); Y_prime = zeros(7); y_prime = zeros(7); for i = 1:7 x_prime(i) = X_prime(i)/(1+X_prime(i)); deff('[y] = f38(Y_prime)','y = (G*(Y_prime1-Y_prime))-(L*(X_prime1-X_prime(i)))'); Y_prime(i) = fsolve(Y_prime1,f38); y_prime(i) = Y_prime(i)/(1+Y_prime(i)); end deff("[y] = f39(x)","y = m*x") x = [0:0.01:0.14]; // Interface compositions are determined graphically and according to Eqn. 8.21: yi = [0.000784 0.00285 0.00562 0.00830 0.01090 0.01337 0.01580]; ylog = zeros(7); y_by_yDiffyi = zeros(7); for i = 1:7 ylog(i) = log10(yi(i)); y_by_yDiffyi(i) = y_prime(i)/(y_prime(i)-yi(i)); end scf(10); plot(x_prime,y_prime,x,f39,x_prime,yi); legend("Operating Line","Equilibrium Line","Interface Composition"); xgrid(); xlabel("mole fraction of benzene in liquid"); ylabel("mole fraction of benzene in gas"); scf(11); plot(ylog,y_by_yDiffyi); xgrid(); xlabel("log y"); ylabel("y/(y-yi)"); title("Graphical Integration Curve"); // Area under the curve: Ac = 6.556; // Eqn. 8.28: NtG = (2.303*Ac)+1.152*(log10((1-y_prime2)/(1-y_prime1))); Gav = (Gm+(G/(1-Y_prime2)))/(2*A);// [kmol/square m.s] HtG = Gav/Fga;// [m] Z = HtG*NtG;// [m] printf("The depth of packing recquired is %f m",Z);
6aa5f3db91d078dff0f5dff5dfda868f7d8ed3be
449d555969bfd7befe906877abab098c6e63a0e8
/3793/CH10/EX10.7/exp_10_7.sce
39e02844a252525c7980d0e5cda3fe7fe9a1bd7a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,109
sce
exp_10_7.sce
clear; clc; Sb=30; vb=11; sg=20; p=10; R=6.6; Ea=1; //generator X1=complex(0,.1); X2=complex(0,.1); X0=complex(0,.15); x1=X1*(Sb/sg); x2=X2*(Sb/sg); x0=X0*(Sb/sg); //transformer12 xt1=complex(0,.12); xt2=complex(0,.12); xt0=complex(0,.12); //transmission line vtr=22; Ztr=vtr^2/Sb; Z=complex(1,5); Zpu=Z/Ztr; //transformer34 Xt1=complex(0,.05); Xt2=complex(0,.05); Xt0=complex(0,.05); xtt1=Xt1*(Sb/sg); xtt2=Xt2*(Sb/sg); xtt0=Xt0*(Sb/sg); Vf3=1; Rpu=((Vf3^2)*Sb)/p; Rf=(R*Sb)/vtr^2; Il=p/Sb; Vf4=Vf3+(Il*xtt1); Zfp=((x1+xt1+Zpu)*(Rpu+xtt1))/(x1+xt1++Zpu+Rpu+xtt1); Zfn=Zfp; zf0=Zpu+xt1; Ia1=Vf3/(Zfp+Zfn+Rf); Ia2=-Ia1; Va0=0; Va1=Ea-(Zfn*Ia1); Va2=-Zfn*Ia2; Ibase=(Sb*1000)/(sqrt(3)*vtr); a=complex(-.5,.866); A=[1 1 1;1 a^2 a;1 a a^2]; V1=[Va0;Va1;Va2]; V=A*V1; Vab=V(1,1)-V(2,1); Vbc=V(2,1)-V(3,1); Vca=V(3,1)-V(1,1); mprintf("Actual Line Voltages are Vab=%f+%f Vbc=%f%f Vca=%f+%f \n",real(Vab),imag(Vab),real(Vbc),imag(Vbc),real(Vca),imag(Vca)); Ib1=complex(0,-sqrt(3))*Ia1; Ib=Ib1*Ibase; mprintf("Phase current is %f%f A",real(Ib),imag(Ib));
fb093235a80ccdb841d8ae28bfe6c00ec1ae74d2
d465fcea94a1198464d7f8a912244e8a6dcf41f9
/kMatlab/kSetProfile.sci
8672b892025307587fa9977a43db13b425b645fc
[]
no_license
manasdas17/kiks-scilab
4f4064ed7619cad9e2117a6c0040a51056c938ee
37dc68914547c9d0f423008d44e973ba296de67b
refs/heads/master
2021-01-15T14:18:21.918789
2009-05-11T05:43:11
2009-05-11T05:43:11
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
998
sci
kSetProfile.sci
function [r] = kSetProfile(ref,vL,aL,vR,aR) // Ouput variables initialisation (not found in input variables) r=[]; // Number of arguments in function call [%nargout,%nargin] = argn(0) // Display mode mode(0); // Display warning for floating point exception ieee(1); //KSETPROFILE Set the speed and acceleration profile for // the position controller. // //kSetProfile(ref,vL,aL,vR,aR) // Set the left and right speed and acceleration // of the position controller of Khepera. // Use the reference obtained with kopen. if %nargin<5 then vL = 20; vR = 20; aL = 64; aR = 64; disp("Resetting to default speed (20) and acceleration (64)."); end; // !! L.18: Matlab function sprintf not yet converted, original calling sequence used value = kcmd(ref,sprintf("J,%d,%d,%d,%d",round(mtlb_double(vL)),round(mtlb_double(aL)),round(mtlb_double(vR)),round(mtlb_double(aR)))); if mtlb_logic(mtlb_double(value),"==",asciimat("j")) then r = 0; else r = -1; end; endfunction
fac0386cb3873b172171e1b14a97e7aceb4880ab
c59576b9f96a7b26dc5bc0d52998ad818380b8cf
/test/FM08.prev.tst
c990140bdf65ebbb41809cdb41036b56ae0f313f
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
gfis/checkdig
0588535521d9106a5c777a809e50d64a9204fa3c
3570d246efd0d102f1a2652dfe752884b5d346d8
refs/heads/master
2022-02-14T07:41:43.949901
2022-01-28T15:00:07
2022-01-28T15:00:07
30,117,975
1
1
null
null
null
null
UTF-8
Scilab
false
false
216
tst
FM08.prev.tst
119317079 !OK 118629220 !OK 120882965 !OK 118551647 !OK 118972332 !OK 118501828 !OK 11901842X !OK 118802976 !OK 119344165 !OK 123089190 !OK 118503863 !OK 118503863 ?NOK 12345 ?SHORT 12345678901 ?LONG 11850A863 ?CHAR
995e4d5870ced3131d8d862671a8b2388f8ebe57
e424e40d906c9eb8f8034d6f8e2cd4647334387e
/Corto 1/screen.tst
1c1244c1ccc68e0996ea32c83c61c754a070e8dd
[]
no_license
EzioAARM/practicas-arqui-nand2tetris
ef20358ea414875178bb26b4a552552d6ccd32dc
0e1b424fa02d3cc2d79984808450224926936323
refs/heads/master
2020-04-29T19:11:03.560135
2019-03-18T18:32:32
2019-03-18T18:32:32
176,346,289
0
0
null
null
null
null
UTF-8
Scilab
false
false
573
tst
screen.tst
load LS48.hdl, output-file LS48.out, output-list D C B A a; set A 0, set B 0, set C 0, set D 0, eval, output; set A 0, set B 0, set C 0, set D 1, eval, output; set A 0, set B 0, set C 1, set D 0, eval, output; set A 0, set B 0, set C 1, set D 1, eval, output; set A 0, set B 1, set C 0, set D 0, eval, output; set A 0, set B 1, set C 0, set D 1, eval, output; set A 0, set B 1, set C 1, set D 0, eval, output; set A 0, set B 1, set C 1, set D 1, eval, output; set A 1, set B 0, set C 0, set D 0, eval, output; set A 1, set B 0, set C 0, set D 1, eval, output;
85d5ac54e1b39c0b5ec8ccc0d7f9ae4bce0879d1
449d555969bfd7befe906877abab098c6e63a0e8
/3869/CH1/EX1.3/Ex1_3.sce
2b4195f7fa7f4dce35b2dcc7cca7407a0a3a9b07
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
715
sce
Ex1_3.sce
clear // // // //Variable declaration Y=1*10**-3 //distance between slits(m) D=1 //distance between slit and screen(m) d=1*10**-3 //point distance(m) lamda=5893*10**-10 //wavelength(angston) //Calculation delta1=Y*d/D //path difference(m) Pd=2*%pi*delta1/lamda //phase difference(radian) r=(cos(Pd/2))**2 //ratio of intensity delta2=lamda/4 //path difference(m) W=delta2*D/d //distance of point on screen from centre(m) //Result printf("\n ratio of intensity is %0.4f ",r) printf("\n distance of point on screen from centre is %0.3f *10**-4 m",W*10**4) printf("\n answers in the book varies due to rounding off errors")
a3b0cca233f041c94704f3fcd4114f15bf8e707b
449d555969bfd7befe906877abab098c6e63a0e8
/1415/CH1/EX1.2.5/ex5.sce
7323e28cea69d46175e72bb755d7bcdce2b83c13
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,464
sce
ex5.sce
//Example 5 Page 64 clc clear //function for linear model function y=r1(t) y=57*t+607 endfunction //function for quadratic model function y=r2(t) y=-9*t^2+110*t+560 endfunction //function for exponential model function y=r3(t) y=608*(1.08)^t endfunction //function for logistic model function y=r4(t) y=930/(1+0.67*(1.7)^-t) endfunction disp('a)') t=([0 1 2 3 4 5 6])//assigning values of t y1=r1(t)//function caling r1(t) disp(t) disp(y1)//displaying values of y1 y2=r2(t)//function calling r2(t) disp(t) disp(y2)//displaying values of y2 y3=r3(t)//function calling r3 disp(t) disp(y3)//displaying value sof y3 y4=r4(t)//function calling r4 disp(y3)//displaying y4 values plot(6,1000,t,y1,'red')//plotting linear graph xtitle('Linear Model','x','y')//given title and other labes scf//setting current graphic window plot(6,1000,t,y2,'blue')//plotting qudratic graph xtitle('quadratic','x','y')//setting labels scf//setting current graphic window plot(6,1000,t,y3,'blue')//plotting exponential graph xtitle('Exponential Model','x','y')//setting labels scf//setting current graphic window plot(6,1000,t,y2,'blue')//plotting logistic graph xtitle('Logistic Model','x','y')//setting labels disp('b)') t=10//assigning value of t y1=r2(t)//function calling r2 disp(y1,'Quadratic Model for 2010')//displaying result y2=r4(t)//function calling r4 disp(y2,'Logistic Model for 2010')//displaying result
c1122b36dc4283e97f0563eb1a10a1592ef26161
449d555969bfd7befe906877abab098c6e63a0e8
/1415/CH1/EX1.3.5/ex5.sci
e097bdffdfa16fd7b005caac6ab3cf313d87dfd4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
755
sci
ex5.sci
//Example 6 Page 86 clc clear disp('a)') s2=530//Assigning s2 values s1=50//Assigning s1 values t2=8//Assigning t2 values t1=0//Assigning t1 values m=((s2-s1)/(t2-t1));//calculating m value disp(m,'the slope is:')//displaying m value b=s1-m*t1;//calculating b value disp(b,'the intercept value is')//displaying b value mprintf( "So, %dt+%d million units ",m,b);//printing the s equation disp('b)') mprintf( "So, %dt+%d million units\n ",m,b);//printing the s equation //since value of s=440 s=440//Assigning s values m=60//Assigning m values b=50//Assigning b values t=(s-b)/60;//calculting time mprintf("\nAnnual sales of mobile portable devices will reah 440 millions when s=440 or t=%f years",t);//displaying the time in years
aebd43109467511499b6a0153bd0852fd410413b
9715cbe7e8e57bb70f628b3bd021842f99fbad75
/taller/soluciones/obtenerInversa.sci
47efffa47dc322bde1c746da330198812d5b85d8
[]
no_license
UNIVALLE-EISC/numerical-methods
a3e3f432a6dc54a5ba845789ace2bf39db7ac6fe
3ea9401e281523e15be0525bfe36e48560caf646
refs/heads/master
2021-01-10T15:22:36.080955
2018-10-02T21:37:42
2018-10-02T21:37:42
51,824,833
2
2
null
null
null
null
UTF-8
Scilab
false
false
283
sci
obtenerInversa.sci
function matrizR = obtenerInversa(matrizA) if ( size(matrizA,1) == size(matrizA,2) ) then if ( det(matrizA) ~= 0 ) then matrizR = inv(matrizA); else matrizR = %nan; end else matrizR = pinv(matrizA); end endfunction
0699b31dbc57a06c596be810f5941bae80e2c023
449d555969bfd7befe906877abab098c6e63a0e8
/167/CH2/EX2.8/ex8.sce
4d1a72ca29f5eb36bdbea0aa996d163fe1e13fcc
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
402
sce
ex8.sce
// example 8 // Power Needs of a Car to Climb a Hill clear clc m=1200 //mass of car in kg v1=90 //velocity of car in km/h v2=90*5/18 //velocity of car in m/s x=30 //slope of hill in degrees g=9.8 //acc. due to gravity in m/s^2 w=m*g*v2*sin(%pi*30/180) //additional power to be delivered by engine in watts printf("\n Hence,additional power to be delivered by engine is = %.0f kW. \n",w/1000);
9a91cb9d408fc6150b5aef85ff305a430141a115
449d555969bfd7befe906877abab098c6e63a0e8
/1760/CH4/EX4.24/EX4_24.sce
f692a3dce23992095d3be7d301464b0decc4b6a8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
184
sce
EX4_24.sce
//EXAMPLE 4-24 PG NO-240-241 I1=9; I2=2.5; I3=2; IR3=I2-I3; disp(' CURRENT is = '+string(IR3)+' A'); V=13.5; disp(' VOLTAGE is = '+string(V)+' V');
7f53f324b90afbba544f317076fdc7748103dfe4
449d555969bfd7befe906877abab098c6e63a0e8
/2855/CH12/EX12.36/Ex12_36.sce
cf5a51da6bcaf12afea46487ca1e2eccf178d1d5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
344
sce
Ex12_36.sce
//Chapter 12 //page no 530 //given clc; clear all; l=1557; //wavelength in nm c=3*10^5; //speed of light in km/s Zs=550; //in km D=0.25; //in ps/nm/km Tfwhm=sqrt(1.763^2*l^2*D*Zs/(2*%pi*c));//Soliton pulse width printf("\n Tfwhm = %0.0f ps",Tfwhm); //Result
8ead602757b5a38a5f1319c8b7cb5eb125823507
449d555969bfd7befe906877abab098c6e63a0e8
/132/CH14/EX14.4/Example14_4.sce
130b6c965d99da66a2a03eb2add6b55a2e79334f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
361
sce
Example14_4.sce
//Example 14.4 //Program to Determine the AC Voltage clear; clc ; close ; //Given Circuit Data DS=5; //V/cm, Deflection Sensitivity l=10; //cm, Trace Length //Calculation Vp=DS*l; Vm=Vp/2; V=Vm/sqrt(2); //Displaying The Results in Command Window printf("\n\t The Peak AC Voltage, Vm = %f V .",Vm); printf("\n\t The RMS AC Voltage, V = %f V .",V);
0de19a86061eceb87dc9c5edfd4847ca5b6d2ed1
449d555969bfd7befe906877abab098c6e63a0e8
/1808/CH4/EX4.11/Chapter4_Example11.sce
7df8944bfb99685aa88b23568721a23726b242a7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,316
sce
Chapter4_Example11.sce
clc clear //INPUT DATA p1=90;//pressure in bar p2=9;//pressure in bar p3=0.1;//pressure in bar T=450;//Temperature in Degree C h1=2956.6;//Enthalpy in kJ/kg S1=6.036;//Entropy in kJ/kg.K h9=2772.1;//Enthalpy in kJ/kg h6=742.6;//Enthalpy in kJ/kg S9=6.6192;//Entropy in kJ/kg.K S6=2.0941;//Entropy in kJ/kg.K V6=0.001121;//Specific volume in m^3/kg h10=2584.7;//Enthalpy in kJ/kg h4=191.8;//Enthalpy in kJ/kg S10=8.15;//Entropy in kJ/kg.K S4=0.649;//Entropy in kJ/kg.K V4=0.001001;//Specific volume in m^3/kg P=120000;//power output in kW //CALCULATIONS x2=((S1-S6)/(S9-S6));//quality of steam x3=((S1-S4)/(S10-S4));//quality of steam h2=h6+(x2*(h9-h6));//Enthalpy in kJ/kg h3=h4+(x3*(h10-h4));//Enthalpy in kJ/kg h5=h4+(V4*(p1-p3))*100;//Enthalpy in kJ/kg Wp1=h5-h4;//Pump work in kJ/kg h7=h6+(V6*(p1-p2))*100;//Enthalpy in kJ/kg Wp2=h7-h6;//Pump work in kJ/kg m1=((h6-h5)/(h2-h5));//Mass flow rate in kJ/s Wt=(h1-h2)+((1-m1)*(h2-h3));//Turbine work in kJ/kg Wp=(h7-h6)+((1-m1)*(h5-h4));//Pump work in kJ/kg Qs=(h1-h7);//heat supplied in kJ/kg nR=((Wt-Wp)/Qs)*100;//Rankine efficiency in percentage m=P/(Wt-Wp);//mass flow rate in kJ/s //OUTPUT printf('(i) The Thermal efficiency is %3.3f percent \n (ii) Mass flow rate of steam entering to the turbine is %3.2f kg/s ',nR,m)
d3726ba434d80a2a44e7fa8aa5c2cd46efc3c6aa
449d555969bfd7befe906877abab098c6e63a0e8
/2078/CH4/EX4.10/Example4_10.sce
73586bed81d4bee8d3b0a7bc1cc9486f65b36977
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
258
sce
Example4_10.sce
//Exa 4.10 clc; clear; close; //Given data : r=1.2/2*10;//mm rdash=0.7788*r;//mm d=3.5*1000;//mm L=2*10^-7*log(d/rdash);//H/m Lav=1/3*(L+L+L);//H/m d=rdash*exp(Lav/(2*10^-7)-1/3*log(2));//mm disp(d/1000,"Spacing between adjacent conductors(m)");
554c2fd9a075b3149e2b570b42e288c6e99fc672
1b969fbb81566edd3ef2887c98b61d98b380afd4
/Rez/bivariate-lcmsr-post_mi/bfas_ac_vrt_col/~BivLCM-SR-bfas_ac_vrt_col-PLin-VLin.tst
6ee2577fb1db2ebb230fc21b8f1f87506d55572e
[]
no_license
psdlab/life-in-time-values-and-personality
35fbf5bbe4edd54b429a934caf289fbb0edfefee
7f6f8e9a6c24f29faa02ee9baffbe8ae556e227e
refs/heads/master
2020-03-24T22:08:27.964205
2019-03-04T17:03:26
2019-03-04T17:03:26
143,070,821
1
0
null
null
null
null
UTF-8
Scilab
false
false
11,909
tst
~BivLCM-SR-bfas_ac_vrt_col-PLin-VLin.tst
ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 1 2 3 4 5 ________ ________ ________ ________ ________ 1 0.268162D+00 2 -0.458930D-02 0.229403D-02 3 0.925680D-01 -0.180498D-02 0.337399D+00 4 -0.233042D-02 0.753122D-03 -0.323937D-02 0.278439D-02 5 -0.802514D-03 0.216438D-03 -0.914077D-03 0.725644D-04 0.272818D-02 6 0.564075D-04 0.134184D-03 0.360741D-03 0.576697D-05 -0.154056D-03 7 0.203883D-02 0.216109D-03 -0.397452D-03 0.605006D-04 0.361943D-03 8 0.408272D-03 -0.700654D-04 0.522839D-03 -0.173545D-04 -0.502464D-04 9 -0.513215D+00 0.266511D-01 -0.409642D+00 0.253838D-01 -0.843792D-02 10 -0.443772D+00 -0.720491D-03 -0.555228D-01 0.527754D-02 0.122994D+00 11 -0.674648D+00 0.359845D-01 -0.424388D+00 0.351015D-01 0.492840D-01 12 -0.861626D+00 0.326715D-01 -0.135624D+01 0.542925D-01 0.184320D-01 13 -0.183565D-01 0.100289D-02 -0.471567D-01 0.413910D-02 -0.226113D-02 14 -0.242061D+00 0.292241D-02 -0.307937D+00 0.487169D-02 0.464516D-02 15 -0.245771D+01 0.879463D-01 -0.555762D+00 0.395250D-02 -0.647794D-01 16 0.508128D-01 -0.155350D-01 0.350659D-01 -0.570064D-02 -0.330935D-03 17 -0.693182D-02 -0.472161D-03 -0.409367D-02 0.270414D-03 -0.638124D-03 18 -0.665253D+00 -0.352751D-03 -0.888720D+00 -0.626174D-03 0.184500D-01 19 -0.151917D-01 -0.540408D-02 0.148632D-01 0.800192D-02 0.506238D-02 20 -0.646075D+00 -0.136768D-01 -0.353375D+01 -0.383753D-01 -0.204664D-02 21 0.596623D-01 -0.320471D-02 -0.398059D-03 -0.136322D-01 0.598778D-03 22 -0.148592D-02 0.990196D-04 0.180267D-02 0.795570D-04 -0.611741D-03 23 0.156057D-01 -0.215113D-02 -0.187665D-01 -0.128633D-01 0.302621D-02 24 0.709215D-03 0.233114D-03 0.522262D-02 -0.224426D-03 -0.224556D-03 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 6 7 8 9 10 ________ ________ ________ ________ ________ 6 0.804323D-03 7 0.784325D-03 0.385836D-02 8 0.247045D-04 -0.229525D-03 0.258575D-02 9 -0.313164D-02 0.111587D-01 0.192092D-01 0.466633D+02 10 -0.106168D-01 -0.686544D-02 0.761869D-02 -0.101966D+01 0.164558D+02 11 -0.178664D-01 0.185276D-01 0.462072D-02 0.175104D+02 0.214495D+01 12 0.182063D-01 0.802610D-01 -0.639222D-01 0.860223D+01 -0.407049D+00 13 0.582782D-01 0.153463D+00 0.174542D-01 -0.357720D+00 0.175621D+01 14 0.123082D-01 0.126274D-01 0.237753D+00 0.489659D+01 0.451275D+01 15 0.712690D-01 0.475596D-01 0.433100D-01 0.600426D+01 -0.810118D+01 16 -0.165948D-03 0.233962D-03 -0.395019D-03 0.413914D+00 0.665186D-02 17 -0.768382D-03 -0.138193D-02 -0.496439D-03 -0.140994D+00 0.384113D-01 18 -0.226637D-01 -0.116146D+00 0.501669D-02 0.537940D+01 0.204970D+01 19 -0.340293D-02 0.174602D-01 0.158526D-02 -0.767905D+00 -0.740980D-01 20 -0.743065D-01 -0.112076D+00 -0.123088D+00 0.655465D+01 0.480931D+01 21 0.589748D-02 -0.126943D-01 -0.171007D-02 0.983350D+00 0.432600D+00 22 -0.205076D-03 -0.462059D-03 0.746566D-04 -0.414986D-01 -0.347944D-01 23 -0.891743D-03 0.220560D-02 0.113159D-02 -0.384488D+00 0.158860D+00 24 0.288345D-03 -0.254908D-04 -0.225619D-03 0.212234D-01 -0.433021D-01 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 11 12 13 14 15 ________ ________ ________ ________ ________ 11 0.343882D+02 12 0.214648D+02 0.919732D+02 13 -0.148357D+01 0.317352D+01 0.141126D+02 14 0.367185D+01 -0.433443D+01 0.487324D+01 0.543125D+02 15 0.430182D+01 0.227505D+02 0.385032D+01 0.701298D+01 0.246312D+03 16 -0.628046D-01 0.179703D+00 0.838496D-01 0.581462D-01 0.187742D+01 17 -0.144845D-01 -0.681361D-01 -0.377055D-01 -0.368946D-01 -0.115711D+01 18 0.505608D+01 0.755790D+01 -0.355343D+01 -0.351629D+01 0.793723D+02 19 0.740718D-01 0.116254D+00 0.593526D+00 0.204322D+00 -0.104860D+01 20 0.198789D+01 -0.235156D+01 -0.734081D+01 -0.185193D+02 0.167616D+02 21 -0.166817D+00 -0.109813D+00 -0.296839D+00 -0.136524D+00 0.263128D+01 22 -0.540294D-01 -0.730259D-01 -0.294378D-01 0.723253D-02 -0.417403D+00 23 -0.735910D-01 -0.381676D+00 0.628862D-01 0.274335D+00 0.262904D+00 24 -0.224522D-01 -0.907739D-01 -0.558694D-02 -0.694006D-01 -0.101715D+00 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 16 17 18 19 20 ________ ________ ________ ________ ________ 16 0.494286D+00 17 -0.409101D-01 0.146012D-01 18 0.473819D+00 -0.336110D+00 0.153603D+03 19 0.192654D+00 -0.151208D-01 -0.109880D+01 0.454018D+01 20 -0.109132D+00 -0.495312D-01 0.931365D+02 -0.277967D+01 0.406705D+03 21 0.217692D+00 -0.323050D-01 0.349344D+01 -0.422709D+01 0.414222D+01 22 -0.207910D-01 0.556598D-02 -0.682309D+00 -0.228423D-01 -0.374602D+00 23 0.606646D-01 -0.811971D-02 0.588426D+00 -0.105031D+00 0.353854D+01 24 -0.540326D-02 0.137473D-02 -0.332099D+00 0.276482D-02 -0.183272D+01 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 21 22 23 24 ________ ________ ________ ________ 21 0.494510D+01 22 -0.248415D-01 0.742827D-02 23 0.318673D+00 -0.916667D-02 0.519008D+00 24 -0.200848D-01 0.277604D-02 -0.334930D-01 0.180683D-01 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 1 2 3 4 5 ________ ________ ________ ________ ________ 1 1.000 2 -0.185 1.000 3 0.308 -0.065 1.000 4 -0.085 0.298 -0.106 1.000 5 -0.030 0.087 -0.030 0.026 1.000 6 0.004 0.099 0.022 0.004 -0.104 7 0.063 0.073 -0.011 0.018 0.112 8 0.016 -0.029 0.018 -0.006 -0.019 9 -0.145 0.081 -0.103 0.070 -0.024 10 -0.211 -0.004 -0.024 0.025 0.580 11 -0.222 0.128 -0.125 0.113 0.161 12 -0.173 0.071 -0.243 0.107 0.037 13 -0.009 0.006 -0.022 0.021 -0.012 14 -0.063 0.008 -0.072 0.013 0.012 15 -0.302 0.117 -0.061 0.005 -0.079 16 0.140 -0.461 0.086 -0.154 -0.009 17 -0.111 -0.082 -0.058 0.042 -0.101 18 -0.104 -0.001 -0.123 -0.001 0.029 19 -0.014 -0.053 0.012 0.071 0.045 20 -0.062 -0.014 -0.302 -0.036 -0.002 21 0.052 -0.030 0.000 -0.116 0.005 22 -0.033 0.024 0.036 0.017 -0.136 23 0.042 -0.062 -0.045 -0.338 0.080 24 0.010 0.036 0.067 -0.032 -0.032 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 6 7 8 9 10 ________ ________ ________ ________ ________ 6 1.000 7 0.445 1.000 8 0.017 -0.073 1.000 9 -0.016 0.026 0.055 1.000 10 -0.092 -0.027 0.037 -0.037 1.000 11 -0.107 0.051 0.015 0.437 0.090 12 0.067 0.135 -0.131 0.131 -0.010 13 0.547 0.658 0.091 -0.014 0.115 14 0.059 0.028 0.634 0.097 0.151 15 0.160 0.049 0.054 0.056 -0.127 16 -0.008 0.005 -0.011 0.086 0.002 17 -0.224 -0.184 -0.081 -0.171 0.078 18 -0.064 -0.151 0.008 0.064 0.041 19 -0.056 0.132 0.015 -0.053 -0.009 20 -0.130 -0.089 -0.120 0.048 0.059 21 0.094 -0.092 -0.015 0.065 0.048 22 -0.084 -0.086 0.017 -0.070 -0.100 23 -0.044 0.049 0.031 -0.078 0.054 24 0.076 -0.003 -0.033 0.023 -0.079 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 11 12 13 14 15 ________ ________ ________ ________ ________ 11 1.000 12 0.382 1.000 13 -0.067 0.088 1.000 14 0.085 -0.061 0.176 1.000 15 0.047 0.151 0.065 0.061 1.000 16 -0.015 0.027 0.032 0.011 0.170 17 -0.020 -0.059 -0.083 -0.041 -0.610 18 0.070 0.064 -0.076 -0.038 0.408 19 0.006 0.006 0.074 0.013 -0.031 20 0.017 -0.012 -0.097 -0.125 0.053 21 -0.013 -0.005 -0.036 -0.008 0.075 22 -0.107 -0.088 -0.091 0.011 -0.309 23 -0.017 -0.055 0.023 0.052 0.023 24 -0.028 -0.070 -0.011 -0.070 -0.048 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 16 17 18 19 20 ________ ________ ________ ________ ________ 16 1.000 17 -0.482 1.000 18 0.054 -0.224 1.000 19 0.129 -0.059 -0.042 1.000 20 -0.008 -0.020 0.373 -0.065 1.000 21 0.139 -0.120 0.127 -0.892 0.092 22 -0.343 0.534 -0.639 -0.124 -0.216 23 0.120 -0.093 0.066 -0.068 0.244 24 -0.057 0.085 -0.199 0.010 -0.676 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 21 22 23 24 ________ ________ ________ ________ 21 1.000 22 -0.130 1.000 23 0.199 -0.148 1.000 24 -0.067 0.240 -0.346 1.000
ec76719983ccb325369e768d206ce46fe3ff21c4
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/tweet/bow/bow.4_20.tst
7920c9dede879c0db283e34e8c1d12eb03b9efc6
[]
no_license
mandar15/NLP_Project
3142cda82d49ba0ea30b580c46bdd0e0348fe3ec
1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2
refs/heads/master
2020-05-20T13:36:05.842840
2013-07-31T06:53:59
2013-07-31T06:53:59
6,534,406
0
1
null
null
null
null
UTF-8
Scilab
false
false
41,357
tst
bow.4_20.tst
4 8:0.05 17:0.3333333333333333 28:1.0 81:0.3333333333333333 206:0.25 268:1.0 402:1.0 488:1.0 761:1.0 762:1.0 880:1.0 990:1.0 1446:0.3333333333333333 1447:1.0 1620:1.0 2088:1.0 2330:1.0 2607:0.5 3090:1.0 3091:1.0 3735:1.0 4 8:0.1 14:0.5 31:0.42857142857142855 37:0.1111111111111111 54:0.5 58:0.09090909090909091 95:0.5 127:1.0 164:0.3333333333333333 184:1.0 201:0.25 202:2.0 295:1.0 296:1.0 332:1.0 482:1.0 537:1.0 542:1.0 548:0.06666666666666667 691:0.5 726:1.0 727:1.0 898:0.038461538461538464 1113:2.0 1340:1.0 1610:1.0 1644:1.0 1898:1.0 2606:1.0 2607:0.5 2734:1.0 2756:1.0 4 8:0.05 14:0.25 21:0.5 27:0.010752688172043012 31:0.2857142857142857 45:1.0 58:0.09090909090909091 65:0.3333333333333333 81:0.3333333333333333 107:0.5 115:1.0 127:1.0 196:1.0 234:1.0 524:1.0 548:0.06666666666666667 726:1.0 898:0.038461538461538464 958:1.0 989:1.0 1090:1.0 1151:1.0 1644:2.0 2191:1.0 5242:1.0 4 1:0.043478260869565216 31:0.14285714285714285 45:1.0 54:0.5 65:0.3333333333333333 88:0.5 99:0.5 129:0.5 134:0.16666666666666666 175:0.5 259:0.2 285:1.0 300:1.0 439:0.5 448:1.0 462:1.0 537:1.0 548:0.06666666666666667 728:1.0 798:1.0 866:1.0 989:1.0 1151:1.0 1241:1.0 1341:1.0 2117:1.0 3221:1.0 3261:1.0 3484:1.0 4113:0.5 4 7:0.125 8:0.05 14:0.25 30:1.0 31:0.2857142857142857 32:1.0 45:1.0 58:0.09090909090909091 65:0.3333333333333333 144:0.2 184:1.0 281:0.5 312:0.5 417:0.3333333333333333 437:1.0 499:1.0 500:1.0 610:1.0 741:1.0 1003:1.0 1141:1.0 1298:1.0 1494:1.0 1569:1.0 1573:1.0 1761:1.0 1775:1.0 1810:1.0 1815:1.0 4832:1.0 4 8:0.15 14:0.25 17:0.3333333333333333 27:0.010752688172043012 31:0.42857142857142855 88:0.5 123:0.3333333333333333 129:0.5 133:0.5 134:0.16666666666666666 153:0.3333333333333333 161:0.047619047619047616 164:0.3333333333333333 175:0.5 255:1.0 259:0.4 281:2.0 285:1.0 287:1.0 288:1.0 300:1.0 453:1.0 462:1.0 490:1.0 491:1.0 497:1.0 501:0.5 576:1.0 593:0.5 742:1.0 743:1.0 789:1.0 798:1.0 1064:1.0 1079:1.0 1143:1.0 1387:1.0 1549:0.3333333333333333 2323:1.0 2546:1.0 2607:0.5 2874:1.0 2875:1.0 2959:1.0 3261:1.0 4113:0.5 4 8:0.05 14:0.25 17:0.6666666666666666 27:0.010752688172043012 31:0.42857142857142855 37:0.1111111111111111 45:1.0 88:0.5 129:0.5 174:0.08333333333333333 175:0.5 239:0.3333333333333333 259:0.4 285:1.0 300:1.5 462:1.0 798:1.0 870:1.0 1054:1.0 1242:1.0 1421:1.0 1428:1.0 1664:1.0 1848:1.0 2164:1.0 2222:1.0 2388:1.0 3261:1.0 3291:1.0 4 7:0.125 8:0.1 21:1.0 22:0.2 30:1.0 31:0.2857142857142857 58:0.09090909090909091 99:0.25 107:1.0 116:1.0 129:0.5 131:0.5 133:0.5 144:0.2 145:0.2 164:0.3333333333333333 169:0.1111111111111111 174:0.08333333333333333 219:1.0 259:1.0 281:0.5 312:0.5 377:1.0 437:1.0 499:1.0 500:1.0 528:0.3333333333333333 551:0.3333333333333333 610:1.0 888:1.0 889:3.0 927:1.0 980:1.0 992:3.0 1432:1.0 1494:1.0 1573:1.0 1775:1.0 1810:1.0 2328:1.0 3246:1.0 3253:1.0 4 1:0.043478260869565216 8:0.1 12:0.5 14:0.25 22:0.2 31:0.2857142857142857 45:2.0 50:0.25 58:0.18181818181818182 88:0.5 95:0.5 96:1.0 129:0.5 134:0.16666666666666666 142:1.0 144:0.2 162:2.0 175:0.5 193:0.058823529411764705 259:0.2 285:1.0 291:1.0 295:1.0 296:1.0 300:1.0 342:1.0 437:1.0 439:0.5 462:1.0 798:1.0 870:1.0 1087:0.5 1201:1.0 1245:1.0 1704:1.0 1783:1.0 1931:1.0 2218:1.0 2297:1.0 2607:0.5 2638:0.5 2801:1.0 2874:1.0 2875:1.0 3261:1.0 4113:0.5 5366:1.0 4 1:0.043478260869565216 8:0.1 14:0.25 22:0.2 31:0.2857142857142857 41:0.5 45:2.0 58:0.09090909090909091 61:1.0 84:1.0 88:0.5 95:0.25 96:1.0 129:0.5 134:0.16666666666666666 174:0.08333333333333333 175:0.5 187:1.0 188:1.0 214:0.5 216:1.0 234:1.0 235:1.0 259:0.4 285:1.0 295:1.0 300:1.0 342:1.0 437:1.0 453:1.0 462:1.0 798:1.0 954:0.5 1072:1.0 1148:1.0 1201:1.0 1704:1.0 1783:1.0 2218:1.0 2297:1.0 2607:0.5 3209:0.2 3261:1.0 4113:0.5 4 1:0.043478260869565216 8:0.1 14:0.25 17:0.3333333333333333 21:0.5 24:0.5 27:0.010752688172043012 28:1.0 107:0.5 134:0.16666666666666666 141:1.0 142:1.0 144:0.2 168:1.0 172:1.0 201:0.25 281:1.0 291:1.0 333:1.0 338:1.0 433:1.0 446:1.0 496:1.0 499:1.0 517:1.0 523:0.5 653:1.0 654:1.0 769:1.0 829:1.0 1070:1.0 1255:1.0 1439:1.0 1810:1.0 1815:1.0 1947:1.0 4 1:0.043478260869565216 6:1.0 8:0.1 27:0.010752688172043012 30:1.0 45:3.0 46:1.0 51:1.0 58:0.18181818181818182 91:1.0 137:1.0 153:0.3333333333333333 169:0.1111111111111111 234:1.0 259:0.2 280:1.0 281:0.5 282:1.0 287:1.0 288:1.0 355:1.0 464:1.0 502:1.0 538:0.5 630:1.0 686:1.0 733:1.0 742:1.0 954:0.5 1102:0.5 1628:1.0 1632:1.0 2607:0.5 2709:1.0 4 8:0.1 14:0.25 24:0.5 27:0.010752688172043012 31:0.14285714285714285 37:0.1111111111111111 45:2.0 88:0.5 133:0.5 139:0.5 145:0.2 155:1.0 162:1.0 172:1.0 268:1.0 275:1.0 291:1.0 304:1.0 306:1.0 332:1.0 422:1.0 433:1.0 514:1.0 596:1.0 697:0.5 699:0.25 800:1.0 861:1.0 877:1.0 919:1.0 1856:1.0 1979:1.0 2451:1.0 2523:1.0 2530:1.0 2607:0.5 3516:1.0 4 1:0.043478260869565216 8:0.15 14:0.25 21:0.5 26:1.0 27:0.010752688172043012 31:0.14285714285714285 45:1.0 129:0.5 134:0.16666666666666666 175:0.5 196:1.0 259:0.2 285:1.0 300:1.0 312:0.5 328:0.16666666666666666 439:0.5 462:1.0 798:1.0 819:1.0 1065:0.5 1102:0.5 1484:1.0 2124:1.0 2260:1.0 2478:1.0 2607:0.5 2661:1.0 2857:1.0 2874:1.0 2903:1.0 3261:1.0 3336:1.0 4113:0.5 5366:1.0 4 1:0.08695652173913043 8:0.1 14:0.75 22:0.4 27:0.010752688172043012 31:0.14285714285714285 45:1.0 65:0.3333333333333333 69:1.0 77:0.5 123:0.3333333333333333 129:0.5 130:1.0 134:0.16666666666666666 138:1.0 152:1.0 162:1.0 175:0.5 184:1.0 193:0.14705882352941177 197:1.0 204:1.0 205:1.0 212:0.5 259:0.2 285:2.0 300:1.0 301:0.5 375:1.0 409:0.3333333333333333 433:1.0 439:0.5 448:1.0 449:0.5 453:1.0 462:1.0 514:1.0 667:1.0 741:1.0 745:1.0 798:1.0 849:1.0 1065:0.5 1113:1.0 2874:1.0 3261:1.0 3264:1.0 3265:1.0 3336:1.0 4113:0.5 4 1:0.043478260869565216 8:0.15 14:0.25 17:0.3333333333333333 27:0.010752688172043012 31:0.2857142857142857 32:1.0 36:1.0 45:2.0 65:0.3333333333333333 75:1.0 99:0.25 115:1.0 144:0.2 145:0.2 162:1.0 174:0.08333333333333333 200:1.0 202:1.0 239:0.3333333333333333 259:0.2 312:0.5 346:0.5 391:1.0 462:1.0 573:1.0 657:1.0 846:1.0 1054:1.0 1064:1.0 1220:1.0 1564:1.0 1777:1.0 1801:1.0 1811:1.0 2347:1.0 2676:1.0 3037:1.0 3261:2.0 3272:1.0 3518:1.0 4 7:0.125 8:0.15 31:0.42857142857142855 44:0.5 45:3.0 58:0.18181818181818182 84:1.0 111:1.0 123:0.3333333333333333 133:0.5 155:1.0 162:2.0 181:0.07142857142857142 184:1.0 190:1.0 218:1.0 234:1.0 259:0.2 263:1.0 268:1.0 288:1.0 317:1.0 335:1.0 338:1.0 344:1.0 446:1.0 451:1.0 677:1.0 800:1.0 853:1.0 876:1.0 937:2.0 1220:1.0 1392:1.0 1405:0.5 1616:1.0 1777:1.0 2106:1.0 4 7:0.125 14:0.75 17:0.6666666666666666 21:0.5 37:0.1111111111111111 45:1.0 58:0.09090909090909091 88:0.5 145:0.2 146:1.0 160:1.0 164:0.3333333333333333 169:0.1111111111111111 175:0.5 212:0.5 232:1.0 259:0.2 266:0.5 281:0.5 285:1.0 342:1.0 373:1.0 377:1.0 391:1.0 495:1.0 496:1.0 537:1.0 699:0.25 847:1.0 988:1.0 1065:0.5 1123:1.0 1126:1.0 1203:1.0 1278:1.0 1382:0.2 1478:1.0 1519:1.0 1669:1.0 2996:1.0 3276:1.0 3277:1.0 4946:1.0 4 1:0.043478260869565216 7:0.25 24:1.0 27:0.010752688172043012 30:1.0 31:0.14285714285714285 45:2.0 58:0.2727272727272727 137:1.0 144:0.2 148:1.0 150:1.0 169:0.1111111111111111 174:0.08333333333333333 175:0.5 232:1.0 259:0.4 363:1.0 364:1.0 422:1.0 437:1.0 667:1.0 686:1.0 1012:0.5 1773:1.0 2294:1.0 2607:0.5 4 7:0.25 8:0.3 12:0.5 14:0.25 17:0.3333333333333333 27:0.021505376344086023 31:0.2857142857142857 37:0.1111111111111111 54:0.5 81:0.3333333333333333 86:0.5 134:0.16666666666666666 141:1.0 142:1.0 144:0.2 145:0.2 162:1.0 174:0.08333333333333333 181:0.07142857142857142 182:1.0 184:1.0 237:1.0 259:0.2 281:0.5 305:0.25 319:1.0 374:1.0 391:1.0 404:1.0 499:1.0 500:1.0 501:0.5 653:1.0 688:1.0 980:1.0 1149:1.0 1369:1.0 1519:1.0 1808:1.0 1815:1.0 2093:1.0 2095:1.0 2260:1.0 2388:1.0 2607:0.5 2845:1.0 2846:1.0 2851:1.0 3209:0.2 3329:1.0 4 14:0.25 45:4.0 51:2.0 99:0.25 130:1.0 134:0.16666666666666666 141:1.0 153:0.3333333333333333 174:0.08333333333333333 197:1.0 259:0.2 281:1.0 282:1.0 285:2.0 286:1.0 287:1.0 288:1.0 291:1.0 373:1.0 519:1.0 742:1.0 1719:0.5 1777:1.0 2910:1.0 4 8:0.1 14:0.25 17:0.6666666666666666 24:0.5 31:0.14285714285714285 45:1.0 58:0.09090909090909091 59:1.0 116:1.0 134:0.16666666666666666 139:0.5 145:0.2 169:0.1111111111111111 291:1.0 301:0.5 391:2.0 404:1.0 420:0.3333333333333333 421:1.0 422:1.0 519:1.0 604:1.0 632:1.0 1070:1.0 1618:1.0 1815:1.0 1816:1.0 1923:1.0 2362:1.0 3442:1.0 3500:1.0 4 8:0.05 17:0.6666666666666666 21:0.5 31:0.42857142857142855 45:2.0 58:0.09090909090909091 84:1.0 86:0.5 115:1.0 164:0.3333333333333333 187:1.0 188:1.0 234:1.0 252:0.5 259:0.2 261:1.0 321:0.3333333333333333 322:1.0 326:0.5 425:0.3333333333333333 581:1.0 634:1.0 750:1.0 765:1.0 846:1.0 952:0.5 988:1.0 1492:1.0 2658:1.0 3500:1.0 4 8:0.15 14:0.25 17:0.3333333333333333 27:0.010752688172043012 31:0.2857142857142857 32:1.0 37:0.1111111111111111 45:1.0 58:0.18181818181818182 88:0.5 123:0.3333333333333333 139:0.5 145:0.2 202:2.0 227:1.0 263:1.0 281:1.0 285:1.0 295:1.0 373:1.0 391:1.0 401:0.3333333333333333 404:1.0 448:1.0 453:1.0 489:1.0 980:1.0 1012:0.5 1280:1.0 1545:1.0 2564:1.0 3888:1.0 4 1:0.043478260869565216 8:0.3 17:0.3333333333333333 21:0.5 22:0.2 24:0.5 27:0.010752688172043012 31:0.42857142857142855 45:1.0 58:0.09090909090909091 129:0.5 130:1.0 137:1.0 141:1.0 142:1.0 144:0.2 145:0.2 259:0.4 285:1.0 295:1.0 301:0.5 373:1.0 377:1.0 437:1.0 458:1.0 523:0.5 632:1.0 688:1.0 767:1.0 845:1.0 900:1.0 1095:1.0 1497:1.0 1519:1.0 1520:1.0 1664:1.0 2240:0.5 2733:1.0 2851:1.0 2874:1.0 2875:1.0 4134:1.0 4 8:0.05 12:0.5 14:0.25 17:0.3333333333333333 45:2.0 61:1.0 128:0.16666666666666666 129:1.0 145:0.2 174:0.08333333333333333 202:1.0 304:1.0 420:0.3333333333333333 475:1.0 489:1.0 900:1.0 954:0.5 1053:1.0 1387:1.0 1413:1.0 3102:1.0 3847:1.0 4 24:0.5 31:0.14285714285714285 58:0.09090909090909091 101:1.0 123:0.3333333333333333 139:0.5 259:0.2 266:0.5 275:1.0 293:1.0 301:0.5 373:1.0 475:1.0 490:1.0 491:1.0 492:1.0 501:0.5 642:1.0 718:0.3333333333333333 742:1.0 1225:1.0 1230:0.5 4134:1.0 4 7:0.125 8:0.1 14:0.25 17:0.6666666666666666 22:0.2 23:0.25 31:0.2857142857142857 58:0.09090909090909091 69:1.0 88:0.5 99:0.25 145:0.2 154:1.0 162:1.0 169:0.1111111111111111 178:1.0 239:0.3333333333333333 240:1.0 259:0.2 268:1.0 285:1.0 391:1.0 404:1.0 632:1.0 634:1.0 803:1.0 1135:1.0 1256:1.0 1519:1.0 3149:1.0 4 8:0.2 17:0.6666666666666666 21:1.0 24:0.5 30:1.0 31:0.14285714285714285 45:4.0 58:0.18181818181818182 88:0.5 99:0.25 101:1.0 123:0.3333333333333333 130:1.0 134:0.16666666666666666 141:1.0 142:1.0 161:0.047619047619047616 169:0.1111111111111111 187:1.0 193:0.058823529411764705 204:1.0 409:0.3333333333333333 445:2.0 477:0.07692307692307693 482:2.0 507:0.3333333333333333 514:1.0 532:1.0 600:0.2 604:1.0 686:1.0 691:0.5 718:0.3333333333333333 726:1.0 788:1.0 798:1.0 902:1.0 930:1.0 1050:1.0 1054:1.0 1113:1.0 1259:1.0 1427:1.0 1502:1.0 2240:0.5 2787:1.0 3539:1.0 3967:1.0 5242:1.0 4 8:0.1 12:1.0 17:0.3333333333333333 21:0.5 22:0.2 23:0.25 27:0.021505376344086023 31:0.42857142857142855 37:0.1111111111111111 45:1.0 58:0.09090909090909091 88:0.5 94:1.0 99:0.5 145:0.2 175:0.5 178:1.0 346:0.5 507:0.3333333333333333 576:1.0 954:0.5 956:1.0 988:1.0 1089:1.0 1257:1.0 1490:1.0 1772:1.0 3121:1.0 3122:1.0 3123:1.0 3125:1.0 3300:1.0 4286:0.5 5369:1.0 4 8:0.1 12:0.5 14:0.25 21:1.5 31:0.14285714285714285 45:1.0 54:0.5 88:0.5 99:0.25 115:1.0 123:0.3333333333333333 142:1.0 174:0.08333333333333333 196:1.0 259:0.2 298:1.0 328:0.16666666666666666 332:1.0 339:1.0 438:1.0 556:1.0 576:1.0 589:1.0 805:1.0 870:1.0 988:1.0 1040:1.0 1330:1.0 1496:1.0 1632:1.0 2709:1.0 2857:1.0 2911:1.0 3095:1.0 3133:1.0 3134:1.0 3135:1.0 4684:1.0 4 8:0.05 14:0.25 17:0.3333333333333333 21:0.5 23:0.25 27:0.010752688172043012 31:0.2857142857142857 45:2.0 54:0.5 58:0.09090909090909091 61:1.0 86:0.5 130:1.0 164:0.3333333333333333 189:0.5 193:0.058823529411764705 226:1.0 260:1.0 295:1.0 298:1.0 312:0.5 350:0.5 439:0.5 699:0.25 870:1.0 975:1.0 1113:1.0 1176:1.0 1227:2.0 1548:1.0 2606:1.0 2785:1.0 2972:1.0 3090:1.0 3091:1.0 3260:1.0 3262:1.0 3574:1.0 4603:1.0 4 1:0.043478260869565216 17:0.6666666666666666 23:0.25 27:0.010752688172043012 31:0.42857142857142855 40:0.5 45:2.0 51:1.0 55:1.0 58:0.18181818181818182 88:1.0 123:0.3333333333333333 131:0.5 134:0.16666666666666666 154:1.0 161:0.047619047619047616 164:1.0 178:1.0 259:0.4 266:0.5 281:1.5 285:1.0 346:0.5 400:0.3333333333333333 433:1.0 518:1.0 573:1.0 576:1.0 609:1.0 811:1.0 988:1.0 1040:1.0 1064:1.0 1083:1.0 1126:1.0 1150:1.0 1588:1.0 1649:1.0 1962:1.0 2310:0.5 2323:1.0 2959:1.0 3278:1.0 5078:1.0 5151:1.0 4 6:1.0 8:0.05 12:0.5 14:0.25 17:0.3333333333333333 31:0.2857142857142857 37:0.1111111111111111 45:3.0 81:0.3333333333333333 88:0.5 115:1.0 142:1.0 161:0.047619047619047616 212:0.5 282:1.0 604:1.0 659:1.0 699:0.25 737:1.0 965:1.0 1053:1.0 1174:1.0 1854:1.0 2031:1.0 2357:1.0 2750:1.0 4751:1.0 4 6:1.0 7:0.125 8:0.05 14:0.25 17:1.3333333333333333 24:0.5 27:0.010752688172043012 31:0.14285714285714285 37:0.1111111111111111 88:0.5 95:0.25 115:1.0 134:0.16666666666666666 162:1.0 167:1.0 188:1.0 189:0.5 193:0.029411764705882353 196:1.0 202:1.0 300:1.0 302:1.0 330:1.0 437:1.0 438:1.0 528:0.3333333333333333 699:0.25 827:0.5 860:1.0 965:1.0 975:1.0 1239:1.0 1439:1.0 1757:1.0 4168:1.0 4 8:0.1 14:0.25 17:0.6666666666666666 27:0.010752688172043012 31:0.14285714285714285 65:0.3333333333333333 88:0.5 142:1.0 206:0.25 212:0.5 268:1.0 312:0.5 404:1.0 423:1.0 438:1.0 1039:1.0 1145:0.2 1255:1.0 1256:1.0 1538:1.0 2088:1.0 2090:1.0 4168:1.0 4 1:0.043478260869565216 14:0.25 17:0.3333333333333333 24:0.5 27:0.010752688172043012 45:3.0 58:0.09090909090909091 99:0.25 134:0.16666666666666666 142:2.0 145:0.2 146:1.0 204:1.0 259:0.2 281:1.0 282:1.0 382:1.0 437:1.0 443:1.0 445:1.0 489:1.0 490:1.0 491:1.0 492:1.0 493:1.0 837:1.0 1102:0.5 1141:1.0 1145:0.2 1255:1.0 1256:1.0 1382:0.2 1550:1.0 2261:1.0 2584:1.0 4946:1.0 4 1:0.043478260869565216 8:0.1 17:0.3333333333333333 23:0.25 24:0.5 27:0.010752688172043012 44:0.5 51:3.0 65:0.3333333333333333 88:0.5 162:5.0 211:1.0 234:1.0 312:0.5 317:1.0 352:1.0 508:1.0 553:1.0 764:1.0 908:1.0 988:1.0 1039:1.0 1102:1.5 1261:1.0 2338:1.0 2501:1.0 2954:2.0 4 8:0.2 12:0.5 17:0.3333333333333333 21:1.0 27:0.03225806451612903 31:0.14285714285714285 32:1.0 37:0.2222222222222222 45:2.0 54:0.5 134:0.16666666666666666 178:1.0 184:1.0 189:0.5 226:1.0 232:1.0 440:1.0 840:1.0 841:1.0 911:1.0 919:1.0 1088:2.0 1545:1.0 1652:1.0 3071:1.0 3421:1.0 3682:1.0 4 1:0.043478260869565216 6:2.0 8:0.1 14:0.25 27:0.021505376344086023 28:1.0 30:1.0 32:1.0 44:0.5 45:6.0 58:0.36363636363636365 84:1.0 91:1.0 95:0.25 116:1.0 123:0.3333333333333333 128:0.16666666666666666 139:0.5 144:0.2 162:1.0 166:1.0 211:1.0 212:0.5 234:1.0 237:1.0 262:0.5 281:1.0 282:1.0 317:1.0 338:1.0 342:1.0 344:1.0 446:1.0 454:1.0 494:1.0 496:1.0 637:1.0 653:1.0 847:1.0 954:0.5 980:1.0 1070:1.0 1298:1.0 1405:0.5 1455:1.0 1734:1.0 2557:1.0 5321:1.0 4 1:0.043478260869565216 2:0.5 8:0.1 12:0.5 14:0.25 17:0.3333333333333333 24:0.5 27:0.010752688172043012 45:2.0 88:0.5 115:1.0 123:0.6666666666666666 139:0.5 190:1.0 193:0.029411764705882353 228:1.0 259:0.2 275:1.0 281:0.5 342:1.0 346:1.0 489:1.0 866:2.0 867:1.0 970:1.0 1054:1.0 1151:1.0 1256:1.0 1368:1.0 1420:1.0 1487:2.0 1649:1.0 1668:1.0 2029:1.0 2065:1.0 2722:2.0 2723:1.0 2996:1.0 3761:1.0 4946:1.0 4 3:1.0 6:1.0 7:0.25 8:0.2 14:0.5 17:0.3333333333333333 19:1.0 21:1.5 27:0.010752688172043012 37:0.2222222222222222 45:1.0 50:0.25 95:0.25 114:1.0 115:1.0 134:0.16666666666666666 154:1.0 155:1.0 156:1.0 157:1.0 184:1.0 204:1.0 232:1.0 237:1.0 310:1.0 333:2.0 417:0.3333333333333333 440:1.0 502:1.0 628:1.0 667:1.0 675:1.0 840:1.0 1088:2.0 1113:1.0 2031:1.0 2051:1.0 2095:1.0 2732:1.0 2733:1.0 2734:1.0 3237:1.0 3278:1.0 4182:1.0 4 1:0.08695652173913043 17:0.3333333333333333 27:0.021505376344086023 45:1.0 50:0.25 51:1.0 58:0.18181818181818182 61:1.0 81:0.3333333333333333 88:0.5 95:0.75 206:0.25 268:1.0 344:1.0 440:1.0 710:1.0 726:1.0 1050:0.5 1064:1.0 1143:1.0 1549:0.3333333333333333 1566:1.0 2011:1.0 2044:1.0 2088:1.0 2243:1.0 2244:1.0 2245:1.0 2254:1.0 2255:1.0 2984:1.0 4 1:0.08695652173913043 7:0.125 14:0.5 27:0.021505376344086023 37:0.1111111111111111 45:1.0 50:0.25 88:0.5 95:0.25 123:0.3333333333333333 142:1.0 187:1.0 188:1.0 212:0.5 259:0.2 295:1.0 355:1.0 382:1.0 486:0.5 553:1.0 554:1.0 555:1.0 622:1.0 631:1.0 649:0.3333333333333333 805:1.0 877:1.0 1054:1.0 1071:1.0 1177:1.0 1245:1.0 1262:1.0 2044:1.0 2210:0.5 2255:1.0 2341:1.0 2617:1.0 4898:1.0 4 7:0.25 8:0.3 21:0.5 31:0.14285714285714285 37:0.1111111111111111 45:1.0 65:0.3333333333333333 123:0.3333333333333333 134:0.16666666666666666 169:0.1111111111111111 186:1.0 190:1.0 226:1.0 266:0.5 277:1.0 278:1.0 280:1.0 367:1.0 438:1.0 486:0.5 497:1.0 501:0.5 507:0.3333333333333333 519:1.0 610:1.0 710:1.0 800:1.0 850:1.0 987:1.0 1071:1.0 1089:1.0 1149:1.0 1841:1.0 2244:1.0 2252:1.0 2709:1.0 2922:1.0 4216:1.0 4620:1.0 4 1:0.08695652173913043 7:0.125 8:0.15 14:0.5 17:1.6666666666666667 27:0.021505376344086023 31:0.2857142857142857 37:0.1111111111111111 50:0.25 93:5.0 95:0.5 99:1.0 123:0.3333333333333333 127:2.0 129:2.5 152:1.0 162:1.0 174:0.16666666666666666 184:1.0 193:0.029411764705882353 218:1.0 259:0.2 267:0.5 483:1.0 537:1.0 700:2.0 726:2.0 841:1.0 891:1.0 1231:1.0 1305:1.0 1341:1.0 1424:0.25 1996:1.0 2255:1.0 2278:1.0 2924:1.0 3261:1.0 4445:1.0 4 6:1.0 7:0.125 8:0.1 17:0.3333333333333333 31:0.2857142857142857 37:0.1111111111111111 44:0.5 45:3.0 50:0.25 52:2.0 58:0.2727272727272727 59:1.0 88:0.5 95:0.25 115:1.0 116:1.0 123:0.3333333333333333 130:1.0 142:2.0 155:1.0 162:2.0 169:0.1111111111111111 193:0.029411764705882353 203:1.0 259:0.2 266:1.0 273:0.3333333333333333 274:1.0 275:1.0 295:1.0 363:1.0 437:1.0 576:1.0 649:0.3333333333333333 653:1.0 960:1.0 1021:1.0 1030:1.0 1054:1.0 1123:1.0 1275:1.0 1405:0.5 1560:1.0 1664:1.0 1704:1.0 1734:1.0 1920:1.0 1962:1.0 2518:1.0 3260:1.0 3488:1.0 4428:1.0 4941:1.0 5557:1.0 5679:1.0 4 2:0.5 7:0.125 8:0.15 17:0.6666666666666666 31:0.42857142857142855 37:0.1111111111111111 45:2.0 58:0.09090909090909091 86:0.5 88:0.5 93:1.0 99:0.25 123:1.0 237:1.0 281:1.0 295:1.0 332:1.0 404:1.0 409:0.3333333333333333 433:1.0 437:1.0 448:2.0 519:1.0 710:1.0 980:2.0 986:1.0 1123:2.0 1315:1.0 1476:1.0 1808:1.0 2077:1.0 2244:1.0 2661:1.0 2899:1.0 2969:1.0 3001:1.0 3278:1.0 4054:1.0 5137:1.0 4 1:0.043478260869565216 8:0.05 14:0.25 17:0.3333333333333333 21:1.0 24:0.5 27:0.021505376344086023 31:0.14285714285714285 37:0.1111111111111111 45:1.0 88:0.5 232:1.0 268:1.0 289:1.0 363:1.0 404:1.0 508:2.0 649:0.3333333333333333 697:0.5 976:2.0 1065:1.0 1089:1.0 1456:1.0 2261:1.0 2573:1.0 2942:2.0 3263:1.0 4 1:0.043478260869565216 8:0.05 14:0.5 24:1.0 27:0.021505376344086023 31:0.14285714285714285 37:0.1111111111111111 45:3.0 58:0.09090909090909091 88:0.5 95:0.25 99:0.25 101:1.0 115:1.0 142:1.0 162:1.0 193:0.058823529411764705 228:1.0 232:1.0 259:0.4 346:0.5 363:1.0 364:1.0 417:0.3333333333333333 433:1.0 528:0.3333333333333333 651:1.0 653:1.0 845:1.0 877:1.0 970:1.0 971:1.0 1089:1.0 1123:2.0 1201:1.0 1212:1.0 1234:1.0 1309:1.0 1315:1.0 1487:1.0 1649:1.0 1839:1.0 2065:1.0 2294:1.0 2722:1.0 2723:1.0 3009:1.0 3063:1.0 3324:1.0 4509:1.0 4 7:0.125 8:0.2 17:0.3333333333333333 26:1.0 45:1.0 61:1.0 69:1.0 81:0.3333333333333333 88:0.5 101:1.0 154:1.0 155:2.0 193:0.029411764705882353 204:1.0 205:1.0 239:0.6666666666666666 295:1.0 327:1.0 483:1.0 522:0.25 576:1.0 830:1.0 834:1.0 861:1.0 869:1.0 970:1.0 1146:1.0 1460:1.0 1461:1.0 1462:1.0 1463:1.0 2031:1.0 2177:1.0 2709:1.0 2732:1.0 2736:1.0 4134:1.0 4 8:0.05 14:0.25 17:0.3333333333333333 24:0.5 26:1.0 27:0.010752688172043012 31:0.42857142857142855 37:0.2222222222222222 58:0.18181818181818182 95:0.25 134:0.16666666666666666 142:1.0 145:0.2 162:1.0 181:0.07142857142857142 182:1.0 188:1.0 189:0.5 193:0.08823529411764706 300:1.0 302:1.0 328:0.16666666666666666 337:1.0 374:1.0 377:1.0 483:1.0 827:0.5 860:1.0 1143:1.0 1201:1.0 1427:1.0 1545:1.0 1789:1.0 1864:1.0 1939:1.0 2763:1.0 5154:1.0 4 7:0.125 14:0.5 17:0.3333333333333333 23:0.25 24:0.5 26:1.0 27:0.021505376344086023 31:0.2857142857142857 37:0.2222222222222222 45:2.0 58:0.09090909090909091 95:0.25 123:0.3333333333333333 141:1.0 181:0.07142857142857142 182:1.0 193:0.029411764705882353 332:1.0 374:1.0 437:1.0 826:0.1111111111111111 877:1.0 919:1.0 1131:0.5 1545:1.0 1652:1.0 1745:1.0 2078:1.0 2354:1.0 2628:1.0 2913:1.0 3085:1.0 3283:1.0 3329:1.0 3387:1.0 4 7:0.125 14:0.25 17:0.3333333333333333 21:0.5 23:0.25 24:1.0 31:0.42857142857142855 32:1.0 44:0.5 45:1.0 50:0.25 58:0.2727272727272727 81:0.3333333333333333 131:0.5 137:2.0 139:0.5 142:1.0 239:0.3333333333333333 266:0.5 281:0.5 285:1.0 420:0.3333333333333333 494:1.0 501:1.0 593:0.5 686:1.0 687:1.0 688:2.0 689:2.0 728:1.0 742:1.0 988:1.0 1241:1.0 1291:1.0 1613:1.0 2050:1.0 2482:1.0 2886:1.0 3334:1.0 4341:1.0 4 8:0.05 17:0.3333333333333333 21:0.5 27:0.010752688172043012 31:0.14285714285714285 37:0.2222222222222222 45:1.0 142:1.0 145:0.2 160:1.0 259:0.2 280:1.0 281:1.0 285:1.0 382:1.0 423:1.0 483:1.0 486:0.5 516:1.0 523:0.5 634:1.0 827:0.5 838:1.0 847:1.0 1124:1.0 1219:0.5 1244:1.0 1484:1.0 2235:2.0 2903:1.0 4 7:0.25 8:0.1 14:0.25 17:0.3333333333333333 21:1.0 22:0.2 31:0.14285714285714285 45:3.0 46:1.0 58:0.09090909090909091 99:0.25 128:0.16666666666666666 130:1.0 142:1.0 145:0.2 146:1.0 162:1.0 190:1.0 200:1.0 214:0.5 232:1.0 239:0.3333333333333333 259:0.8 260:2.0 281:0.5 282:1.0 293:1.0 295:1.0 311:1.0 328:0.16666666666666666 342:1.0 363:1.0 404:1.0 446:1.0 494:1.0 495:1.0 630:1.0 988:1.0 992:1.0 1021:1.0 1065:0.5 1070:1.0 1483:1.0 1586:1.0 1611:1.0 1754:1.0 1925:1.0 2261:1.0 2797:1.0 3009:1.0 3041:1.0 3263:1.0 3456:1.0 4401:2.0 5390:1.0 4 8:0.15 22:0.2 31:0.14285714285714285 37:0.1111111111111111 41:0.5 45:1.0 65:0.3333333333333333 84:1.0 85:1.0 99:0.25 129:0.5 145:0.2 162:1.0 174:0.08333333333333333 187:1.0 188:1.0 234:1.0 259:0.4 338:1.0 361:1.0 371:1.0 486:0.5 542:2.0 927:1.0 1239:1.0 1569:1.0 1944:1.0 2054:1.0 2055:1.0 2106:1.0 2709:1.0 2987:1.0 3192:1.0 4 7:0.375 8:0.1 27:0.010752688172043012 31:0.14285714285714285 37:0.2222222222222222 45:2.0 58:0.09090909090909091 60:1.0 65:0.3333333333333333 95:0.5 123:0.3333333333333333 184:1.0 187:1.0 193:0.029411764705882353 234:1.0 260:1.0 266:0.5 333:2.0 376:1.0 391:1.0 486:0.5 489:1.0 548:0.06666666666666667 663:1.0 675:2.0 699:0.25 962:1.0 1141:1.0 1313:1.0 1708:1.0 2258:1.0 2916:1.0 3419:1.0 4 6:1.0 8:0.15 17:0.3333333333333333 31:0.14285714285714285 32:1.0 37:0.1111111111111111 45:4.0 61:1.0 65:0.3333333333333333 81:0.3333333333333333 84:1.0 88:0.5 90:0.14285714285714285 95:0.25 116:2.0 145:0.2 146:1.0 162:1.0 186:1.0 187:1.0 188:1.0 202:1.0 216:1.0 235:1.0 274:1.0 280:1.0 281:0.5 282:1.0 486:0.5 523:0.5 548:0.06666666666666667 576:2.0 653:1.0 908:1.0 909:1.0 911:1.0 1070:1.0 1405:1.0 1455:1.0 1499:1.0 1598:0.2 1734:2.0 2256:1.0 2757:1.0 2844:1.0 3105:1.0 4 8:0.25 14:0.5 17:0.3333333333333333 31:0.42857142857142855 37:0.1111111111111111 44:0.5 45:2.0 54:1.0 74:0.5 86:0.5 100:1.0 127:1.0 154:1.0 198:1.0 232:1.0 234:1.0 268:2.0 399:1.0 418:1.0 437:1.0 508:1.0 519:1.0 542:1.0 548:0.13333333333333333 554:1.0 556:1.0 686:1.0 822:1.0 926:1.0 1030:1.0 1064:1.0 1065:0.5 1090:1.0 1105:1.0 1418:1.0 1577:1.0 1946:1.0 1947:1.0 1961:1.0 2149:1.0 2329:1.0 2330:1.0 3273:1.0 3279:1.0 4951:1.0 4 7:0.125 8:0.3 14:0.25 17:0.3333333333333333 31:0.14285714285714285 38:2.0 40:0.5 45:5.0 65:0.3333333333333333 67:1.0 75:1.0 88:1.0 95:0.25 164:0.3333333333333333 184:1.0 233:1.0 234:1.0 259:0.2 268:2.0 285:1.0 288:1.0 298:1.0 304:1.0 355:1.0 382:1.0 453:1.0 454:1.0 542:1.0 548:0.13333333333333333 553:1.0 554:1.0 556:2.0 581:1.0 582:2.0 583:1.0 585:1.0 805:1.0 811:1.0 833:1.0 908:1.0 1154:1.0 1387:1.0 1490:1.0 1499:1.0 1814:1.0 2002:1.0 3244:1.0 3539:1.0 5117:1.0 4 7:0.125 8:0.15 12:0.5 14:0.5 21:0.5 23:0.25 27:0.010752688172043012 37:0.2222222222222222 45:2.0 50:0.25 51:2.0 52:1.0 55:1.0 57:1.0 58:0.09090909090909091 59:1.0 60:1.0 81:0.3333333333333333 101:1.0 134:0.16666666666666666 144:0.2 154:1.0 216:1.0 234:1.0 259:0.4 304:1.0 333:1.0 369:1.0 486:0.5 508:1.0 548:0.06666666666666667 551:0.3333333333333333 837:1.0 1048:1.0 1505:1.0 1549:0.3333333333333333 1586:1.0 2219:1.0 2346:1.0 2684:1.0 3248:1.0 3414:1.0 4 8:0.1 11:1.0 21:1.0 31:0.14285714285714285 32:1.0 37:0.1111111111111111 50:0.25 51:1.0 54:0.5 81:0.6666666666666666 88:0.5 142:1.0 144:0.2 196:1.0 216:1.0 281:0.5 312:0.5 337:1.0 342:2.0 353:1.0 355:1.0 356:1.0 357:1.0 369:1.0 486:0.5 538:0.5 548:0.06666666666666667 551:0.3333333333333333 573:1.0 1405:0.5 1418:1.0 1597:1.0 1614:1.0 1641:1.0 2060:1.0 2288:1.0 2291:1.0 2433:1.0 3817:1.0 4 1:0.043478260869565216 14:0.25 17:0.3333333333333333 27:0.010752688172043012 37:0.1111111111111111 45:2.0 51:1.0 61:1.0 75:1.0 81:0.3333333333333333 86:0.5 88:1.0 144:0.2 154:1.0 155:1.0 169:0.1111111111111111 233:1.0 234:1.0 317:1.0 350:0.5 351:1.0 353:1.0 446:1.0 449:0.5 486:0.5 548:0.06666666666666667 556:1.0 653:1.0 654:1.0 655:1.0 657:1.0 658:1.0 1189:0.25 1972:1.0 1978:1.0 2394:1.0 3484:1.0 4 7:0.125 8:0.1 14:0.25 17:0.6666666666666666 21:1.0 27:0.010752688172043012 37:0.2222222222222222 45:2.0 46:1.0 86:0.5 95:0.25 99:0.25 115:1.0 122:0.5 123:0.3333333333333333 124:1.0 125:1.0 126:1.0 127:1.0 128:0.16666666666666666 129:0.5 130:1.0 131:0.5 132:1.0 133:0.5 134:0.3333333333333333 135:1.0 155:1.0 174:0.08333333333333333 200:1.0 234:1.0 281:0.5 285:1.0 293:1.0 317:1.0 318:1.0 319:1.0 320:1.0 373:1.0 486:0.5 495:1.0 729:1.0 1454:1.0 2844:1.0 3696:1.0 4 1:0.08695652173913043 8:0.05 14:0.75 21:1.0 27:0.021505376344086023 31:0.7142857142857143 45:3.0 50:0.5 58:0.09090909090909091 88:0.5 95:0.25 122:0.5 187:2.0 193:0.029411764705882353 239:0.3333333333333333 250:1.0 259:0.4 260:1.0 281:0.5 437:1.0 453:1.0 669:1.0 670:1.0 671:1.0 672:1.0 827:1.0 900:1.0 949:2.0 1065:1.0 1235:1.0 1664:1.0 1963:1.0 2757:2.0 2962:2.0 3058:1.0 3351:1.0 5153:1.0 4 1:0.043478260869565216 7:0.125 17:1.0 22:0.4 26:2.0 27:0.010752688172043012 31:0.14285714285714285 32:1.0 37:0.2222222222222222 45:2.0 54:0.5 59:1.0 74:0.5 86:0.5 88:0.5 90:0.14285714285714285 101:3.0 112:1.0 113:1.0 115:1.0 122:0.5 123:0.6666666666666666 129:1.0 134:0.16666666666666666 162:1.0 164:0.3333333333333333 211:1.0 226:1.0 273:0.3333333333333333 290:2.0 333:1.0 417:0.3333333333333333 453:1.0 486:0.5 692:1.0 719:1.0 846:1.0 893:1.0 980:1.0 1597:1.0 1659:1.0 1798:1.0 2188:1.0 4418:1.0 4 1:0.043478260869565216 6:2.0 7:0.25 8:0.05 12:0.5 14:0.25 21:0.5 22:0.2 23:0.25 27:0.010752688172043012 37:0.2222222222222222 41:0.5 43:1.0 44:0.5 45:4.0 57:1.0 58:0.18181818181818182 81:0.3333333333333333 84:2.0 93:1.0 95:0.5 107:0.5 127:1.0 142:1.0 171:1.0 189:0.5 203:1.0 212:0.5 260:1.0 268:1.0 295:1.0 314:1.0 437:1.0 446:1.0 486:0.5 519:1.0 556:1.0 649:0.3333333333333333 747:1.0 786:1.0 826:0.1111111111111111 839:1.0 847:1.0 1059:0.3333333333333333 1064:1.0 1146:1.0 1147:1.0 1148:1.0 1577:1.0 2476:1.0 2870:1.0 5117:1.0 4 1:0.043478260869565216 3:1.0 8:0.15 14:0.25 17:0.3333333333333333 21:0.5 23:0.25 27:0.021505376344086023 31:0.42857142857142855 37:0.1111111111111111 45:1.0 48:1.0 65:0.3333333333333333 86:0.5 88:0.5 91:3.0 95:0.75 127:2.0 160:1.0 162:1.0 174:0.08333333333333333 192:0.3333333333333333 193:0.11764705882352941 198:1.0 259:0.4 273:0.3333333333333333 274:1.0 281:0.5 300:1.0 312:0.5 332:1.0 333:1.0 375:1.0 382:1.0 433:1.0 486:0.5 519:1.0 537:1.0 538:0.5 554:1.0 573:1.0 576:1.0 700:1.0 726:1.0 792:1.0 1010:1.0 1090:1.0 1261:1.0 1290:1.0 1291:1.0 1305:1.0 1341:1.0 1424:0.25 1503:1.0 2006:1.0 2026:1.0 2044:1.0 2310:0.5 2839:1.0 3017:1.0 4 1:0.08695652173913043 7:0.125 8:0.05 12:0.5 14:0.5 17:0.3333333333333333 22:0.2 27:0.021505376344086023 31:0.14285714285714285 32:1.0 45:1.0 51:1.0 58:0.09090909090909091 65:0.6666666666666666 86:0.5 91:1.0 162:1.0 192:0.3333333333333333 193:0.029411764705882353 202:1.0 212:0.5 259:0.4 266:0.5 273:0.3333333333333333 291:1.0 381:1.0 446:1.0 519:1.0 537:1.0 653:1.0 654:1.0 695:1.0 699:0.25 733:1.0 791:1.0 813:1.0 911:2.0 987:1.0 1030:1.0 1342:1.0 1439:2.0 2057:1.0 2073:1.0 3168:1.0 3209:0.2 3289:1.0 4 1:0.08695652173913043 2:0.5 7:0.125 8:0.05 12:0.5 17:1.0 21:0.5 27:0.021505376344086023 31:0.14285714285714285 44:0.5 45:1.0 58:0.09090909090909091 84:1.0 86:0.5 123:1.0 145:0.2 162:1.0 164:0.3333333333333333 166:1.0 169:0.1111111111111111 211:1.0 259:0.2 298:1.0 338:1.0 340:1.5 344:1.0 353:1.0 376:2.0 446:1.0 454:1.0 477:0.07692307692307693 497:1.0 519:1.0 747:1.0 826:0.1111111111111111 1157:2.0 1563:1.0 1599:1.0 1600:1.0 1853:1.0 1900:1.0 1996:1.0 3198:1.0 3288:1.0 4 1:0.043478260869565216 7:0.125 8:0.05 26:1.0 27:0.021505376344086023 31:0.2857142857142857 37:0.2222222222222222 41:0.5 43:1.0 44:0.5 45:1.0 52:1.0 58:0.09090909090909091 92:1.0 95:0.25 123:0.3333333333333333 133:0.5 181:0.07142857142857142 182:1.0 196:1.0 205:1.0 206:0.25 263:1.0 266:0.5 268:1.0 335:1.0 374:1.0 375:1.0 376:1.0 377:1.0 486:0.5 631:1.0 649:0.3333333333333333 907:0.5 962:1.0 1132:1.0 1155:1.0 1177:1.0 1337:1.0 1922:1.0 2088:1.0 2210:0.5 3369:1.0 4 1:0.043478260869565216 2:0.5 7:0.25 8:0.1 14:0.25 22:0.2 27:0.010752688172043012 31:0.14285714285714285 37:0.1111111111111111 38:1.0 45:2.0 88:0.5 123:1.0 127:1.0 130:1.0 142:1.0 202:2.0 218:1.0 342:1.0 355:1.0 448:1.0 486:0.5 537:1.0 539:1.0 540:1.0 669:1.0 908:1.0 1058:1.0 1090:1.0 1121:0.5 1186:1.0 1620:1.0 1621:1.0 1691:1.0 1711:2.0 1843:1.0 3115:1.0 3211:1.0 5327:1.0 4 3:1.0 7:0.125 8:0.4 24:0.5 27:0.010752688172043012 31:0.14285714285714285 38:1.0 45:2.0 57:1.0 61:1.0 65:0.3333333333333333 75:1.0 81:0.3333333333333333 84:1.0 88:0.5 99:0.25 114:1.0 123:0.3333333333333333 154:1.0 181:0.07142857142857142 184:2.0 234:3.0 235:1.0 298:1.0 319:1.0 328:0.16666666666666666 333:1.0 437:1.0 453:1.0 465:1.0 556:1.0 576:1.0 581:1.0 582:1.0 651:1.0 717:1.0 733:1.0 747:1.0 837:1.0 861:1.0 862:1.0 863:1.0 864:1.0 866:1.0 867:1.0 1214:1.0 1221:1.0 1417:1.0 1491:1.0 2074:1.0 2739:1.0 2857:1.0 4 1:0.043478260869565216 7:0.125 8:0.25 14:0.25 17:0.3333333333333333 21:0.5 23:0.25 27:0.021505376344086023 31:0.2857142857142857 37:0.1111111111111111 45:1.0 65:0.3333333333333333 88:0.5 95:0.25 101:1.0 106:1.0 107:0.5 174:0.08333333333333333 184:2.0 186:1.0 259:0.4 266:0.5 304:1.0 319:1.0 333:1.0 340:0.5 341:1.0 343:1.0 344:1.0 345:1.0 346:0.5 347:0.2 348:1.0 423:1.0 695:1.0 870:1.0 1143:1.0 1563:1.0 1586:1.0 1610:1.0 1841:1.0 2102:0.5 2388:1.0 4 1:0.043478260869565216 7:0.125 8:0.2 14:0.25 22:0.2 25:0.5 32:2.0 37:0.1111111111111111 45:2.0 86:0.5 88:1.5 92:1.0 95:1.0 101:1.0 144:0.2 161:0.047619047619047616 218:1.0 259:0.6 281:0.5 304:1.0 486:0.5 537:3.0 551:0.3333333333333333 573:1.0 608:0.5 1026:1.0 1054:1.0 1065:0.5 1309:1.0 1424:0.25 1846:0.5 1853:1.0 2254:1.0 2757:2.0 3058:1.0 4941:1.0 4942:1.0 4 1:0.043478260869565216 7:0.25 8:0.05 14:0.5 17:0.3333333333333333 21:1.0 22:0.2 24:0.5 26:2.0 27:0.010752688172043012 32:1.0 45:2.0 52:1.0 58:0.09090909090909091 59:1.0 75:1.0 76:1.0 91:1.0 99:0.5 107:0.5 129:1.0 145:0.2 164:0.3333333333333333 174:0.08333333333333333 178:1.0 184:1.0 192:0.3333333333333333 193:0.029411764705882353 202:1.0 219:1.0 226:1.0 233:1.0 259:1.4 263:1.0 281:0.5 295:1.0 298:1.0 304:2.0 528:0.3333333333333333 537:1.0 551:0.3333333333333333 792:1.0 889:1.0 898:0.038461538461538464 970:1.0 980:1.0 1338:1.0 1424:0.25 1644:1.0 1708:1.0 1719:0.5 1859:1.0 2684:1.0 3355:1.0 4139:1.0 4 6:2.0 8:0.25 21:0.5 22:0.2 24:0.5 31:0.14285714285714285 32:1.0 37:0.1111111111111111 44:0.5 45:4.0 58:0.18181818181818182 59:1.0 65:0.3333333333333333 75:1.0 84:3.0 88:1.0 92:1.0 95:0.25 115:1.0 116:1.0 129:1.0 142:1.0 144:0.2 162:3.0 192:0.3333333333333333 193:0.029411764705882353 259:0.4 268:1.0 281:0.5 301:0.5 338:2.0 446:1.0 486:0.5 489:1.0 558:1.0 573:1.0 581:1.0 582:1.0 609:1.0 649:0.3333333333333333 809:1.0 833:1.0 850:1.0 1026:1.0 1054:1.0 1143:1.0 1424:0.25 1427:1.0 1498:1.0 1783:2.0 1880:1.0 1996:1.0 1997:1.0 2142:2.0 2338:1.0 4 1:0.08695652173913043 6:1.0 7:0.125 8:0.15 14:0.25 21:0.5 23:0.25 27:0.03225806451612903 31:0.14285714285714285 37:0.1111111111111111 44:0.5 45:3.0 51:1.0 54:0.5 58:0.09090909090909091 81:0.3333333333333333 99:0.25 101:1.0 134:0.16666666666666666 164:0.3333333333333333 184:1.0 193:0.058823529411764705 234:1.0 312:1.0 314:1.0 328:0.16666666666666666 341:1.0 372:0.2 373:1.0 374:1.0 440:1.0 573:1.0 576:1.0 667:1.0 839:1.0 990:1.0 1088:2.0 1090:1.0 1577:1.0 1598:0.2 1691:1.0 1933:1.0 2329:1.0 2330:1.0 3967:1.0 4139:1.0 4397:1.0 4 6:1.0 7:0.125 8:0.2 17:0.3333333333333333 31:0.14285714285714285 37:0.1111111111111111 38:1.0 45:1.0 51:1.0 58:0.09090909090909091 59:1.0 60:1.0 88:0.5 90:0.14285714285714285 95:0.5 101:1.0 162:1.0 187:1.0 188:1.0 204:1.0 216:1.0 234:1.0 260:1.0 328:0.16666666666666666 355:1.0 382:1.0 433:1.0 453:2.0 582:1.0 599:1.0 653:1.0 717:1.0 747:1.0 900:1.0 929:0.5 1070:1.0 1459:1.0 1460:1.0 1462:1.0 1463:1.0 1478:1.0 3244:1.0 3407:1.0 5117:1.0 5390:1.0 4 1:0.043478260869565216 8:0.15 14:0.25 17:0.3333333333333333 22:0.2 26:1.0 27:0.010752688172043012 31:0.5714285714285714 37:0.1111111111111111 45:2.0 51:1.0 58:0.09090909090909091 81:0.6666666666666666 95:0.75 99:0.25 133:0.5 141:1.0 145:0.2 181:0.07142857142857142 182:1.0 234:1.0 288:1.0 310:1.0 328:0.16666666666666666 374:1.0 376:1.0 377:1.0 555:1.0 692:1.0 752:1.0 761:1.0 962:1.0 1026:1.0 1094:1.0 1219:0.5 1298:1.0 2093:1.0 2301:1.0 3247:1.0 3248:1.0 4607:1.0 4 1:0.043478260869565216 8:0.05 21:0.5 24:0.5 27:0.021505376344086023 28:1.0 31:0.5714285714285714 51:1.0 58:0.09090909090909091 81:0.6666666666666666 95:0.25 128:0.16666666666666666 133:0.5 137:1.0 162:1.0 178:1.0 181:0.07142857142857142 182:1.0 234:1.0 266:0.5 268:1.0 291:1.0 328:0.16666666666666666 355:1.0 356:1.0 357:1.0 373:1.0 440:1.0 453:1.0 490:1.0 491:1.0 492:1.0 514:1.0 686:1.0 687:1.0 742:1.0 1088:1.0 1143:1.0 1418:1.0 1563:1.0 1957:1.0 2060:1.0 4 1:0.043478260869565216 7:0.25 8:0.1 14:0.5 17:0.3333333333333333 22:0.2 31:0.14285714285714285 32:1.0 45:2.0 58:0.09090909090909091 65:0.3333333333333333 75:1.0 81:0.3333333333333333 88:0.5 101:1.0 116:1.0 133:0.5 134:0.16666666666666666 155:1.0 162:1.0 234:1.0 267:0.5 295:1.0 328:0.16666666666666666 347:0.2 351:1.0 453:1.0 482:1.0 651:1.0 717:1.0 718:0.3333333333333333 798:1.0 1094:1.0 1143:1.0 1553:1.0 1569:1.0 1597:1.0 1611:1.0 1948:1.0 1978:1.0 2330:1.0 3256:1.0 3257:1.0 4 1:0.043478260869565216 7:0.125 8:0.15 14:0.25 22:0.2 27:0.021505376344086023 31:0.14285714285714285 32:1.0 43:1.0 45:1.0 51:1.0 57:1.0 65:0.3333333333333333 154:1.0 155:1.0 204:1.0 226:1.0 234:2.0 328:0.16666666666666666 371:1.0 443:1.0 453:1.0 485:1.0 524:1.0 717:1.0 818:1.0 837:1.0 1102:0.5 1569:1.0 1597:1.0 2031:1.0 2048:1.0 2049:1.0 2050:1.0 2734:1.0 4 7:0.125 8:0.2 14:0.25 24:0.5 27:0.010752688172043012 34:1.0 35:2.0 37:0.1111111111111111 54:1.5 74:0.5 75:1.0 123:1.0 163:1.0 166:1.0 184:2.0 218:1.0 268:1.0 338:1.0 344:1.0 453:1.0 549:1.0 625:1.0 722:1.0 769:1.0 828:1.0 1708:1.0 2259:1.0 4 8:0.1 9:1.0 12:0.5 14:0.25 27:0.010752688172043012 30:1.0 31:0.2857142857142857 37:0.1111111111111111 44:0.5 45:3.0 58:0.2727272727272727 81:0.3333333333333333 84:2.0 88:0.5 92:1.0 101:1.0 123:0.3333333333333333 129:0.5 139:1.0 144:0.2 145:0.2 146:1.0 184:1.0 188:1.0 202:2.0 235:1.0 243:1.0 301:0.5 307:1.0 376:1.0 453:1.0 581:1.0 729:1.0 790:1.0 791:1.0 952:0.5 984:2.0 1230:0.5 1306:1.0 1457:1.0 1563:1.0 1634:1.0 1724:1.0 1753:1.0 2090:1.0 2109:1.0 3773:1.0 4397:1.0 5054:1.0 4 1:0.043478260869565216 7:0.25 8:0.25 14:0.25 17:0.3333333333333333 26:2.0 27:0.010752688172043012 31:0.2857142857142857 37:0.1111111111111111 45:1.0 58:0.09090909090909091 65:0.3333333333333333 90:0.14285714285714285 107:0.5 123:0.3333333333333333 127:1.0 162:1.0 178:1.0 184:1.0 191:1.0 266:0.5 268:1.0 288:1.0 316:1.0 454:1.0 519:1.0 726:1.0 795:1.0 814:1.0 845:1.0 1168:1.0 1340:1.0 1529:1.0 1559:1.0 1755:1.0 1859:1.0 2054:1.0 2057:1.0 2410:1.0 4595:1.0 5664:1.0 4 2:0.5 8:0.1 17:0.3333333333333333 21:0.5 26:1.0 27:0.010752688172043012 40:0.5 44:0.5 45:1.0 54:0.5 69:1.0 88:0.5 99:0.25 162:2.0 184:1.0 223:1.0 224:1.0 234:1.0 237:1.0 259:0.4 266:0.5 281:0.5 319:1.0 332:1.0 446:1.0 477:0.07692307692307693 499:1.0 655:1.0 1132:1.0 1369:1.0 1923:1.0 2097:1.0 2285:1.0 2484:1.0 2512:1.0 5071:1.0 4 11:1.0 14:0.25 17:0.3333333333333333 24:0.5 31:0.14285714285714285 40:0.5 45:2.0 58:0.09090909090909091 69:1.0 142:1.0 145:0.2 146:1.0 162:1.0 174:0.08333333333333333 200:1.0 212:0.5 214:0.5 259:0.6 281:0.5 282:1.0 332:1.0 333:1.0 363:1.0 381:1.0 407:1.0 477:0.07692307692307693 494:1.0 495:1.0 496:1.0 576:1.0 842:1.0 1053:1.0 1203:1.0 1378:1.0 1503:1.0 2163:1.0 2376:1.0 2942:1.0 3297:0.5 3445:1.0 3682:0.5 5563:1.0 4 1:0.043478260869565216 7:0.125 8:0.05 17:0.6666666666666666 19:1.0 27:0.03225806451612903 28:1.0 32:1.0 34:1.0 37:0.1111111111111111 45:1.0 57:1.0 84:1.0 86:0.5 90:0.14285714285714285 115:1.0 134:0.16666666666666666 145:0.2 146:1.0 281:0.5 282:1.0 283:1.0 346:0.5 356:1.0 376:1.0 425:0.3333333333333333 448:1.0 519:1.0 538:0.5 548:0.06666666666666667 651:1.0 912:1.0 970:1.0 1396:1.0 1668:1.0 1826:1.0 2168:1.0 3029:1.0 3355:1.0 4 1:0.043478260869565216 8:0.05 12:0.5 17:0.3333333333333333 19:1.0 21:0.5 27:0.03225806451612903 37:0.2222222222222222 45:2.0 58:0.09090909090909091 84:1.0 86:0.5 88:1.0 116:1.0 142:1.0 154:1.0 177:1.0 184:1.0 185:1.0 187:1.0 188:1.0 211:1.0 234:1.0 261:1.0 262:0.5 425:0.3333333333333333 437:1.0 548:0.06666666666666667 832:1.0 862:1.0 929:0.5 1203:1.0 1808:1.0 1843:1.0 2057:1.0 2157:1.0 2750:1.0 3311:1.0 4 1:0.043478260869565216 7:0.125 8:0.15 21:0.5 27:0.021505376344086023 31:0.2857142857142857 37:0.1111111111111111 45:3.0 50:0.25 65:0.3333333333333333 81:0.3333333333333333 99:0.25 127:1.0 142:1.0 162:1.0 184:1.0 198:1.0 202:3.0 266:0.5 273:0.3333333333333333 274:1.0 275:1.0 333:1.0 342:1.0 350:0.5 537:2.0 539:1.0 545:1.0 548:0.06666666666666667 718:0.3333333333333333 726:1.0 832:1.0 866:1.0 911:1.0 989:1.0 1151:1.0 1168:1.0 1182:1.0 1304:1.0 1340:2.0 1341:1.0 1342:1.0 1343:1.0 1446:0.3333333333333333 1681:1.0 1729:1.0 1838:1.0 1962:1.0 2044:1.0 3609:1.0 4087:1.0 4 1:0.043478260869565216 8:0.1 14:0.25 17:0.6666666666666666 19:1.0 21:1.0 22:0.2 27:0.010752688172043012 31:0.14285714285714285 37:0.1111111111111111 45:6.0 88:0.5 99:0.25 101:1.0 115:1.0 123:0.6666666666666666 127:1.0 202:2.0 234:1.0 252:0.5 259:0.2 266:0.5 268:1.0 288:1.0 328:0.16666666666666666 401:0.3333333333333333 454:1.0 548:0.06666666666666667 600:0.2 626:2.0 715:1.0 726:1.0 872:3.0 911:1.0 1733:1.0 1946:1.0 1947:1.0 1948:1.0 2172:1.0 2240:0.5 2347:1.0 2477:1.0 2924:1.0 3110:1.0 3403:1.0 3709:1.0 5178:1.0 4 1:0.08695652173913043 8:0.1 14:0.25 17:0.6666666666666666 19:1.0 21:0.5 27:0.021505376344086023 31:0.14285714285714285 45:3.0 95:0.25 126:1.0 127:1.0 130:1.0 131:0.5 132:1.0 133:0.5 134:0.16666666666666666 145:0.2 146:1.0 154:1.0 196:1.0 211:1.0 216:1.0 243:2.0 268:1.0 488:1.0 489:1.0 508:1.0 548:0.06666666666666667 576:1.0 600:0.2 697:0.5 714:1.0 729:1.0 818:1.0 837:1.0 854:1.0 1048:1.0 1090:1.0 1188:1.0 1189:0.25 1229:1.0 1733:1.0 2327:1.0 2330:1.0 2346:1.0 3286:1.0 3414:1.0 4 2:0.5 8:0.3 14:0.75 17:0.3333333333333333 21:0.5 23:0.5 27:0.021505376344086023 31:0.14285714285714285 37:0.2222222222222222 45:1.0 85:1.0 88:0.5 123:0.6666666666666666 127:1.0 129:0.5 142:1.0 162:1.0 187:1.0 190:1.0 193:0.058823529411764705 198:1.0 212:0.5 226:1.0 277:1.0 300:0.5 307:1.0 333:1.0 401:0.3333333333333333 446:1.0 448:1.0 507:0.3333333333333333 548:0.06666666666666667 556:1.0 576:1.0 625:1.0 705:1.0 850:1.0 925:1.0 1002:1.0 1024:0.5 1380:1.0 1424:0.25 1524:1.0 1535:1.0 1536:1.0 1537:1.0 1635:1.0 1713:1.0 1745:1.0 1954:1.0 2173:1.0 2337:1.0 2677:1.0 2696:1.0 4 1:0.08695652173913043 8:0.1 14:0.25 17:0.6666666666666666 21:0.5 22:0.2 27:0.03225806451612903 43:1.0 44:0.5 45:5.0 50:0.25 81:0.3333333333333333 95:0.25 115:1.0 144:0.2 193:0.029411764705882353 196:1.0 215:1.0 259:0.2 260:1.0 317:1.0 376:1.0 437:1.0 524:1.0 631:1.0 743:1.0 818:1.0 827:0.5 1026:1.0 1218:1.0 1298:1.0 1349:1.0 1598:0.2 1660:1.0 1904:1.0 2303:1.0 5326:1.0 4 7:0.25 8:0.15 17:0.3333333333333333 27:0.010752688172043012 31:0.2857142857142857 37:0.1111111111111111 45:1.0 48:1.0 51:1.0 54:0.5 88:0.5 133:0.5 141:1.0 201:0.25 259:0.2 266:0.5 295:1.0 422:1.0 446:1.0 475:1.0 501:0.5 508:1.0 523:0.5 539:1.0 822:1.0 925:1.0 988:2.0 992:1.0 1001:1.0 1009:1.0 1186:1.0 1242:1.0 1853:1.0 1903:1.0 2521:1.0 2833:1.0 2949:1.0 4 1:0.043478260869565216 7:0.125 8:0.1 21:0.5 26:1.0 27:0.03225806451612903 31:0.2857142857142857 37:0.2222222222222222 44:0.5 45:1.0 50:0.25 75:1.0 99:0.25 101:1.0 123:0.3333333333333333 164:0.3333333333333333 174:0.08333333333333333 291:1.0 301:0.5 327:1.0 355:1.0 363:1.0 417:0.3333333333333333 437:1.0 448:1.0 449:0.5 554:1.0 581:1.0 582:1.0 758:1.0 870:1.0 965:1.0 1200:1.0 1201:1.0 1923:1.0 2929:1.0 3626:1.0 4 1:0.08695652173913043 7:0.125 8:0.15 17:0.3333333333333333 19:1.0 21:0.5 24:0.5 27:0.021505376344086023 45:1.0 57:1.0 88:0.5 101:1.0 130:1.0 134:0.16666666666666666 212:1.0 216:1.0 259:0.4 608:0.5 655:1.0 1050:0.5 1054:1.0 1459:1.0 1460:1.0 1462:1.0 1463:1.0 1947:1.0 2747:1.0 2753:1.0 3310:1.0 3388:1.0 3407:1.0 4 1:0.043478260869565216 7:0.125 12:0.5 19:1.0 21:0.5 22:0.2 26:1.0 27:0.021505376344086023 30:1.0 31:0.2857142857142857 37:0.1111111111111111 40:0.5 45:2.0 52:1.0 58:0.09090909090909091 84:1.0 95:0.25 101:1.0 161:0.047619047619047616 175:0.5 181:0.07142857142857142 182:1.0 184:2.0 186:1.0 187:1.0 188:1.0 196:1.0 295:1.0 314:1.0 342:1.0 371:1.0 374:1.0 391:1.0 442:1.0 538:0.5 762:1.0 828:1.0 1026:1.0 1056:1.0 1123:1.0 1315:1.0 2131:1.0 2655:1.0 3211:1.0 4620:1.0
53d99b084355e7fea63074180a1df65da27d5474
449d555969bfd7befe906877abab098c6e63a0e8
/2510/CH14/EX14.8/Ex14_8.sce
fe3fcd8ab3b84ca93cf4aa39b6c959ffea8b3a69
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,095
sce
Ex14_8.sce
//Variable declaration: T1 = 138.0 //Temperature of oil entering the cooler (°F) T2 = 103.0 //Temperature of oil leaving the cooler (°F) t1 = 88.0 //Temperature of coolant entering the cooler (°F) t2 = 98.0 //Temperature of coolant leaving the cooler (°F) //Calculation: //For counter flow unit: DT1 = T1 - t2 //Temperature difference driving force at the cooler entrance (°F) DT2 = T2 - t1 //Temperature difference driving force at the cooler exit (°F) DTlm1 = (DT1 - DT2)/(log(DT1/DT2)) //LMTD (driving force) for the heat exchanger (°F) //For parallel flow unit: DT3 = T1 - t1 //Temperature difference driving force at the cooler entrance (°F) DT4 = T2 - t2 //Temperature difference driving force at the cooler exit (°F) DTlm2 = (DT3 - DT4)/(log(DT3/DT4)) //LMTD (driving force) for the heat exchanger (°F) //Result: printf("The LMTD for counter-current flow unit is : %.1f °F.",DTlm1) printf("The LMTD for parallel flow unit is : %.1f °F.",DTlm2)
1fd38b69df5cca3a4741a5186c225ee5bd74d4d7
449d555969bfd7befe906877abab098c6e63a0e8
/800/CH8/EX8.3/8_3.sce
8969d3cf931ab0f00b00310e79b1f73cf3dd1c12
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
271
sce
8_3.sce
//clear// clc clear exec("8.3data.sci"); deltaHRx0 = 2*H0NH3-3*H0H2-HN2; deltaCp = 2*CpNH3-3*CpH2-CpN2; deltaHRx = deltaHRx0+deltaCp*(T-TR); disp("The heat of reaction on the basis on the moles of H2 reacted is =") disp((1/3)*deltaHRx*4.184) disp("J at 423 K")
c5544d16f4184d34b61cd3ab5319fa3b5c158b27
449d555969bfd7befe906877abab098c6e63a0e8
/3831/CH16/EX16.2/Ex16_2.sce
7f40f256fc2123d717dbbc191cc6b0919e09df7e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
584
sce
Ex16_2.sce
// Example 16_2 clc;funcprot(0); // Given data T=20+273.15;// K V=25.0;// m/s k=1.40;// The specific heat ratio p=0.101;// MPa g_c=1;// The gravitational constant c_p=1.004;// kJ/kg.K R=0.286;// kJ/kg.K // Solution p_os=p*(1+((V^2/1000)/(2*g_c*c_p*T)))^(k/(k-1));// The isentropic stagnation pressure in MPa rho=(p*10^3)/(R*T);// kg/m^3 rho_os=rho*(1+((V^2/1000)/(2*g_c*c_p*T)))^(1/(k-1));// The isentropic stagnation density in kg/m^3 printf("\nThe isentropic stagnation pressure,p_os=%0.4f MPa \nThe isentropic stagnation density,rho_os=%1.4f kg/m^3",p_os,rho_os);
bd7877dfcc705974b3b69fea6b8c71904b6d3458
f542bc49c4d04b47d19c88e7c89d5db60922e34e
/PresentationFiles_Subjects - Kopie/CONT/JQ49GPY/ATWM1_Working_Memory_MEG_JQ49GPY_Session1/ATWM1_Working_Memory_MEG_Salient_Uncued_Run1.sce
199f2017261db1ee83fef2d577d849b50102c304
[]
no_license
atwm1/Presentation
65c674180f731f050aad33beefffb9ba0caa6688
9732a004ca091b184b670c56c55f538ff6600c08
refs/heads/master
2020-04-15T14:04:41.900640
2020-02-14T16:10:11
2020-02-14T16:10:11
56,771,016
0
1
null
null
null
null
UTF-8
Scilab
false
false
48,408
sce
ATWM1_Working_Memory_MEG_Salient_Uncued_Run1.sce
# ATWM1 MEG Experiment scenario = "ATWM1_Working_Memory_MEG_salient_uncued_run1"; #scenario_type = fMRI; # Fuer Scanner #scenario_type = fMRI_emulation; # Zum Testen scenario_type = trials; # for MEG #scan_period = 2000; # TR #pulses_per_scan = 1; #pulse_code = 1; pulse_width=6; default_monitor_sounds = false; active_buttons = 2; response_matching = simple_matching; button_codes = 10, 20; default_font_size = 28; default_font = "Arial"; default_background_color = 0 ,0 ,0 ; write_codes=true; # for MEG only begin; #Picture definitions box { height = 300; width = 300; color = 0, 0, 0;} frame1; box { height = 290; width = 290; color = 255, 255, 255;} frame2; box { height = 30; width = 4; color = 0, 0, 0;} fix1; box { height = 4; width = 30; color = 0, 0, 0;} fix2; box { height = 30; width = 4; color = 255, 0, 0;} fix3; box { height = 4; width = 30; color = 255, 0, 0;} fix4; box { height = 290; width = 290; color = 128, 128, 128;} background; TEMPLATE "StimuliDeclaration.tem" {}; trial { sound sound_incorrect; time = 0; duration = 1; } wrong; trial { sound sound_correct; time = 0; duration = 1; } right; trial { sound sound_no_response; time = 0; duration = 1; } miss; # Start of experiment (MEG only) - sync with CTF software trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; } expStart; time = 0; duration = 1000; code = "ExpStart"; port_code = 80; }; # baselinePre (at the beginning of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }default; time = 0; duration = 10000; #mri_pulse = 1; code = "BaselinePre"; port_code = 91; }; TEMPLATE "ATWM1_Working_Memory_MEG.tem" { trigger_encoding trigger_retrieval cue_time preparation_time encoding_time single_stimulus_presentation_time delay_time retrieval_time intertrial_interval alerting_cross stim_enc1 stim_enc2 stim_enc3 stim_enc4 stim_enc_alt1 stim_enc_alt2 stim_enc_alt3 stim_enc_alt4 trial_code stim_retr1 stim_retr2 stim_retr3 stim_retr4 stim_cue1 stim_cue2 stim_cue3 stim_cue4 fixationcross_cued retr_code the_target_button posX1 posY1 posX2 posY2 posX3 posY3 posX4 posY4; 42 61 292 292 399 125 1792 2992 2292 fixation_cross gabor_157 gabor_131 gabor_109 gabor_051 gabor_157 gabor_131_alt gabor_109 gabor_051_alt "1_1_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2300_gabor_patch_orientation_157_131_109_051_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_003_framed blank blank blank blank fixation_cross_white "1_1_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_003_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1892 2992 2192 fixation_cross gabor_008 gabor_128 gabor_045 gabor_066 gabor_008_alt gabor_128 gabor_045_alt gabor_066 "1_2_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2200_gabor_patch_orientation_008_128_045_066_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_045_framed gabor_circ blank blank blank blank fixation_cross_white "1_2_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_045_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1842 2992 2192 fixation_cross gabor_040 gabor_078 gabor_058 gabor_098 gabor_040 gabor_078_alt gabor_058 gabor_098_alt "1_3_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2200_gabor_patch_orientation_040_078_058_098_target_position_2_4_retrieval_position_2" gabor_circ gabor_078_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_3_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_078_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 1992 2992 2042 fixation_cross gabor_056 gabor_095 gabor_179 gabor_029 gabor_056_alt gabor_095 gabor_179_alt gabor_029 "1_4_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2050_gabor_patch_orientation_056_095_179_029_target_position_1_3_retrieval_position_1" gabor_008_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_4_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_008_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 2192 2992 2342 fixation_cross gabor_176 gabor_107 gabor_150 gabor_043 gabor_176_alt gabor_107 gabor_150_alt gabor_043 "1_5_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2350_gabor_patch_orientation_176_107_150_043_target_position_1_3_retrieval_position_1" gabor_176_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_5_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_176_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 64 292 292 399 125 1742 2992 1942 fixation_cross gabor_161 gabor_113 gabor_076 gabor_142 gabor_161_alt gabor_113 gabor_076 gabor_142_alt "1_6_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_UncuedRetriev_300_300_399_1750_3000_1950_gabor_patch_orientation_161_113_076_142_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_076_framed gabor_circ blank blank blank blank fixation_cross_white "1_6_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_076_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1842 2992 1892 fixation_cross gabor_040 gabor_170 gabor_012 gabor_055 gabor_040 gabor_170_alt gabor_012 gabor_055_alt "1_7_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_1900_gabor_patch_orientation_040_170_012_055_target_position_2_4_retrieval_position_2" gabor_circ gabor_170_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_7_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_170_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 1792 2992 2342 fixation_cross gabor_078 gabor_145 gabor_112 gabor_027 gabor_078_alt gabor_145 gabor_112_alt gabor_027 "1_8_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2350_gabor_patch_orientation_078_145_112_027_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_062_framed gabor_circ blank blank blank blank fixation_cross_white "1_8_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_062_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1792 2992 1992 fixation_cross gabor_088 gabor_114 gabor_160 gabor_054 gabor_088 gabor_114_alt gabor_160_alt gabor_054 "1_9_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2000_gabor_patch_orientation_088_114_160_054_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_160_framed gabor_circ blank blank blank blank fixation_cross_white "1_9_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_160_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 2242 2992 2192 fixation_cross gabor_175 gabor_119 gabor_006 gabor_152 gabor_175 gabor_119_alt gabor_006 gabor_152_alt "1_10_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2200_gabor_patch_orientation_175_119_006_152_target_position_2_4_retrieval_position_2" gabor_circ gabor_119_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_10_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_119_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 2092 2992 2142 fixation_cross gabor_090 gabor_072 gabor_045 gabor_009 gabor_090_alt gabor_072 gabor_045_alt gabor_009 "1_11_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2150_gabor_patch_orientation_090_072_045_009_target_position_1_3_retrieval_position_3" gabor_circ gabor_circ gabor_180_framed gabor_circ blank blank blank blank fixation_cross_white "1_11_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_180_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 1842 2992 1992 fixation_cross gabor_007 gabor_072 gabor_039 gabor_178 gabor_007 gabor_072_alt gabor_039_alt gabor_178 "1_12_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2000_gabor_patch_orientation_007_072_039_178_target_position_2_3_retrieval_position_2" gabor_circ gabor_118_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_12_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_118_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 63 292 292 399 125 2092 2992 2092 fixation_cross gabor_029 gabor_056 gabor_180 gabor_117 gabor_029 gabor_056 gabor_180_alt gabor_117_alt "1_13_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_UncuedRetriev_300_300_399_2100_3000_2100_gabor_patch_orientation_029_056_180_117_target_position_3_4_retrieval_position_1" gabor_164_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_13_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_164_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 2142 2992 1892 fixation_cross gabor_092 gabor_037 gabor_144 gabor_176 gabor_092 gabor_037 gabor_144_alt gabor_176_alt "1_14_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_1900_gabor_patch_orientation_092_037_144_176_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_176_framed blank blank blank blank fixation_cross_white "1_14_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_176_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1742 2992 2392 fixation_cross gabor_089 gabor_071 gabor_029 gabor_105 gabor_089 gabor_071 gabor_029_alt gabor_105_alt "1_15_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2400_gabor_patch_orientation_089_071_029_105_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_105_framed blank blank blank blank fixation_cross_white "1_15_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_105_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 63 292 292 399 125 1892 2992 2392 fixation_cross gabor_029 gabor_078 gabor_143 gabor_007 gabor_029_alt gabor_078 gabor_143 gabor_007_alt "1_16_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_UncuedRetriev_300_300_399_1900_3000_2400_gabor_patch_orientation_029_078_143_007_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_095_framed gabor_circ blank blank blank blank fixation_cross_white "1_16_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_095_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1842 2992 2142 fixation_cross gabor_009 gabor_167 gabor_082 gabor_127 gabor_009_alt gabor_167_alt gabor_082 gabor_127 "1_17_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2150_gabor_patch_orientation_009_167_082_127_target_position_1_2_retrieval_position_1" gabor_009_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_17_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_009_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 2192 2992 2292 fixation_cross gabor_022 gabor_105 gabor_164 gabor_080 gabor_022 gabor_105_alt gabor_164 gabor_080_alt "1_18_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_300_300_399_2200_3000_2300_gabor_patch_orientation_022_105_164_080_target_position_2_4_retrieval_position_2" gabor_circ gabor_105_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_18_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_105_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 63 292 292 399 125 2242 2992 2092 fixation_cross gabor_092 gabor_136 gabor_059 gabor_030 gabor_092_alt gabor_136_alt gabor_059 gabor_030 "1_19_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_UncuedRetriev_300_300_399_2250_3000_2100_gabor_patch_orientation_092_136_059_030_target_position_1_2_retrieval_position_3" gabor_circ gabor_circ gabor_011_framed gabor_circ blank blank blank blank fixation_cross_white "1_19_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_011_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 2242 2992 2242 fixation_cross gabor_062 gabor_171 gabor_103 gabor_034 gabor_062 gabor_171_alt gabor_103_alt gabor_034 "1_20_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2250_gabor_patch_orientation_062_171_103_034_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_150_framed gabor_circ blank blank blank blank fixation_cross_white "1_20_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_150_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 1892 2992 2392 fixation_cross gabor_161 gabor_178 gabor_021 gabor_040 gabor_161_alt gabor_178 gabor_021 gabor_040_alt "1_21_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2400_gabor_patch_orientation_161_178_021_040_target_position_1_4_retrieval_position_1" gabor_111_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_21_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_111_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 2142 2992 2592 fixation_cross gabor_016 gabor_131 gabor_101 gabor_058 gabor_016 gabor_131 gabor_101_alt gabor_058_alt "1_22_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2600_gabor_patch_orientation_016_131_101_058_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_147_framed gabor_circ blank blank blank blank fixation_cross_white "1_22_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_147_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 1892 2992 2042 fixation_cross gabor_026 gabor_009 gabor_057 gabor_165 gabor_026 gabor_009_alt gabor_057_alt gabor_165 "1_23_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_300_300_399_1900_3000_2050_gabor_patch_orientation_026_009_057_165_target_position_2_3_retrieval_position_2" gabor_circ gabor_147_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_23_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_147_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1792 2992 2542 fixation_cross gabor_130 gabor_046 gabor_107 gabor_151 gabor_130 gabor_046_alt gabor_107_alt gabor_151 "1_24_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_300_300_399_1800_3000_2550_gabor_patch_orientation_130_046_107_151_target_position_2_3_retrieval_position_2" gabor_circ gabor_046_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_24_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_046_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 64 292 292 399 125 1792 2992 2592 fixation_cross gabor_171 gabor_018 gabor_150 gabor_036 gabor_171 gabor_018_alt gabor_150 gabor_036_alt "1_25_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_UncuedRetriev_300_300_399_1800_3000_2600_gabor_patch_orientation_171_018_150_036_target_position_2_4_retrieval_position_3" gabor_circ gabor_circ gabor_150_framed gabor_circ blank blank blank blank fixation_cross_white "1_25_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_150_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 2042 2992 1892 fixation_cross gabor_094 gabor_075 gabor_143 gabor_019 gabor_094_alt gabor_075_alt gabor_143 gabor_019 "1_26_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_1900_gabor_patch_orientation_094_075_143_019_target_position_1_2_retrieval_position_2" gabor_circ gabor_075_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_26_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_075_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 1842 2992 2492 fixation_cross gabor_121 gabor_146 gabor_006 gabor_089 gabor_121 gabor_146_alt gabor_006_alt gabor_089 "1_27_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_300_300_399_1850_3000_2500_gabor_patch_orientation_121_146_006_089_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_056_framed gabor_circ blank blank blank blank fixation_cross_white "1_27_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_056_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1992 2992 2192 fixation_cross gabor_090 gabor_176 gabor_159 gabor_138 gabor_090_alt gabor_176 gabor_159 gabor_138_alt "1_28_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2200_gabor_patch_orientation_090_176_159_138_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_138_framed blank blank blank blank fixation_cross_white "1_28_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_138_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1942 2992 2492 fixation_cross gabor_141 gabor_122 gabor_005 gabor_067 gabor_141_alt gabor_122 gabor_005 gabor_067_alt "1_29_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2500_gabor_patch_orientation_141_122_005_067_target_position_1_4_retrieval_position_1" gabor_141_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_29_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_141_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 64 292 292 399 125 2192 2992 2442 fixation_cross gabor_154 gabor_133 gabor_076 gabor_003 gabor_154_alt gabor_133 gabor_076 gabor_003_alt "1_30_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_UncuedRetriev_300_300_399_2200_3000_2450_gabor_patch_orientation_154_133_076_003_target_position_1_4_retrieval_position_3" gabor_circ gabor_circ gabor_076_framed gabor_circ blank blank blank blank fixation_cross_white "1_30_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_076_retrieval_position_3" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 2042 2992 1942 fixation_cross gabor_163 gabor_180 gabor_091 gabor_116 gabor_163 gabor_180 gabor_091_alt gabor_116_alt "1_31_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_1950_gabor_patch_orientation_163_180_091_116_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_140_framed gabor_circ blank blank blank blank fixation_cross_white "1_31_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_140_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1992 2992 2242 fixation_cross gabor_017 gabor_039 gabor_064 gabor_149 gabor_017 gabor_039 gabor_064_alt gabor_149_alt "1_32_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2250_gabor_patch_orientation_017_039_064_149_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_149_framed blank blank blank blank fixation_cross_white "1_32_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_149_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 2092 2992 2292 fixation_cross gabor_017 gabor_104 gabor_043 gabor_080 gabor_017_alt gabor_104_alt gabor_043 gabor_080 "1_33_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2300_gabor_patch_orientation_017_104_043_080_target_position_1_2_retrieval_position_1" gabor_063_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_33_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_063_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 1992 2992 2592 fixation_cross gabor_100 gabor_024 gabor_176 gabor_160 gabor_100 gabor_024_alt gabor_176 gabor_160_alt "1_34_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_300_300_399_2000_3000_2600_gabor_patch_orientation_100_024_176_160_target_position_2_4_retrieval_position_2" gabor_circ gabor_070_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_34_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_070_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 2242 2992 2242 fixation_cross gabor_074 gabor_162 gabor_030 gabor_011 gabor_074 gabor_162_alt gabor_030 gabor_011_alt "1_35_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_300_300_399_2250_3000_2250_gabor_patch_orientation_074_162_030_011_target_position_2_4_retrieval_position_2" gabor_circ gabor_162_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_35_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_162_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 64 292 292 399 125 1792 2992 2492 fixation_cross gabor_171 gabor_030 gabor_083 gabor_100 gabor_171_alt gabor_030_alt gabor_083 gabor_100 "1_36_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_UncuedRetriev_300_300_399_1800_3000_2500_gabor_patch_orientation_171_030_083_100_target_position_1_2_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_100_framed blank blank blank blank fixation_cross_white "1_36_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_100_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 2042 2992 1992 fixation_cross gabor_094 gabor_120 gabor_077 gabor_148 gabor_094_alt gabor_120_alt gabor_077 gabor_148 "1_37_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2000_gabor_patch_orientation_094_120_077_148_target_position_1_2_retrieval_position_2" gabor_circ gabor_120_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_37_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_120_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 2092 2992 2542 fixation_cross gabor_073 gabor_108 gabor_043 gabor_092 gabor_073_alt gabor_108 gabor_043_alt gabor_092 "1_38_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_300_300_399_2100_3000_2550_gabor_patch_orientation_073_108_043_092_target_position_1_3_retrieval_position_1" gabor_026_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_38_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_026_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 1942 2992 2342 fixation_cross gabor_010 gabor_128 gabor_066 gabor_084 gabor_010_alt gabor_128 gabor_066 gabor_084_alt "1_39_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2350_gabor_patch_orientation_010_128_066_084_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_038_framed blank blank blank blank fixation_cross_white "1_39_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_038_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 64 292 292 399 125 1892 2992 2542 fixation_cross gabor_018 gabor_063 gabor_137 gabor_178 gabor_018_alt gabor_063 gabor_137_alt gabor_178 "1_40_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_UncuedRetriev_300_300_399_1900_3000_2550_gabor_patch_orientation_018_063_137_178_target_position_1_3_retrieval_position_2" gabor_circ gabor_063_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_40_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_063_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 1742 2992 2142 fixation_cross gabor_015 gabor_031 gabor_054 gabor_171 gabor_015_alt gabor_031 gabor_054 gabor_171_alt "1_41_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2150_gabor_patch_orientation_015_031_054_171_target_position_1_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_121_framed blank blank blank blank fixation_cross_white "1_41_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_121_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 2242 2992 2092 fixation_cross gabor_118 gabor_138 gabor_002 gabor_053 gabor_118_alt gabor_138 gabor_002 gabor_053_alt "1_42_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2100_gabor_patch_orientation_118_138_002_053_target_position_1_4_retrieval_position_1" gabor_070_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_42_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_070_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 2192 2992 2442 fixation_cross gabor_106 gabor_144 gabor_075 gabor_032 gabor_106_alt gabor_144_alt gabor_075 gabor_032 "1_43_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2450_gabor_patch_orientation_106_144_075_032_target_position_1_2_retrieval_position_1" gabor_056_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_43_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_056_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1742 2992 2242 fixation_cross gabor_012 gabor_088 gabor_072 gabor_132 gabor_012 gabor_088_alt gabor_072_alt gabor_132 "1_44_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2250_gabor_patch_orientation_012_088_072_132_target_position_2_3_retrieval_position_2" gabor_circ gabor_088_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_44_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_088_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 64 292 292 399 125 1942 2992 1942 fixation_cross gabor_036 gabor_021 gabor_109 gabor_001 gabor_036 gabor_021_alt gabor_109 gabor_001_alt "1_45_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_UncuedRetriev_300_300_399_1950_3000_1950_gabor_patch_orientation_036_021_109_001_target_position_2_4_retrieval_position_1" gabor_036_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_45_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_036_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1942 2992 2542 fixation_cross gabor_102 gabor_015 gabor_126 gabor_040 gabor_102 gabor_015_alt gabor_126 gabor_040_alt "1_46_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_300_300_399_1950_3000_2550_gabor_patch_orientation_102_015_126_040_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_040_framed blank blank blank blank fixation_cross_white "1_46_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_040_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 1742 2992 1992 fixation_cross gabor_050 gabor_119 gabor_097 gabor_172 gabor_050 gabor_119_alt gabor_097 gabor_172_alt "1_47_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2000_gabor_patch_orientation_050_119_097_172_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_034_framed blank blank blank blank fixation_cross_white "1_47_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_034_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 2142 2992 2092 fixation_cross gabor_138 gabor_074 gabor_119 gabor_050 gabor_138 gabor_074 gabor_119_alt gabor_050_alt "1_48_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_300_300_399_2150_3000_2100_gabor_patch_orientation_138_074_119_050_target_position_3_4_retrieval_position_3" gabor_circ gabor_circ gabor_164_framed gabor_circ blank blank blank blank fixation_cross_white "1_48_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_164_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 2142 2992 2042 fixation_cross gabor_171 gabor_154 gabor_007 gabor_115 gabor_171_alt gabor_154 gabor_007 gabor_115_alt "1_49_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2050_gabor_patch_orientation_171_154_007_115_target_position_1_4_retrieval_position_1" gabor_171_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_49_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_171_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1892 2992 2342 fixation_cross gabor_156 gabor_109 gabor_067 gabor_088 gabor_156 gabor_109_alt gabor_067 gabor_088_alt "1_50_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_2350_gabor_patch_orientation_156_109_067_088_target_position_2_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_088_framed blank blank blank blank fixation_cross_white "1_50_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_088_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 2042 2992 2592 fixation_cross gabor_067 gabor_037 gabor_002 gabor_176 gabor_067 gabor_037_alt gabor_002_alt gabor_176 "1_51_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_300_300_399_2050_3000_2600_gabor_patch_orientation_067_037_002_176_target_position_2_3_retrieval_position_2" gabor_circ gabor_087_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_51_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_087_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 63 292 292 399 125 2092 2992 2192 fixation_cross gabor_032 gabor_120 gabor_139 gabor_013 gabor_032 gabor_120_alt gabor_139_alt gabor_013 "1_52_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_UncuedRetriev_300_300_399_2100_3000_2200_gabor_patch_orientation_032_120_139_013_target_position_2_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_059_framed blank blank blank blank fixation_cross_white "1_52_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_059_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 1942 2992 1942 fixation_cross gabor_084 gabor_021 gabor_173 gabor_143 gabor_084 gabor_021_alt gabor_173_alt gabor_143 "1_53_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_1950_gabor_patch_orientation_084_021_173_143_target_position_2_3_retrieval_position_2" gabor_circ gabor_066_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_53_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_066_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 64 292 292 399 125 1992 2992 1942 fixation_cross gabor_006 gabor_127 gabor_178 gabor_045 gabor_006_alt gabor_127 gabor_178_alt gabor_045 "1_54_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_UncuedRetriev_300_300_399_2000_3000_1950_gabor_patch_orientation_006_127_178_045_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_045_framed blank blank blank blank fixation_cross_white "1_54_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_UncuedRetriev_retrieval_patch_orientation_045_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1842 2992 2242 fixation_cross gabor_032 gabor_076 gabor_004 gabor_055 gabor_032_alt gabor_076_alt gabor_004 gabor_055 "1_55_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_300_300_399_1850_3000_2250_gabor_patch_orientation_032_076_004_055_target_position_1_2_retrieval_position_2" gabor_circ gabor_076_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_55_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_076_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1742 2992 2042 fixation_cross gabor_152 gabor_014 gabor_092 gabor_132 gabor_152 gabor_014 gabor_092_alt gabor_132_alt "1_56_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_300_300_399_1750_3000_2050_gabor_patch_orientation_152_014_092_132_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_132_framed blank blank blank blank fixation_cross_white "1_56_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_132_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1892 2992 1892 fixation_cross gabor_086 gabor_176 gabor_068 gabor_151 gabor_086_alt gabor_176 gabor_068 gabor_151_alt "1_57_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_300_300_399_1900_3000_1900_gabor_patch_orientation_086_176_068_151_target_position_1_4_retrieval_position_1" gabor_086_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_57_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_086_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 1742 2992 2442 fixation_cross gabor_001 gabor_150 gabor_018 gabor_079 gabor_001 gabor_150 gabor_018_alt gabor_079_alt "1_58_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_300_300_399_1750_3000_2450_gabor_patch_orientation_001_150_018_079_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_126_framed blank blank blank blank fixation_cross_white "1_58_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_126_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 2242 2992 2142 fixation_cross gabor_107 gabor_040 gabor_159 gabor_180 gabor_107 gabor_040_alt gabor_159 gabor_180_alt "1_59_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_300_300_399_2250_3000_2150_gabor_patch_orientation_107_040_159_180_target_position_2_4_retrieval_position_2" gabor_circ gabor_090_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_59_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_090_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 2192 2992 2292 fixation_cross gabor_162 gabor_096 gabor_038 gabor_179 gabor_162 gabor_096_alt gabor_038_alt gabor_179 "1_60_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2300_gabor_patch_orientation_162_096_038_179_target_position_2_3_retrieval_position_2" gabor_circ gabor_145_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_60_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_145_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 2192 2992 2442 fixation_cross gabor_039 gabor_116 gabor_097 gabor_009 gabor_039 gabor_116_alt gabor_097 gabor_009_alt "1_61_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_300_300_399_2200_3000_2450_gabor_patch_orientation_039_116_097_009_target_position_2_4_retrieval_position_2" gabor_circ gabor_164_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_61_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_164_retrieval_position_2" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 63 292 292 399 125 2092 2992 2292 fixation_cross gabor_117 gabor_052 gabor_080 gabor_007 gabor_117 gabor_052_alt gabor_080 gabor_007_alt "1_62_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_UncuedRetriev_300_300_399_2100_3000_2300_gabor_patch_orientation_117_052_080_007_target_position_2_4_retrieval_position_1" gabor_162_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_62_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_162_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 1942 2992 2492 fixation_cross gabor_032 gabor_055 gabor_162 gabor_008 gabor_032 gabor_055_alt gabor_162_alt gabor_008 "1_63_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_300_300_399_1950_3000_2500_gabor_patch_orientation_032_055_162_008_target_position_2_3_retrieval_position_3" gabor_circ gabor_circ gabor_117_framed gabor_circ blank blank blank blank fixation_cross_white "1_63_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_117_retrieval_position_3" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 2042 2992 1992 fixation_cross gabor_105 gabor_133 gabor_161 gabor_019 gabor_105_alt gabor_133 gabor_161 gabor_019_alt "1_64_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_2000_gabor_patch_orientation_105_133_161_019_target_position_1_4_retrieval_position_1" gabor_105_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_64_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_105_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 2142 2992 2342 fixation_cross gabor_149 gabor_040 gabor_061 gabor_178 gabor_149_alt gabor_040_alt gabor_061 gabor_178 "1_65_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_300_300_399_2150_3000_2350_gabor_patch_orientation_149_040_061_178_target_position_1_2_retrieval_position_2" gabor_circ gabor_040_framed gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_65_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_040_retrieval_position_2" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 1992 2992 2092 fixation_cross gabor_128 gabor_010 gabor_053 gabor_087 gabor_128_alt gabor_010 gabor_053_alt gabor_087 "1_66_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_300_300_399_2000_3000_2100_gabor_patch_orientation_128_010_053_087_target_position_1_3_retrieval_position_1" gabor_128_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_66_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_128_retrieval_position_1" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 61 292 292 399 125 1792 2992 2142 fixation_cross gabor_160 gabor_112 gabor_007 gabor_138 gabor_160_alt gabor_112 gabor_007 gabor_138_alt "1_67_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_300_300_399_1800_3000_2150_gabor_patch_orientation_160_112_007_138_target_position_1_4_retrieval_position_1" gabor_024_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_67_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_CuedRetrieval_retrieval_patch_orientation_024_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 63 292 292 399 125 2142 2992 2392 fixation_cross gabor_162 gabor_003 gabor_018 gabor_089 gabor_162_alt gabor_003 gabor_018_alt gabor_089 "1_68_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_UncuedRetriev_300_300_399_2150_3000_2400_gabor_patch_orientation_162_003_018_089_target_position_1_3_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_139_framed blank blank blank blank fixation_cross_white "1_68_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_139_retrieval_position_4" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 62 292 292 399 125 2042 2992 1892 fixation_cross gabor_133 gabor_175 gabor_155 gabor_068 gabor_133 gabor_175 gabor_155_alt gabor_068_alt "1_69_Encoding_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_300_300_399_2050_3000_1900_gabor_patch_orientation_133_175_155_068_target_position_3_4_retrieval_position_4" gabor_circ gabor_circ gabor_circ gabor_068_framed blank blank blank blank fixation_cross_white "1_69_Retrieval_Working_Memory_MEG_P8_RL_Salient_NoChange_CuedRetrieval_retrieval_patch_orientation_068_retrieval_position_4" 2 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; 42 63 292 292 399 125 1842 2992 2042 fixation_cross gabor_013 gabor_043 gabor_093 gabor_150 gabor_013 gabor_043 gabor_093_alt gabor_150_alt "1_70_Encoding_Working_Memory_MEG_P8_RL_Salient_DoChange_UncuedRetriev_300_300_399_1850_3000_2050_gabor_patch_orientation_013_043_093_150_target_position_3_4_retrieval_position_1" gabor_060_framed gabor_circ gabor_circ gabor_circ blank blank blank blank fixation_cross_white "1_70_Retrieval_Working_Memory_MEG_P8_RL_Salient_DoChange_UncuedRetriev_retrieval_patch_orientation_060_retrieval_position_1" 1 45.96 45.96 -45.96 45.96 -45.96 -45.96 45.96 -45.96; }; # baselinePost (at the end of the session) trial { picture { box frame1; x=0; y=0; box frame2; x=0; y=0; box background; x=0; y=0; bitmap fixation_cross_black; x=0; y=0; }; time = 0; duration = 5000; code = "BaselinePost"; port_code = 92; };
5d77a3393b9b41cd6e135e567d7c47d0b4419036
449d555969bfd7befe906877abab098c6e63a0e8
/2471/CH4/EX4.7/Ex4_7.sce
afe284398e3ffce5eca17a9495132cad81107320
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,053
sce
Ex4_7.sce
clear ; clc; // Example 4.7 printf('Example 4.7\n\n'); printf('Page No. 99\n\n'); // (a) without insulation // given d_a = 0.150;// Diameter of pipe in m T1_a = 60;// Surface temperature in degree celcius T2_a = 10;// Ambient temperature in degree celcius //For laminar flow in pipe,h= 1.41*((T1-T2)/d)^0.25 h_a = 1.41*((T1_a-T2_a)/d_a)^0.25;//W/m^2-K A_a = %pi * d_a;// Surface Area per unit length in m^2/m Q_a = h_a*A_a*(T1_a - T2_a);// in W/m printf('The heat loss per unit length without insulation is %.0f W/m \n',ceil(Q_a)) // (b) with insulation // given d_b = 0.200;// Diameter of pipe in m T1_b = 20;// Surface temperature in degree celcius T2_b = 10;// Ambient temperature in degree celcius //For laminar flow in pipe,h= 1.41*((T1-T2)/d)^0.25 h_b = 1.41*((T1_b-T2_b)/d_b)^0.25;//W/m^2-K A_b = %pi * d_b;// Surface Area per unit length in m^2/m Q_b = h_b*A_b*(T1_b - T2_b);// in W/m printf('the heat loss per unit length with insulation is %.1f W/m',Q_b) // Deviation in answer due to direct substitution
4b81c53cf634cbceacf9da84b829a135bda7d136
449d555969bfd7befe906877abab098c6e63a0e8
/476/CH9/EX9.22/Example_9_22.sce
40d7efb4b107e58061f7af3824a5df2a87a1794e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,025
sce
Example_9_22.sce
//A Textbook of Chemical Engineering Thermodynamics //Chapter 9 //Chemical Reaction Equilibria //Example 22 clear; clc; //Given: //Reaction: FeO(s) + CO(g) --> Fe(s) + CO2(g) K = 0.403; //equilibrium constant of reaction T = 1200; //temperature of reaction (K) To = 273; //standard temperature (K) Vo = 22.4*10^-3; //molar volume at STP M = 55.8; //molecular mass of iron //To calculate wt of iron produced per 100 m^3 of gas admitted //Basis: 100 mol of gas entering n = 100; //moles of gas entering n_C = 20; //moles of carbon mono oxide n_N = 80; //moles of nitrogen //Let e be the extent of reaction //Mole fractions in equilibrium mixture //CO = (20-e)/100 //CO2 = e/100 //e/(20-e) = K e = (20*K)/(1+K); n_CO2 = e; //moles of CO2 at equilibrium n_Fe = n_CO2; //by stoichiometry V = (n*Vo*T)/To; //volume of 100 mol of gas at 1200 K and 1 bar //Let m be iron produced per 100 m^3 gas m = (n_Fe*100*M)/V; mprintf('Iron produced per 100 cubic m of gas is %f kg',m/1000); //end
10a1191c9e522090e3fddd755497c0646724bd34
449d555969bfd7befe906877abab098c6e63a0e8
/3689/CH8/EX8.3/8_3.sce
662e83fab7c2f9c3413af5cd78e6108917e5ce01
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
292
sce
8_3.sce
//// //Varialble Declaration gama = 71.99e-3 //Surface tension of water, N/m r = 1.2e-4 //Radius of hemisphere, m theta = 0.0 //Contact angle, rad //Calculations DP = 2*gama*cos(theta)/r F = DP*%pi*r**2 //Results printf("\n Force exerted by one leg %5.3e N",F)
1e725c16d3cadd25cf1f739f6afecf83fffcd139
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.2/Unix/scilab-2.2/macros/scicos/MCLOCK_f.sci
dd299383a6d0feb70c60f748aa4fa9f0b4685220
[ "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-public-domain", "MIT" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
3,050
sci
MCLOCK_f.sci
function [x,y,typ]=MCLOCK_f(job,arg1,arg2) x=[];y=[],typ=[] select job case 'plot' then standard_draw(arg1) graphics=arg1(2); [orig,sz]=graphics([1:2]) xstringb(orig(1),orig(2),['2freq clock';' f/n f'],sz(1),sz(2),'fill') case 'getinputs' then [x,y,typ]=standard_inputs(arg1) case 'getoutputs' then [x,y,typ]=standard_outputs(arg1) case 'getorigin' then [x,y]=standard_origin(arg1) case 'set' then // paths to updatable parameters or states ppath = list(2) newpar=list(); for path=ppath do np=size(path,'*') spath=[matrix([3*ones(1,np);8*ones(1,np);path],1,3*np)] xx=get_tree_elt(arg1,spath)// get the block execstr('xxn='+xx(5)+'(''set'',xx)') if ~and(xxn==xx) then // parameter or states changed arg1=change_tree_elt(arg1,spath,xxn)// Update newpar(size(newpar)+1)=path// Notify modification end end x=arg1 y=%f typ=newpar case 'define' then model = list('csuper',0,0,0,2,[],[],.. list(list([600 , 400],' ',[],[],[]),.. list('Block',.. list([334 , 199],[40 , 40],%t,' ',[],[],13,.. [5; 4]),list('mfclck',0,0,1,2,[],0, .1,5,'d',[-1 0],[%f , %f]),' ','MFCLCK_f'),.. list('Block',.. list([457 , 161],[16.666667 , 16.666667],%t,' ',[],[],.. [5; 10; 0],6),list('sum',0,0,3,1,[],[],[],[],'d',%f,[%f , %f]),' ','CLKSOM_f'),.. list('Link',.. [360.66667; 360.66667; 411.92504],.. [193.28571; 169.33333; 169.33333],'drawlink',' ',[0 , 0],[10 , -1],[2 , 2],[9 , 1]),.. list('Link',.. [347.33333; 347.33333; 461.78421; 461.78421],.. [193.28571; 155.48961; 155.48961; 161],'drawlink',' ',[0 , 0],[10 , -1],[2 , 1],[3 , 1]),.. list('Link',.. [468.94938; 482.45315],.. [169.33333; 169.33333],'drawlink',' ',[0 , 0],[10 , -1],[3 , 1],[12 , 1]),.. list('Block',list([509 , 261],[20 , 20],%t,'Out',[],[],11,[]),.. list('output',0,0,1,0,[],[],[],1,'d',%f,[%f , %f]),' ','CLKOUT_f'),.. list('Block',list([509 , 142],[20 , 20],%t,'Out',[],[],14,[]),.. list('output',0,0,1,0,[],[],[],2,'d',%f,[%f , %f]),' ','CLKOUT_f'),.. list('Block',.. list(.. [411.92504; 169.33333],[1 , 1],%t,' ',[],[],4,.. [10; 11]),list('lsplit',0,0,1,2,[],[],[],[],'d',[%f , %f],[%t , %f]),' ','CLKSPLIT_f'),.. list('Link',.. [411.92504; 457],.. [169.33333; 169.33333],'drawlink',' ',[0 , 0],[10 , -1],[9 , 1],[3 , 2]),.. list('Link',.. [411.92504; 411.92504; 509],.. [169.33333; 271; 271],'drawlink',' ',[0 , 0],[10 , -1],[9 , 2],[7 , 1]),.. list('Block',.. list(.. [482.45315; 169.33333],[1 , 1],%t,' ',[],[],6,.. [13; 14]),list('lsplit',0,0,1,2,[],[],[],[],'d',[%f , %f],[%t , %f]),' ','CLKSPLIT_f'),.. list('Link',.. [482.45315; 489.60818; 489.60818; 354; 354],.. [169.33333; 169.33333; 338.27893; 338.27893; 244.71429],'drawlink',' ',[0 , 0],[10 , -1],[12 , 1],[2 , 1]),.. list('Link',.. [482.45315; 482.45315; 509],.. [169.33333; 152; 152],'drawlink',' ',[0 , 0],[10 , -1],[12 , 2],[8 , 1])),[],'h',%f,[%f , %f]) x=standard_define([3 3],model,' ') end
881a21fdba0e624178c1f5af0dc2aeedb39e39a6
449d555969bfd7befe906877abab098c6e63a0e8
/3506/CH9/EX9.3/Ex_9_3.sce
42f2ad35a4a2deef3bde8e4036c66c0dedf7ab96
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
959
sce
Ex_9_3.sce
//Optical Fiber communication by A selvarajan //example 9.3 //OS=Windows XP sp3 //Scilab version 5.5.1 clc; clear all; L=50//link length in Km Fiber_loss=0.2//fiber loss in dB/Km Req_Gain=Fiber_loss*L//required Gain Fn1db=5//Noise figure in dB Fn2db=5//Noise figure in dB Fn3db=5//Noise figure in dB Fn1=10^(Fn1db/10);//Noise figure in normal scale for all amplifiers Fn2=10^(Fn2db/10);//Noise figure in normal scale for all amplifiers Fn3=10^(Fn3db/10);//Noise figure in normal scale for all amplifiers G1=10^(Req_Gain/10)//gain in normal scale G2=10^(Req_Gain/10)//gain in normal scale Fneff=Fn1+(Fn2/G1)+(Fn3/(G1*G2));//Effective noise figure SNRindb=30;//Signal to noise ratio at input in dB SNRout=10^(SNRindb/10)/Fneff;//Signal to noise ratio at output in dB SNRoutdb=10*log10(SNRout); mprintf("Required Gain=%f",Req_Gain) mprintf("\nEffective noise figure=%f",Fneff) mprintf("\nSignal to noise ratio at output =%f dB",SNRoutdb)
20b6f21ffd6ec748f09bb77528c316d038c10612
449d555969bfd7befe906877abab098c6e63a0e8
/605/CH11/EX11.4/11_4.sce
42113cae32fc73026bcf7d6ec33a40ffc0eac564
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
569
sce
11_4.sce
//for transistor A function x=mod(n) r=real(n) i=imag(n) x=sqrt(r^2+i^2) endfunction S11=0.45*exp(%i*%pi/180*150) S12=0.01*exp(-%i*%pi/180*10) S21=2.05*exp(%i*%pi/180*10) S22=0.4*exp(-%i*%pi/180*150) UA=(mod(S12)*mod(S21)*mod(S11)*mod(S22))/(1-mod(S11)^2)/(1-mod(S22)^2) disp(UA,"UA=") //for transistor B S11=0.641*exp(-%i*%pi/180*171.3) S12=0.057*exp(%i*%pi/180*16.3) S21=2.058*exp(%i*%pi/180*28.5) S22=0.572*exp(-%i*%pi/180*95.7) UB=(mod(S12)*mod(S21)*mod(S11)*mod(S22))/(1-mod(S11)^2)/(1-mod(S22)^2) disp(UB,"UB=")
529b4695d7228ce8913b72b65a60209814619a98
6e257f133dd8984b578f3c9fd3f269eabc0750be
/ScilabFromTheoryToPractice/CreatingPlots/testcomet.sce
cddce60cac0582874569817b13a501454f239b7b
[]
no_license
markusmorawitz77/Scilab
902ef1b9f356dd38ea2dbadc892fe50d32b44bd0
7c98963a7d80915f66a3231a2235010e879049aa
refs/heads/master
2021-01-19T23:53:52.068010
2017-04-22T12:39:21
2017-04-22T12:39:21
89,051,705
0
0
null
null
null
null
UTF-8
Scilab
false
false
60
sce
testcomet.sce
x=[1:1000]'; clf; comet(x,[x zeros(x) -x],"colors",[2 3 5])
54630ea337fa567e3159d372c3d641ff538576a1
e84c695e8b1696d2aeef6bd6e769c7948dbeb16a
/cn/integracao.sce
dbf49ea4f1eab5ce62b30a28a6ee70bd0ebd304a
[]
no_license
xarmison/disciplinas
33bdef9ced6b7fd2da82d9929eb06a2fe5f66143
0fd6cd2241ab5108061e46f95f6db01b1ad8a350
refs/heads/master
2022-01-05T16:37:51.066680
2019-06-29T15:35:46
2019-06-29T15:35:46
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
959
sce
integracao.sce
// Integral pelo método do trapezio com n aplicações function i = trapezioDescendente(a, b, n) h = (b-a)/n; y = f(a:h:b); k = length(y); i = h/2; soma = y(1)+y(k); for j = 2:k-1 soma = soma + 2*y(j); end i = i * soma; endfunction // Integral pelo método de 1/3 de Simpson com n aplicações function i = simpson13(a, b, n ) h = (b-a)/(2*n); y = f(a:h:b); k = length(y); i = h/3; soma = y(1)+y(k); for j = 2:k-1 if(modulo(j, 2) == 0) soma = soma + 4*y(j) else soma = soma + 2*y(j) end end i = i * soma endfunction // Integral pelo método de 3/8 de Simpson com n aplicações function i = simpson38(a, b, n) h = (b-a)/(3*n); y = f(a:h:b); k = length(y); i = 3/8*h; soma = 0; for j = 1:n soma = soma + y(3*j -2) + 3*y(3*j - 1) + 3*y(3*j) + y(3*j + 1) end i = i * soma endfunction
aadcb468a1d7b4738a70eef4df3303430a74c933
449d555969bfd7befe906877abab098c6e63a0e8
/1946/CH2/EX2.26/Ex_2_26.sce
a6597e43f8f480d3e9a629db4915d800fcd7d9fd
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
404
sce
Ex_2_26.sce
// Example 2.26:Number of guided modes clc; clear; close; n1=1.5;//Core Refractive Index d= 0.013;// Cange in core-cladding refractive index alpha=1.90;// index profile a=20;//Core radius in micro meters h=1.55;//wavelngth in micro meters Mg= round((alpha/(alpha+2))*((n1*2*%pi*a)/h)^2 *d); Vc=2.405*sqrt(1+2/alpha); disp(Mg,"Number of guided modes are") disp(Vc," normalised frequency")
e8ec5d61d68d2fa7ec8594b4043161934a52d35a
99b4e2e61348ee847a78faf6eee6d345fde36028
/Toolbox Test/intfilt/intfilt7.sce
b78b9dd59f7a270a78fc1ddbdeda9ff6b14aa9ae
[]
no_license
deecube/fosseetesting
ce66f691121021fa2f3474497397cded9d57658c
e353f1c03b0c0ef43abf44873e5e477b6adb6c7e
refs/heads/master
2021-01-20T11:34:43.535019
2016-09-27T05:12:48
2016-09-27T05:12:48
59,456,386
0
0
null
null
null
null
UTF-8
Scilab
false
false
173
sce
intfilt7.sce
//not enough i/p args a=0.6; f=intfilt(4,2); disp(f); //output //!--error 4 //Undefined variable: typ //at line 48 of function intfilt called by : //f=intfilt(4,2);
5bd37855cd9df7298e7033c8621ac1e69c94d461
449d555969bfd7befe906877abab098c6e63a0e8
/1658/CH18/EX18.4/Ex18_4.sce
9c618b52c223e2d52d2c512705e6a557a3072709
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
269
sce
Ex18_4.sce
clc; //e.g 18.4; Vcc=12; Rc=330; Ib=0.3*10**-3; beta=100; //Ib=Vcc/Rb;//saturation current Rb=Vcc/Ib; disp('Kohm',Rb*10**-3,"Rb="); S=1+beta; disp(S); Ic=beta*Ib; disp('10^-3A',Ic*10**3,"Ic="); Vce=Vcc-(Ic*Rc);//cut-off voltage disp('V',Vce*1,"Vce=");
6484cbd2b68d3672aac5a8e5c531a2aa1f3b4b5a
9eee9f16f22ece682f8592130aa351a0d050f197
/atomics.tst
2611db260933d9df850f765d121e6c67e6ccb6dc
[]
no_license
ansjob/wacc
e388482b79af937a092f24011dd7c96a271101ce
aae607757954ad77614ba300ac3615dcb443ca4d
refs/heads/master
2021-01-23T18:49:28.013827
2014-01-10T16:15:57
2014-01-10T16:15:57
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
563
tst
atomics.tst
% Tests for the variable name grammar phrase(variable(Var), "x"), Var=x :: s. phrase(variable(Var), "y"), Var=y :: s. phrase(variable(Var), "angle"), Var=angle :: s. phrase(variable(Var), "skip") :: f. phrase(variable(Var), "if") :: f. phrase(variable(Var), "while") :: f. phrase(variable(Var), "do") :: f. phrase(variable(Var), "try") :: f. phrase(variable(Var), "catch") :: f. phrase(variable(_), "5x") :: f. phrase(variable(_), "") :: f. % White space tests phrase(white_space, "") :: s. phrase(white_space, " ") :: s. phrase(white_space, " ") :: s.
4974d7194b27f66e0ce245172e70cf53688708c2
eba87ea88592ae455b25057043e94955762052e1
/Scenario/world3.sce
5988ed539cbc7268f367cb59bb9bd8818937ddd9
[]
no_license
milkhouse1990/RabbitMilk2018
d5f9d4d740c763f7c9003be870f7c6c240a4f6df
1dffae3c4a70ab6cb29c7c20d4fe68e898ca5adf
refs/heads/master
2018-07-14T18:24:56.563587
2018-06-01T10:37:06
2018-06-01T10:37:06
116,246,271
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,285
sce
world3.sce
//偶像舞台 world 3 Stadium scene 0 Stadium cut 0 果酱亲 请大家大声告诉我:全月球最可爱的人是? 台下 果酱果酱果酱! 果酱亲 左面的果粉! 台下 果酱果酱果酱! 果酱亲 右面的果粉! 台下 果酱果酱果酱! 果酱亲 上面的果粉! 台下 果酱果酱果酱! 果酱亲 下面的果粉! 台下 果酱果酱果酱! 果酱亲 前面的果粉! 台下 果酱果酱果酱! // 花生、奶油、果酱,你有没有看过水獭小宝贝啊(((( charascale boss_jelly -1 1 果酱亲 后面的…啊啦,你谁? 牛奶酱 终于发现我了吗… 果酱亲 你是今天的secret guest吗?好像现在不是你出场的时候啊。 牛奶酱 我只是来找公主殿下的,不知怎么就跑到了这个地方… 果酱亲 原来是我的狂热粉丝啊,你应该拿着票去台下的座位上明白吗? 牛奶酱 真是不好意思哈,我讲的公主殿下并不是指你… 声音A 什么?居然说我们的果酱亲不是公主殿下?公主殿下,请您用您的可爱制裁她! 牛奶酱 (这个声音好像在哪里听过…) 台下 制裁她!制裁她!代表月亮消灭她! 果酱亲 真是不好意思,满足观众的需求是偶像的天职! //进入cut 1 plot 301 cut 1 warning boss cut 2 果酱亲 …好强!我可能要辜负大家的期待了,好不开心! 声音A 不要倒下!有我们在!来,让我们为我们的公主殿下疯狂打call! //需要向专业人士学习一下打call的技巧 牛奶酱 (这是什么…) //boss满血复活 牛奶酱 不会吧,还带这样的! // 这里其实是源于copy-x会在战斗中回血 boss 3 cut 2 果酱P 等一下这位小姐。 牛奶酱 你是说我吗? 果酱P 是的,小姐。你有没有发现其实自己很可爱呢? 牛奶酱 你这么说我还真是不好意思呢,虽然我确实很可爱… 果酱P 那么,要不要和我签订契约,成为偶像呢? 牛奶酱 偶像?就是像刚才那样吗?我可不喜欢。 果酱P 你不必现在就答复的。我这里有一套偶像的衣服,你可以先拿回去试试。 //获得:偶像形态 牛奶酱 既然你要送我,那我就不客气了。对不起我很忙,回头见! cut 3 gotoscene 7Extra0CrossRoad
6a50ea1f54c7f9c1e195ae28a7f50c754d500ccb
449d555969bfd7befe906877abab098c6e63a0e8
/2123/CH6/EX6.11/Exa_6_11.sce
8fde1e81d16fa9585054c7c61c3456bc5f25f0a9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
408
sce
Exa_6_11.sce
//Example No. 6.11 clc; clear; close; format('v',7); //Given Data : V=400;//volt P=4;//pole f=50;//Hz r2dash=1;//ohm/phase //Neglecting r1,x1,x2 f1=400;//Hz S=4/100;//Slip t2=1.5;//ms t2=t2*10^-3;//sec t=1/f1;//sec t1=t-t2;//sec R=2;//ohm(additional resistance) R2dash=(r2dash*t1+(r2dash+R)*t2)/t;//ohm V1=V/sqrt(3);//volt T=3*V1^2*S/R2dash;//N-m disp(T,"Torque in synch.watts : ");
7915c617bab31055902263ff4d4aef42cbb99584
449d555969bfd7befe906877abab098c6e63a0e8
/323/CH7/EX7.18/ex7_18.sci
8033410edec208f71351bec92fc6520cafbddc7a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
644
sci
ex7_18.sci
//Chapter7,Example 7.18,Pg 7.32 clc; Vrms=20 //Root mean square voltage Rl=500 //Load resistance in ohms Rf=20 //diode forward resistance Vm=sqrt(2)*Vrms printf("\n Vm=%.2f V \n",Vm) Im=Vm/(Rf+Rl) printf("\n Im=%.5f A \n",Im) Idc=2*Im/%pi printf("\n Idc=%.2f mA \n",Idc*10^3) Vdc=(2*Vm/%pi)-Idc*Rf printf("\n Vdc=%.2f V \n",Vdc) Irms=Im/sqrt(2) printf("\n Irms=%.2f mA \n",Irms*10^3) Pi=(Irms^2)*(Rf+Rl) printf("\n Input power=%.3f W \n",Pi) r=sqrt(((Irms/Idc)^2)-1) printf("\n Ripple factor=%.3f \n",r) vcd=Idc*Rf printf("\n Voltage across conducting diode=%.4f V \n",vcd) disp("Voltage across non conducting diode=20V")
a1200ce7e9b2235a8f838318411a6159812ca5f0
449d555969bfd7befe906877abab098c6e63a0e8
/737/CH2/EX2.7/Example2_07.sce
384f58fb308b9988e6dbffa514f884e3e113b1a3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
579
sce
Example2_07.sce
//Example 2.7 page 31 //Given a DSP system with a sampling rate of 8,000 Hz and a hold circuit used //after DAC, //a. Determine the percentage of distortion at the frequency of 3,400 Hz. //b. Determine the percentage of distortion at the frequency of 1,000 Hz. clc,clear,close; fs = 8000; T = 1/fs; //part a fa = 3400; x = fa*T; distortion = (1 - sin(x*%pi)/(x*%pi)) * 100; disp("(a) distortion % = " + string(distortion) + "%"); //part b fb = 1000; x = fb*T; distortion = (1 - sin(x*%pi)/(x*%pi)) * 100; disp("(b) distortion % = " + string(distortion) + "%");
e91ef4a505eba92f573f3b313351e5006b1182e8
449d555969bfd7befe906877abab098c6e63a0e8
/2837/CH12/EX12.2/Ex12_2.sce
6563a56ce88e6ad13a04670c45aece275567e9eb
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
371
sce
Ex12_2.sce
clc clear //Initialization of variables th=350 //F tc=150 //F od1=4.5 id1=4.026 od2=6.5 id2=4.5 k1=32 k2=0.042 //calculations Q=2*%pi*(th-tc)/(log(od1/id1) /k1 + log(od2/id2) /k2) r1=log(od1/id1) /k1 rt=log(od1/id1) /k1 + log(od2/id2) /k2 ti=th-r1/rt*(th-tc) //results printf("Heat flow = %.1f Btu/hr",Q) printf("\n Interface temperature = %.2f F",ti)
edd245af53c9300974d59cef69245d643f8cc728
28a8d47c4d79b231f8bebc28925792a290f67e9f
/db/others/sql/test_create_type.tst
fb9e3d04320392d4ecd425c756035c5b10a3090c
[]
no_license
ZVlad1980/doo
a1fe7d18ccfd0acf6ced7dbb33927c86a925aae8
e81be8f524b78b9a6ec06b7f83a8c13354fc6412
refs/heads/master
2021-08-17T02:03:54.553822
2017-11-20T17:21:03
2017-11-20T17:21:03
111,440,129
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,480
tst
test_create_type.tst
PL/SQL Developer Test script 3.0 39 -- Created on 11.08.2014 by ZHURAVOV_VB declare -- Local variables here t xxdoo_db_prgType_typ := xxdoo_db_prgType_typ(p_owner => 'xxdoo', p_name => 'xxdoo_test_typ', p_superTypeOwner => null, p_superTypeName => null, p_final => 'N'); -- m xxdoo_db_prgMethod_typ := xxdoo_db_prgMethod_typ( p_type => 'static procedure', p_name => 'test', p_paramters => xxdoo_db_prgVariables_typ( xxdoo_db_prgVariable_typ('p_par1', 'in out nocopy', 'varchar2', 'default ''def'''), xxdoo_db_prgVariable_typ('p_par2',null,'varchar2','default null') ) , p_return_type => null, p_is_public => 'Y', p_comment => 'Test procedure' ); begin -- Test statements here m.put_line('begin'); m.inc; m.put_line('null;'); t.add_method(m); -- t.add_attr('attr1','varchar2(100)'); t.add_attr('attr2','number'); -- t.create_ddl;--(p_is_full => 'N'); -- dbms_output.put_line(t.specification); dbms_output.put_line('/'); dbms_output.put_line(t.body); end; 0 0
3351089e9abbddea2f6d64624199fe9c89337cb5
449d555969bfd7befe906877abab098c6e63a0e8
/226/CH8/EX8.8/example8_sce.sce
816029449e930a2824c4c5f90ede1e20191034dd
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
317
sce
example8_sce.sce
//chapter 8 //example 8.8 //page 326 printf("\n") printf("given") ton=100*10^-9;Rs=600;Rb=4.7*10^3; C1=(ton/Rs)*10^12; printf(" suitable speed up capacitor is %dpF\n",C1) C1=160*10^-12;//standard value PWmin=(5*Rs*C1); SWmin=5*Rb*C1; fmax=1/(PWmin+SWmin); printf("maximum signal frequency is %dHz\n",fmax)
c0ddf7106f39dbc83b9db75246cea119659b8776
449d555969bfd7befe906877abab098c6e63a0e8
/1085/CH2/EX2.9/ex2_9.sce
f81e40fd283b74dbe4927aa465e7248a753e186a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,229
sce
ex2_9.sce
//Exam:2.9 clc; clear; close; n_1=1;//electron excited from ground state h=6.62*10^-34;//Planck constant c=3*10^8;//speed of light E_o=8.825*10^-12;//permittivity of free space e=1.6*10^-19;//electron charge(in C) m=9.11*10^-31;//mass of electron(in Kg) E_1=10.2;//energy excites the hydrogen from ground level(in eV) K=m*e^4/(8*(E_o^2)*(h^2))//in joule K_e=K/e;//in eV //E_1=K_e*((1/n_1^2)-(1/n^2)) //1/(n^2)=1/(n_1^2)-E_1/K_e //n^2=1/(1/(n_1^2)-E_1/K_e) n=(1/(1/(n_1^2)-E_1/K_e))^(1/2);//principal quntum number when 10.2 eV energy excites electron disp(ceil(n),'principal quntum number when 10.2 eV energy excites electron='); W_1=h*c/(E_1*e)*10^10;//wavelength of radiation when 10.2 eV energy excites electron disp(W_1,'wavelength of radiation when 10.2 eV energy excites electron(in A)=') E_2=12.09;//energy excites the hydrogen from ground level(in eV) n_2=(1/(1/(n_1^2)-E_2/K_e))^(1/2);//principal quntum number when 12.09 eV energy excites electron W_2=h*c/(E_2*e)*10^10;//wavelength of radiation when 12.09 eV energy excites electron disp(ceil(n_2),'principal quntum number when 12.09 eV energy excites electron=') disp(W_2,'wavelength of radiation when 12.09 eV energy excites electron(in A)=')
f0f38749e694d206398b4b1573286493fd2c8a64
449d555969bfd7befe906877abab098c6e63a0e8
/3784/CH4/EX4.29/Ex4_29.sce
f597036e706e95edd6964ebcbcc959eba04b8a2d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
644
sce
Ex4_29.sce
clc //Variable Initialisation Ra=0.08//Armature resistance in ohm Rb=1.5 Rf=12 N=500//Rated Speed of Motor in rpm //Solution If0=poly(0,'If0') Eb0=poly(0,'Eb0') If=[4.16,6.2,8.33,10.5,12.5,14.6,16.6,18.8,20] Eb=[41.6,61.2,75,85,92,96.6,101,105,125] W=2*%pi*N/60 Ia=((Rb+Rf)/Rb)*If0 K=Eb0*(1/W) If1=12.6 Eb1=102.2 for If0=If1 disp(Ia) end for Eb0=Eb1 disp(K) end If2=12.6 K2=1.75 Eb2=102.2 K1=Eb2*(1/W) Ia2=9*If2 Eb3=(If2*Rf)+(Ia2*Ra)//Wrongly calculated in book N2=Eb3*60/(K1*2*%pi) printf('\n\n Motor Speed at which load is hold by motor=%0.1f rpm\n\n',N2)//The answer provided in the textbook is wrong
8feddcd917ff56c2060b1c32d8ba6bf796c412e6
449d555969bfd7befe906877abab098c6e63a0e8
/911/CH2/EX2.7/ex_2_7.sce
fbbbbc8f8562d530f501c3ea035ed250baa10b12
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
261
sce
ex_2_7.sce
// example 2.7// clc //clears the screen// clear //clears all existing variables// a=8; //given numbers// b=185; c=b-a; d=dec2bin(c,12) disp(c,'subtraction of given numbers in decimal form = ') disp(d,'subtraction of given numbers in binary form = ')
b5a8df5c59ea6cf9dfa98a4a6769171335d79a2c
449d555969bfd7befe906877abab098c6e63a0e8
/3772/CH16/EX16.8/Ex16_8.sce
c5138b52e5c004bcf4a68b6117a8ed150f0a0870
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
750
sce
Ex16_8.sce
// Problem 16.8,Page no.371 clc;clear; close; D=1.5 //cm //Diameter of boiler rho=75 //% //Efficiency of joint sigma_t=85 //MPa //stress in tension sigma_s=70 //MPa //stress in shear P=1 //MPa //Steam Pressure //Notification has been changed //Calculation t=P*10**6*D*(2*sigma_t*10**6*rho*10**-2)**-1*100 //Adopt 12 mm thickness of plate t_1=12 //mm d=6*t_1**0.5 //Adopt 21 mm diameter of rivet d_1=21 //mm //P_t=(p-d_1*10**-1)*t*10**-1*10**-4*sigma_t*10**6 //N //Strength of plate in tearing //After substituting values and further simplifying we get //P_t=(p-2.1)*10200 //N P_s=1.875*%pi*4**-1*d_1**2*10**-6*2*sigma_s*10**6 //(p-d_1*10**-1)*10200=P_s p=P_s*10200**-1+d_1*10**-1 //Result printf("Pitch of plate is %.2f",p);printf(" cm")
81733d30e3be32567f412313f5e2f90aaadf4ae9
449d555969bfd7befe906877abab098c6e63a0e8
/1535/CH8/EX8.8/Ch08Ex8.sci
f30ecd927d59f1352399e03bc533d15af5bcaab1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,174
sci
Ch08Ex8.sci
// Scilab Code Ex8.8: Page-174 (2010) c = 1; // For simplicity assume speed of light to be unity, m/s me = 1; // For simplicity assume mass of electron to be unity, kg tau = 2.3e-006; // Average lifetime of mu-meson in rest frame, s t = 6.9e-006; // Average lifetime of mu-meson in laboratory frame, s // Fromm Time Dilation Rule, tau = t*sqrt(1-(v/c)^2), solving for v v = sqrt(1-(tau/t)^2)*c; // Speed of mu-meson in the laboratory frame, m/s c m0 = 207*me; // Rest mass of mu-meson, kg m = m0/sqrt(1-(v/c)^2); // Relativistic variation of mass with velocity, kg me = 9.1e-031; // Mass of an electron, kg c = 3e+008; // Speed of light in vacuum, m/s e = 1.6e-019; // Energy equivalent of 1 eV, J/eV T = (m*me*c^2 - m0*me*c^2)/e; // Kinetic energy of mu-meson, J printf("\nThe speed of mu-meson in the laboratory frame = %6.4fc", v); printf("\nThe effective mass of mu-meson = %3d me", m); printf("\nThe kinetic energy of mu-meson = %5.1f MeV", T/1e+006); // Result // The speed of mu-meson in the laboratory frame = 0.9428c // The effective mass of mu-meson = 620 me // The kinetic energy of mu-meson = 211.9 MeV
959ca79d84ea65d6371fa97d71766b0a19062cdb
cc79f7493e50b31f04732c9577175912b2ec2604
/adamsBashforth.sci
f894c260e9b21a79db0e4328760e21b77bbca200
[]
no_license
WhiskyDelta/ScilabOrbits
815c596b2c3ba382b312eb95e5b58990b0501d88
74881418c75097fa5d86c0fcfacecbe8d93cf14b
refs/heads/master
2016-08-06T21:00:52.285372
2015-07-31T18:32:38
2015-07-31T18:32:38
39,731,729
3
0
null
null
null
null
UTF-8
Scilab
false
false
1,887
sci
adamsBashforth.sci
function [y,ydot]=adamsBashforth(s,oldY,oldYdot,f,h) y = list(); ydot = list(); hasEnoughSteps = size(oldY) >= s; if hasEnoughSteps then for i=1:s-1 y(i+1)=oldY(i); ydot(i+1) = oldYdot(i) end end if s == 4 & hasEnoughSteps then y(1) = oldY(1) + h*(55/24*oldYdot(1) - 59/24*oldYdot(2) + 37/24*oldYdot(3) - 3/8*oldYdot(4)); end if s == 3 & hasEnoughSteps then y(1) = oldY(1) + h*(23/12*oldYdot(1) - 4/3*oldYdot(2) + 5/12*oldYdot(3)); end if s == 2 & hasEnoughSteps then y(1) = oldY(1) +h*(1.5*oldYdot(1) - .5*oldYdot(2)); end if s == 1 then y(1) = oldY(1) + h*oldYdot(1); end if ~hasEnoughSteps then for i=1:size(oldY) y(i+1) = oldY(i); ydot(i+1) = oldYdot(i) end end if size(oldY) == 1 & s >= 2 then y(1) = oldY(1) + h*oldYdot(1); end if size(oldY) == 2 & s >= 3 then y(1) = oldY(1) +h*(1.5*oldYdot(1) - .5*oldYdot(2)); end if size(oldY) == 3 & s >= 4 y(1) = oldY(1) + h*(23/12*oldYdot(1) - 4/3*oldYdot(2) + 5/12*oldYdot(3)); end ydot(1) = f(y(1)); endfunction // //function out=sL2(in1,in2) // out = list() // for i = 1:size(in1) // out(i)=in1(i)+in2(i) // end //endfunction // //function out=sL3(in1,in2,in3) // out = list() // out = sL2(sL2(in1, in2),in3) //endfunction // //function out=sL4(in1,in2,in3,in4) // out = list() // out = sL2(sL2(in1, in2),sL2(in3,in4) //endfunction // //function out=sL5(in1,in2,in3,in4,in5) // out = list() // out = sL2(sL3(in1, in2, in3),sL2(in4,in5) //endfunction // // //function out=sML(scalar,liste) // out = list() // for i = 1:size(liste) // out(i)=scalar*liste(i) // end //endfunction //
552ea01a5f0d89c3b3f193f50d57f287f8f5a9a6
b16d10d9a8641b0ec6ab426835e154584cf6dad2
/model/hyckpp.tst
42e929e1929e1341bd0a4883bb640403c6af05de
[]
no_license
Racha711/GCAP2
8ef3bfcb0b772c06f033ab7830f6e5e792d68bb9
6a4a6686dede2ce07cfb6f927a21f2b4587bfbd3
refs/heads/main
2023-05-25T17:55:28.542809
2021-04-25T18:02:02
2021-04-25T18:02:02
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
27,018
tst
hyckpp.tst
subroutine OCEANS c c --- ------------------------------ c --- MICOM-based hybrid ocean model c c --- v e r s i o n 0.9 c --- ------------------------------ c USE FLUXES, only : e0,prec,eprec,evapor,flowo,eflowo,dmua,dmva . ,erunosi,runosi,srunosi,runpsi,srunpsi,dmui,dmvi,dmsi,dhsi,dssi . ,gtemp,sss,mlhc,ogeoza,uosurf,vosurf,MELTI,EMELTI,SMELTI . ,gmelt,egmelt,solar USE SEAICE_COM, only : rsi,msi USE SEAICE, only : fsss,tfrez USE GEOM, only : dxyp USE MODEL_COM, only : focean USE CONSTANT, only : lhm,shi,shw USE MODEL_COM, only: dtsrc * ,itime,iyear1,nday,jdendofm,jyear,jmon,jday,jdate,jhour,aMON c implicit none c #include "dimensions.h" #include "dimension2.h" #include "common_blocks.h" #include "cpl.h" #include "a2o.h" #include "kpp.h" c real sum,coord,x,x1,totl,sumice,fusion,saldif,sofsig,tf . ,sigocn,kappaf,check,apehyc,pechg_hyc_bolus . ,hyc_pechg1,hyc_pechg2,q,sum1,sum2 integer jj1,no,index,nflip,mo0,mo1,mo2,mo3,rename,iatest,jatest . ,OMP_GET_NUM_THREADS,io,jo,maska(iia,jja),nsub external rename logical master,slave,diag_ape character util(idm*jdm+14)*2,charac(20)*1,string*20, . flnm*60 data charac/'1','2','3','4','5','6','7','8','9','0', . 'A','B','C','D','E','F','G','H','I','J'/ data iatest,jatest/9,7/ c data iatest,jatest/33,40/ ! Iceland data nflip/0/ c real*4 user_time,sys_time,total_time,avg_time real*4 cnuity_time,cnuity_total_time,cnuity_avg_time real*4 tsadvc_time,tsadvc_total_time,tsadvc_avg_time real*4 momtum_time,momtum_total_time,momtum_avg_time real*4 barotp_time,barotp_total_time,barotp_avg_time real*4 thermf_time,thermf_total_time,thermf_avg_time real*4 enloan_time,enloan_total_time,enloan_avg_time real*4 mxlayr_time,mxlayr_total_time,mxlayr_avg_time real*4 hybgen_time,hybgen_total_time,hybgen_avg_time real*4 agcm_time integer after,before,rate,bfogcm data cnuity_total_time,tsadvc_total_time /0.0,0.0/ data momtum_total_time,barotp_total_time /0.0,0.0/ data thermf_total_time,enloan_total_time /0.0,0.0/ data mxlayr_total_time,hybgen_total_time /0.0,0.0/ data cnuity_time,tsadvc_total_time /0.0,0.0/ data momtum_time,barotp_total_time /0.0,0.0/ data thermf_time,enloan_total_time /0.0,0.0/ data mxlayr_time,hybgen_total_time /0.0,0.0/ c real osst(idm,jdm),osss(idm,jdm),osiav(idm,jdm) . ,oogeoza(idm,jdm),usf(idm,jdm),vsf(idm,jdm) . ,utila(iia,jja) #include "state_eqn.h" c c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - c --- initiate named-pipe comparison utility c --- (see pipe.f for instructions) ccc inquire(file='master',exist=master) ccc inquire(file='slave',exist=slave) ccc if ((master .and. slave) .or. (.not.master .and. .not.slave)) ccc . stop '(master/slave ambiguity)' ccc if (master) call pipe_init(.true.) ccc if (slave) call pipe_init(.false.) c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - c call getdte(Itime,Nday,Iyear1,Jyear,Jmon,Jday,Jdate,Jhour,amon) write(*,'(a,i8,7i5,a)')'chk =', . Itime,Nday,Iyear1,Jyear,Jmon,Jday,Jdate,Jhour,amon c if (mod(jhour,nhr).eq.0.and.mod(itime,nday/24).eq.0) then c$OMP PARALLEL DO do 101 ia=1,iia do 101 ja=1,jja ataux(ia,ja)=0. atauy(ia,ja)=0. aflxa2o(ia,ja)=0. aemnp(ia,ja)=0. asalt(ia,ja)=0. aice(ia,ja)=0. austar(ia,ja)=0. aswflx(ia,ja)=0. 101 continue c$OMP END PARALLEL DO endif c c$OMP PARALLEL DO c --- accumulate agcm fields and check if ogcm will be called do 102 ia=1,iia do 102 ja=1,jja maska(ia,ja)=0 if (focean(ia,ja).eq.0.) goto 102 maska(ia,ja)=1 c --- accumulate aemnp(ia,ja)=aemnp(ia,ja) ! kg/m*m => m/s .+((prec(ia,ja)-evapor(ia,ja,1))*(1.-rsi(ia,ja)) ! open water .+(flowo(ia,ja)+gmelt(ia,ja)+melti(ia,ja))/(dxyp(ja)*focean(ia,ja))!ocn/ice .+(runosi(ia,ja)+runpsi(ia,ja))*rsi(ia,ja))*thref ! ice . /(3600.*real(nhr)) aflxa2o(ia,ja)=aflxa2o(ia,ja) ! J/m*m => W/m*m . +((e0(ia,ja,1)+eprec(ia,ja))*(1.-rsi(ia,ja)) ! ocean water . +(eflowo(ia,ja)+egmelt(ia,ja)+emelti(ia,ja)) . /(dxyp(ja)*focean(ia,ja)) ! ocn or ice css . +(erunosi(ia,ja)+erunpsi(ia,ja))*rsi(ia,ja)) ! ice . + erunosi(ia,ja)*rsi(ia,ja)) ! ice . /(3600.*real(nhr)) asalt(ia,ja)=asalt(ia,ja) ! kg/m*m/sec salt .+((srunosi(ia,ja)+srunpsi(ia,ja))*rsi(ia,ja) ! . +smelti(ia,ja)/(dxyp(ja)*focean(ia,ja))) ! . /(3600.*real(nhr)) aice(ia,ja)= aice(ia,ja) + rsi(ia,ja)*dtsrc/(real(nhr)*3600.) c --- dmua on B-grid, dmui on C-grid; Nick aug04 ataux(ia,ja)=ataux(ia,ja)+(dmua(ia,ja,1)+dmui(ia,ja)) ! scaled by rsi . /(3600.*real(nhr)) ! kg/ms => N/m*m atauy(ia,ja)=atauy(ia,ja)+(dmva(ia,ja,1)+dmvi(ia,ja)) . /(3600.*real(nhr)) ! kg/ms => N/m*m austar(ia,ja)=austar(ia,ja)+( . sqrt(sqrt((dmua(ia,ja,1)+dmui(ia,ja))**2 . +(dmva(ia,ja,1)+dmvi(ia,ja))**2)/dtsrc*thref)) ! sqrt(T/r)=>m/s . *dtsrc/(real(nhr)*3600.) aswflx(ia,ja)=aswflx(ia,ja)+(solar(1,ia,ja)*(1.-rsi(ia,ja))!J/m*m=>W/m*m . +solar(3,ia,ja)* rsi(ia,ja)) . /(3600.*real(nhr)) 102 continue c$OMP END PARALLEL DO c nsavea=nsavea+1 if (mod(jhour,nhr).gt.0.or.mod(itime,nday/24).eq.0) return print *,' chk agcm saved over hr=',nsavea*24/nday nsavea=0 c call veca2o(ataux,atauy,taux,tauy) !wind stress call flxa2o(aice,oice) !ice coverage call flxa2o(aflxa2o,oflxa2o) !heatflux everywhere call flxa2o(asalt,osalt) !saltflux from SI call flxa2o(aemnp,oemnp) !E - P everywhere call flxa2o(austar,ustar) !friction velocity call flxa2o(aswflx,sswflx) ! shortwave flux c ccc if (nstep.eq.0) then cccc$OMP PARALLEL DO ccc do 17 j=1,jj ccc do 17 l=1,isp(j) ccc do 17 i=ifp(j,l),ilp(j,l) ccc if (oice(i,j).gt. .95 .and. temp(i,j,1).gt. .0) ccc . write(*,'(f6.2,a,2i4,f6.2,a,f6.2)') ccc . oice(i,j),' bad sst at=',i,j,temp(i,j,1),' new s=', ccc . sofsig(th3d(i,j,1)+thbase,-1.8) ccc if (oice(i,j).gt. .5) then ccc do k=1,kk ccc temp(i,j,k )=min(temp(i,j,k),-1.8) ccc saln(i,j,k )=sofsig(th3d(i,j,k)+thbase,temp(i,j,k)) ccc temp(i,j,k+kk)=temp(i,j,k) ccc saln(i,j,k+kk)=saln(i,j,k) ccc enddo ccc endif ccc 17 continue cccc$OMP END PARALLEL DO ccc endif c call system_clock(before) call system_clock(count_rate=rate) bfogcm=before agcm_time = real(bfogcm-afogcm,4)/real(rate,4) write (lp,99009) agcm_time,' sec for AGCM step ',nstep c if (nstep.eq.0 .or.nstep.eq.nstep0) then c c Print seconds elapsed since startup (should be almost zero) c call system_clock(before) c bfogcm=before call system_clock(count_rate=rate) call system_clock(after) user_time = real(after-before,4)/real(rate,4) css write (lp,99009) user_time, ' Time 0 HYCOM starting up' 99009 format (f12.3,a,i8) c c agcm_time = real(bfogcm-afogcm,4)/real(rate,4) c write (lp,99009) agcm_time,' sec for AGCM step ',nstep c c$OMP PARALLEL SHARED(mo0) mo0=OMP_GET_NUM_THREADS() c$OMP END PARALLEL call OMP_SET_DYNAMIC(.false.) ccc call OMP_SET_NUM_THREADS(max(mo0,16)) c$OMP PARALLEL SHARED(mo1) ccc mo1=OMP_GET_NUM_THREADS() c$OMP END PARALLEL c write (lp,'(2(a,i5))') ' hycom thread count',mo0 c write (lp,'(2(a,i5))') ' hycom thread count',mo0,' changed to',mo1 ccc . ,' ======= number of threads:',mo1,' =======' c lp=6 c c --- compute eqn.of state check values c check=36.876506 ! T:[-2:32],S:[16:38] if (abs(sigocn(4.,35.)-check).gt..0001) then write (lp,'(/2(a,f11.6))') 'error -- sigocn(t=4,s=35) should be', . check,', not',sigocn(4.,35.) css stop end if c --- reference: t= 0.0, s=34.0, p=0 bar,kap(4.5,34.5,1.e7)= 0.11954594 c check=.11954594 c check=0. c if (abs(kappaf(4.5,34.5,1.e7)-check).gt..00001) then c write (lp,'(/a,2(a,f12.8))') 'error: kappa(4.5,34.5,10^7)', c . ' should be',check,', not',kappaf(4.5,34.5,1.e7) c stop c end if mixfrq=int(43200./baclin+.0001) c write (lp,109) thkdff,temdff,veldff,viscos,diapyc,vertmx 109 format (' turb. flux parameters:',1p/ . ' thkdff,temdff,veldff =',3e9.2/ . ' viscos,diapyc,vertmx =',3e9.2) write (lp,'(a,1p,e11.3)') 'thbase =',thbase c c --- 'lstep' = number of barotropic time steps per baroclinic time step. c --- lstep m u s t be even. c lstep=baclin/batrop lstep=2*((lstep+1)/2) dlt=baclin/lstep nstepi=real(nhr)*3600./baclin + .0001 write (lp,'(i4,'' barotropic steps per baroclinic time step'')') . lstep write (lp,'(''ogcm exchange info w. agcm every step/hr'',2i5)') . nstepi,nhr c c --- set up parameters defining the geographic environment c css call geopar ! moved to agcm for zero start or below css call inicon ! moved to agcm call inikpp c watcum=0. empcum=0. c write (lp,'(''restart date in ogcm/agcm '',2i5,'' hr '',2i6 . /'' iyear1/jyear='',2i5)') . int((nstep0+nstepi-1)*baclin)/(3600*24),itime/nday . ,int((nstep0+nstepi-1)*baclin)/3600,itime*24/nday,iyear1,jyear if ((nstep0+nstepi-1)*baclin/3600 .ne. itime*24/nday) then write (lp,'(/(a,i9,a,i9,a,f7.1,a))')'chk model start step',nstep0 . ,' changed to: ' . ,int((itime*24/nday+(iyear1-jyear)*8760)*3600/baclin)-nstepi+1 . ,' (day ' .,(int((itime*24/nday+(iyear1-jyear)*8760)*3600/baclin)-nstepi+1) . *baclin/86400,')' nstep0=int((itime*24/nday+(iyear1-jyear)*8760)*3600/baclin) . -nstepi+1 nstep=nstep0 time0=nstep0*baclin/86400 else write (lp,'(/(a,i9))') 'chk model starts at steps',nstep0 endif c endif c if (nstepi.le.0) stop 'wrong nstepi' c c print *,' shown below oice' c call zebra(oice,iio,iio,jjo) c print *,' shown below aflxa2o' c call zebra(aflxa2o,iia,iia,jja) c c$OMP PARALLEL DO do 202 j=1,jj do 202 l=1,isp(j) do 202 i=ifp(j,l),ilp(j,l) osst(i,j)=0. osss(i,j)=0. osiav(i,j)=0. 202 continue c$OMP END PARALLEL DO c c --- --------------------- c --- sub loop starts here c --- --------------------- c c --- letter 'm' refers to mid-time level (example: dp(i,j,km) ) c --- letter 'n' refers to old and new time level c nsaveo=0 do 15 nsub=1,nstepi m=mod(nstep ,2)+1 n=mod(nstep+1,2)+1 mm=(m-1)*kk nn=(n-1)*kk k1m=1+mm k1n=1+nn nstep=nstep+1 time=time0+(nstep-nstep0)*baclin/86400. c diagno=.false. if (JDendOfM(jmon).eq.jday.and.Jhour.eq.24.and.nsub.eq.nstepi) . diagno=.true. ! end of month c sum1=0. sum2=0. do 501 k=1,kk km=k+mm kn=k+nn do 501 j=1,jj do 501 l=1,isp(j) do 501 i=ifp(j,l),ilp(j,l) sum1=sum1+temp(i,j,km)*dp(i,j,km)*scp2(i,j) sum2=sum2+temp(i,j,kn)*dp(i,j,kn)*scp2(i,j) write(333,'(a,i3,4f7.1,f8.1)') 'i,j,k=',i,j,k . ,dp(i,j,k+mm)/onem,temp(i,j,k+mm) . ,dp(i,j,k+nn)/onem,temp(i,j,k+nn) 501 continue c write(*,'(a,i6,2f12.2)') . ' htst1=',nstep-nstep0,sum1*spcifh*1000/area*1.e-8 . ,sum2*spcifh*1000/area*1.e-8 c diag_ape=diagno if (nstep.eq.1) diag_ape=.true. c c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - c --- available potential energy diagnostics: if (diag_ape) . write (501,'(f9.1,a,1p,e15.7)') time,' APE (J):', . hyc_pechg1(dp(1,1,k1n),th3d(1,1,k1n),31) c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 103 format (f9.1,a,-12p,f9.3,' TW') c call system_clock(before) ! time elapsed since last system_clock cnuity_time = 0.0 ! Zero per-call timer call cnuity(m,n,mm,nn,k1m,k1n) call system_clock(after) ! time elapsed since last system_clock cnuity_time = real(after-before,4)/real(rate,4) ! time call used cnuity_total_time = cnuity_total_time + cnuity_time ! subtotal total_time = total_time + cnuity_time ! total c call sstbud(0,' initialization',temp(1,1,k1n)) c ccc write (string,'(a12,i8)') 'cnuity, step',nstep ccc call comparall(m,n,mm,nn,string) c c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - if (diag_ape) . q=hyc_pechg1(dp(1,1,k1m),th3d(1,1,k1m),32) c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - before = after tsadvc_time = 0.0 call tsadvc(m,n,mm,nn,k1m,k1n) call system_clock(after) tsadvc_time = real(after-before,4)/real(rate,4) tsadvc_total_time = tsadvc_total_time + tsadvc_time total_time = total_time + tsadvc_time c call sstbud(1,' horiz.advection',temp(1,1,k1n)) c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - if (diag_ape) . write (501,103) time,' APE change due to time smoothing: ', . hyc_pechg2(dp(1,1,k1m),th3d(1,1,k1m),32) c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ccc write (string,'(a12,i8)') 'tsadvc, step',nstep ccc call comparall(m,n,mm,nn,string) c before = after momtum_time = 0.0 call momtum(m,n,mm,nn,k1m,k1n) call system_clock(after) momtum_time = real(after-before,4)/real(rate,4) momtum_total_time = momtum_total_time + momtum_time total_time = total_time + momtum_time c ccc write (string,'(a12,i8)') 'momtum, step',nstep ccc call comparall(m,n,mm,nn,string) c before = after barotp_time = 0.0 call barotp(m,n,mm,nn,k1m,k1n) call system_clock(after) barotp_time = real(after-before,4)/real(rate,4) barotp_total_time = barotp_total_time + barotp_time total_time = total_time + barotp_time c ccc write (string,'(a12,i8)') 'barotp, step',nstep ccc call comparall(m,n,mm,nn,string) c c before = after c convec_time = 0.0 c call convec(m,n,mm,nn,k1m,k1n) c call system_clock(after) c convec_time = real(after-before,4)/real(rate,4) c convec_total_time = convec_total_time + convec_time c total_time = total_time + convec_time c call sstbud(2,' convec.adjustmt',temp(1,1,k1n)) c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - if (diag_ape) . write (501,103) time,' APE change due to mass adjustment:', . hyc_pechg2(dp(1,1,k1n),th3d(1,1,k1n),31) c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - c ccc write (string,'(a12,i8)') 'convec, step',nstep ccc call comparall(m,n,mm,nn,string) c c before = after c diapfl_time = 0.0 c call diapfl(m,n,mm,nn,k1m,k1n) c call system_clock(after) c diapfl_time = real(after-before,4)/real(rate,4) c diapfl_total_time = diapfl_total_time + diapfl_time c total_time = total_time + diapfl_time c call sstbud(3,' diapyc.mixing',temp(1,1,k1n)) c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - if (diag_ape) . write (501,103) time,' APE change due to diapycn. mixing:', . hyc_pechg2(dp(1,1,k1n),th3d(1,1,k1n),31)*2./mixfrq c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - c ccc write (string,'(a12,i8)') 'diapfl, step',nstep ccc call comparall(m,n,mm,nn,string) c before = after thermf_time = 0.0 call thermf(m,n,mm,nn,k1m,k1n) call system_clock(after) thermf_time = real(after-before,4)/real(rate,4) thermf_total_time = thermf_total_time + thermf_time total_time = total_time + thermf_time c ccc write (string,'(a12,i8)') 'thermf, step',nstep ccc call comparall(m,n,mm,nn,string) c before = after enloan_time = 0.0 call eice(m,n,mm,nn,k1m,k1n) call system_clock(after) enloan_time = real(after-before,4)/real(rate,4) enloan_total_time = enloan_total_time + enloan_time total_time = total_time + enloan_time c before = after mxlayr_time = 0.0 c call mxlayr(m,n,mm,nn,k1m,k1n) call mxkpp(m,n,mm,nn,k1m,k1n) call system_clock(after) mxlayr_time = real(after-before,4)/real(rate,4) mxlayr_total_time = mxlayr_total_time + mxlayr_time total_time = total_time + mxlayr_time c call sstbud(4,' air-sea fluxes',tprime) c call sstbud(5,' entrainment',temp(1,1,k1n)) c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - if (diag_ape) . write (501,103) time,' APE change due to thermal forcing:', . hyc_pechg2(dp(1,1,k1n),th3d(1,1,k1n),31) c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - c ccc write (string,'(a12,i8)') 'mxlayr, step',nstep ccc call comparall(m,n,mm,nn,string) c before = after hybgen_time = 0.0 call hybgen(m,n,mm,nn,k1m,k1n) call system_clock(after) hybgen_time = real(after-before,4)/real(rate,4) hybgen_total_time = hybgen_total_time + hybgen_time total_time = total_time + hybgen_time c ccc write (string,'(a12,i8)') 'hybgrd, step',nstep ccc call comparall(m,n,mm,nn,string) c - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - if (diag_ape) . write (501,103) time,' APE change due to vert.regridding:', . hyc_pechg2(dp(1,1,k1n),th3d(1,1,k1n),31) c call sstbud(6,' vert.regridding',temp(1,1,k1n)) c c --------------------------------------------------------------------------- c c --- output and diagnostic calculations c c --------------------------------------------------------------------------- c if (diagno .or. mod(time+.0001,1.).lt..0002) then ! once a day c c --- make line printer plot of mean layer thickness index=-1 nflip=mod(nflip+1,2) do 705 k=1+(kk-1)*nflip,kk-(kk-1)*nflip,1-2*nflip ccc if (k.eq.kk-(kk-1)*nflip) index=1 sum=0. totl=0. do 706 j=1,jj do 706 l=1,isp(j) do 706 i=ifp(j,l),ilp(j,l) totl=totl+oice(i,j)*scp2(i,j) 706 sum=sum+dp(i,j,k+nn)*scp2(i,j) call linout(sum/(area*onem),charac(k),index) 705 index=0 c --- add ice extend (%) to plot call linout(100.*totl/area,'I',1) c c --- diagnose mean sea surface height sum=0. sumice=0. do 704 j=1,jj do 704 l=1,isp(j) do 704 i=ifp(j,l),ilp(j,l) c --- compute sea surface height util1(i,j)=montg(i,j,1)+thref*pbavg(i,j,m) sumice=sumice+oice(i,j)*scp2(i,j) 704 sum=sum+util1(i,j)*scp2(i,j) write (lp,'(i9,'' mean sea srf.hgt. (mm):'',f9.2,f12.0)')nstep, . sum/(area*thref*onemm),sumice*1.e-6 c call findmx(ip,oflxa2o,idm,ii,jj,'oflxa2o') call findmx(maska,asst,iia,iia,jja,'psst') call findmx(maska,sss,iia,iia,jja,'osss') call findmx(maska,uosurf,iia,iia,jja,'uosurf') call findmx(maska,vosurf,iia,iia,jja,'vosurf') end if ! once a day c before = after call system_clock(after) c before = after call system_clock(after) user_time = cnuity_time+tsadvc_time+ . momtum_time+hybgen_time+barotp_time+thermf_time+mxlayr_time+ . real(after-before,4)/real(rate,4) total_time = total_time + real(after-before,4)/real(rate,4) write (lp,99009) user_time, ' sec for step ', nstep if (mod(nstep,5).eq.0) call flush(lp) c if (.not.diagno) go to 23 c c For averaging over nstep steps, subtract times measured in the last c step from their corresponding totals and divide by (nstep-1). (The c last step may include time used for diagnostics or other tasks.) c avg_time=(total_time-user_time)/(nstep-nstep0-1) c cnuity_avg_time=(cnuity_total_time-cnuity_time)/(nstep-nstep0-1) c tsadvc_avg_time=(tsadvc_total_time-tsadvc_time)/(nstep-nstep0-1) c momtum_avg_time=(momtum_total_time-momtum_time)/(nstep-nstep0-1) c barotp_avg_time=(barotp_total_time-barotp_time)/(nstep-nstep0-1) c thermf_avg_time=(thermf_total_time-thermf_time)/(nstep-nstep0-1) c enloan_avg_time=(enloan_total_time-enloan_time)/(nstep-nstep0-1) c mxlayr_avg_time=(mxlayr_total_time-mxlayr_time)/(nstep-nstep0-1) c hybgen_avg_time=(hybgen_total_time-hybgen_time)/(nstep-nstep0-1) c write (lp,99009) avg_time,' Avg Time at step ', nstep-1 c write (lp,99009) total_time - user_time, ' Tot Time' c write (lp,99009) cnuity_avg_time,' cnuity Avg Time at ', nstep-1 c write (lp,99009) tsadvc_avg_time,' tsadvc Avg Time at ', nstep-1 c write (lp,99009) momtum_avg_time,' momtum Avg Time at ', nstep-1 c write (lp,99009) barotp_avg_time,' barotp Avg Time at ', nstep-1 c write (lp,99009) thermf_avg_time,' thermf Avg Time at ', nstep-1 c write (lp,99009) enloan_avg_time,' enloan Avg Time at ', nstep-1 c write (lp,99009) mxlayr_avg_time,' mxlayr Avg Time at ', nstep-1 c write (lp,99009) hybgen_avg_time,' hybgen Avg Time at ', nstep-1 c write (lp,100) nstep,int((time+.001)/365.),mod(time+.001,365.) 100 format (' ocn time step',i9,4x,'y e a r',i6,4x,'d a y',f9.2) c c --- output to history file c call archiv(n,nn) c --- diagnose meridional overturning and heat flux c$OMP PARALLEL DO do 3 j=1,jj do 3 k=1,kk do 3 l=1,isp(j) do 3 i=ifp(j,l),ilp(j,l) 3 p(i,j,k+1)=p(i,j,k)+dp(i,j,k+mm) c$OMP END PARALLEL DO call overtn(mm) c write (lp,105) nstep 105 format (' step',i9,' -- archiving completed --') c c --- test for cyclic-in-j vs. noncyclic domain c --- (closed-basin coditions are indicated by a land barrier at j=jj) c jj1=jj-1 do i=1,ii1 if (ip(i,jj).gt.0) then jj1=jj end if end do c c --- output to line printer c ccc call prtmsk(ip,util1,util3,idm,ii1,jj1,0.,1./(thref*onecm), ccc . 'sea surface height (cm)') ccc call prtmsk(ip,dpmixl(1,1),util3,idm,ii1,jj1,0.,1./onem, ccc . 'mixed layer depth (m)') call prtmsk(ip,temp(1,1,k1n),util3,idm,ii1,jj1,0.,10., . 'mix.layer temp. (.1 deg)') ccc call prtmsk(ip,saln(1,1,k1n),util3,idm,ii1,jj1,35.,100., ccc . 'mx.lay. salin. (.01 mil)') call prtmsk(ip,oice,util3,idm,ii1,jj1,0.,100., . 'ice coverage (cm)') call prtmsk(maska,asst,util3,iia,iia,jja,0.,1., . 'asst ') do 77 j=1,jj1 do 77 l=1,isu(j) do 77 i=ifu(j,l),ilu(j,l) 77 util1(i,j)=u(i,j,k1n)+ubavg(i,j,n) ccc call prtmsk(iu,util1,util3,idm,ii1,jj1,0.,1000., ccc . 'u vel. (mm/s), layer 1') do 78 i=1,ii1 do 78 l=1,jsv(i) do 78 j=jfv(i,l),jlv(i,l) 78 util2(i,j)=v(i,j,k1n)+vbavg(i,j,n) ccc call prtmsk(iv,util2,util3,idm,ii1,jj1,0.,1000., ccc . 'v vel. (mm/s), layer 1') ccc call prtmsk(iu,ubavg(1,1,n),util3,idm,ii1,jj1,0.,1000., ccc . 'barotrop. u vel. (mm/s)') ccc call prtmsk(iv,vbavg(1,1,n),util3,idm,ii1,jj1,0.,1000., ccc . 'barotrop. v vel. (mm/s)') 23 continue c --- accumulate fields for agcm c$OMP PARALLEL DO do 201 j=1,jj do 201 l=1,isp(j) do 201 i=ifp(j,l),ilp(j,l) osst(i,j)=osst(i,j)+temp(i,j,k1n)*baclin/(3600.*real(nhr)) osss(i,j)=osss(i,j)+saln(i,j,k1n)*baclin/(3600.*real(nhr)) osiav(i,j)=osiav(i,j)+odmsi(i,j)*baclin*dtsrc/(3600.*real(nhr)) !kg/m2=>kg*.5*hr/m2 omlhc(i,j)=spcifh*max(dp(i,j,k1n)/onem,thkmin)/thref ! J/(m2*C) oogeoza(i,j)=(montg(i,j,1)+thref*pbavg(i,j,m))*g/(thref*onem) ! m^2/s^2 201 continue c$OMP END PARALLEL DO c nsaveo=nsaveo+1 15 continue print *,' chk ogcm saved over hr=',nsaveo*baclin/3600 nsaveo=0 c c before = after c call system_clock(after) c user_time = real(after-before,4)/real(rate,4) c write (lp,99009) user_time, ' Time 2 just before STOP' c open (unit=no,file='run.status',status='unknown') c write (no,*) 'success' c close (unit=no) c do 86 i=1,ii do 86 j=1,jj usf(i,j)=0. vsf(i,j)=0. 86 continue do 87 j=1,jj do 87 l=1,isu(j) do 87 i=ifu(j,l),ilu(j,l) 87 usf(i,j)=u(i,j,k1n) do 88 i=1,ii do 88 l=1,jsv(i) do 88 j=jfv(i,l),jlv(i,l) 88 vsf(i,j)=v(i,j,k1n) c call ssto2a(osst,asst) call ssto2a(osss,sss) css call iceo2a(omlhc,mlhc) call ssto2a(oogeoza,ogeoza) call ssto2a(osiav,utila) !kg/m*m per agcm time step call veco2a(usf,vsf,uosurf,vosurf) call findmx(ip,osiav,idm,ii,jj,'dmsi') c$OMP PARALLEL DO PRIVATE(tf) do 204 ia=1,iia do 204 ja=1,jja if (focean(ia,ja).gt.0.) then gtemp(1,1,ia,ja)=asst(ia,ja) tf=tfrez(sss(ia,ja),0.) dmsi(1,ia,ja)=utila(ia,ja) !kg/m2 per agcm step dhsi(1,ia,ja)=utila(ia,ja) !J/m2 per agcm step . *(tf*shi-lhm*(1-0.001*fsss*sss(ia,ja))) dssi(1,ia,ja)=1.d-3*dmsi(1,ia,ja)*sss(ia,ja)*fsss !kg/m2 per agcm step c --- evenly distribute new ice over open water and sea ice if (aice(ia,ja).gt.1.e-3) then dhsi(2,ia,ja)=dhsi(1,ia,ja) dmsi(2,ia,ja)=dmsi(1,ia,ja) dssi(2,ia,ja)=dssi(1,ia,ja) endif endif 204 continue c$OMP END PARALLEL DO call system_clock(afogcm) write(*,'(a,2f10.1)') 'chk agcm/ogcm date at end of ogcm' . ,(itime+1.)/nday,time c return end c c> Revision history: c> c> May 1997 - removed statement "theta(1)=-thbase" after loop 14 c> June 1997 - added loop 60 to fix bug in vertical summation of -diaflx- c> Mar. 2000 - conversion to SI units c> June 2000 - added timing logic c> Aug. 2000 - added code for changing number of OpenMP threads c> Apr. 2001 - eliminated stmt_funcs.h c> June 2001 - corrected sign error in diaflx c> July 2001 - replaced archiving statements by 'call archiv' c> Oct 2004 - map ice mass to agcm, and then calculate E
7f2e36c7c7fa3e57f14efbc16227cb4ebcfbf3da
7e1b3cc24688270b39c0e2f21e0434ea9c80382f
/altewelt.sce
c990739a967fb454d65e25fdc4ef065618d79129
[ "MIT" ]
permissive
Vladimir-Trufanov/RobotWinCE
7d5e47fba4c268204dfe9c5537d0764198de972e
39756f68a6d8de52c19e80e6def4ee3a71cefc75
refs/heads/main
2023-04-06T13:06:46.586022
2021-04-08T17:15:19
2021-04-08T17:15:19
343,203,217
0
0
null
null
null
null
UTF-8
Scilab
false
false
85,637
sce
altewelt.sce
:raum1 wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp figur.bmp hinter.bmp hinter.bmp aetz.bmp wand2.bmp schl6.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp speicher.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp robot1.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp schl7.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp tuer3.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp tuer6.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp tuer3.bmp wand1.bmp wand1.bmp :raum2 wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp speicher.bmp hinter.bmp code2.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp robot8.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp robot7.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp robot6.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp tuer3.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp tuer1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp :raum3 wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp tuer1.bmp hinter.bmp hinter.bmp hinter.bmp tuer8.bmp hinter.bmp hinter.bmp hinter.bmp tuer6.bmp hinter.bmp hinter.bmp hinter.bmp tuer2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp tuer3.bmp wand2.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand2.bmp tuer9.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp tuer4.bmp hinter.bmp hinter.bmp tuer7.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp leben.bmp punkt5.bmp punkt2.bmp punkt1.bmp wand1.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp leben.bmp punkt5.bmp punkt2.bmp punkt1.bmp wand1.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand2.bmp wand2.bmp wand2.bmp punkt1.bmp wand1.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp robot1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp tuer3.bmp hinter.bmp hinter.bmp wand2.bmp punkt1.bmp wand1.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp wand2.bmp punkt1.bmp wand1.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp tuer7.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp :raum4 wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp punkt1.bmp punkt5.bmp punkt4.bmp punkt3.bmp punkt2.bmp leben.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp punkt1.bmp punkt5.bmp punkt4.bmp punkt2.bmp punkt2.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp punkt1.bmp punkt5.bmp punkt4.bmp punkt3.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp punkt1.bmp punkt5.bmp punkt4.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp robot4.bmp hinter.bmp hinter.bmp hinter.bmp punkt1.bmp punkt5.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp punkt1.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp robot3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp punkt1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp robot5.bmp hinter.bmp hinter.bmp punkt1.bmp punkt5.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp punkt1.bmp punkt5.bmp punkt4.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp punkt1.bmp punkt5.bmp punkt4.bmp punkt3.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp punkt1.bmp punkt5.bmp punkt4.bmp punkt2.bmp punkt2.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp robot2.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp punkt1.bmp punkt5.bmp punkt4.bmp punkt3.bmp punkt2.bmp leben.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp :raum5 wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp diamant3.bmp code1.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp speicher.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp robot7.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp robot9.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp robot1.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp robot8.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp robot6.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp wand1.bmp wand1.bmp :raum6 wand1.bmp wand1.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp tuer6.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp tuer3.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp robot2.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp speicher.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp aetz.bmp aetz.bmp aetz.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp robot3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp :raum7 wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp tuer1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp schl9.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp tuer8.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp schl4.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp wand3.bmp hinter.bmp hinter.bmp robot5.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand2.bmp wand2.bmp wand2.bmp tuer9.bmp wand2.bmp wand2.bmp hinter.bmp hinter.bmp wand2.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp wand2.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp wand2.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp wand2.bmp wand3.bmp hinter.bmp hinter.bmp robot4.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp aetz.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp wand2.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp aetz.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp schl3.bmp wand2.bmp hinter.bmp hinter.bmp wand2.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp aetz.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp wand1.bmp wand1.bmp :raum8 wand1.bmp wand1.bmp tuer7.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp aetz.bmp wand1.bmp tuer8.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp aetz.bmp wand1.bmp wand1.bmp wand2.bmp wand2.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp aetz.bmp wand1.bmp wand1.bmp leben.bmp leben.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp punkt2.bmp punkt2.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp aetz.bmp aetz.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp aetz.bmp aetz.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp punkt1.bmp punkt1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp robot9.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp punkt2.bmp punkt1.bmp hinter.bmp wand1.bmp punkt5.bmp punkt5.bmp punkt5.bmp wand1.bmp hinter.bmp hinter.bmp wand1.bmp punkt5.bmp punkt5.bmp punkt5.bmp wand1.bmp hinter.bmp punkt1.bmp punkt2.bmp wand1.bmp wand1.bmp speicher.bmp punkt2.bmp punkt3.bmp wand1.bmp punkt1.bmp punkt1.bmp punkt1.bmp wand1.bmp hinter.bmp hinter.bmp wand1.bmp punkt1.bmp punkt1.bmp punkt1.bmp wand1.bmp punkt3.bmp punkt2.bmp speicher.bmp wand1.bmp wand1.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand1.bmp wand1.bmp punkt2.bmp punkt3.bmp leben.bmp wand2.bmp leben.bmp hinter.bmp punkt4.bmp wand1.bmp hinter.bmp hinter.bmp wand1.bmp punkt4.bmp hinter.bmp leben.bmp wand2.bmp leben.bmp punkt3.bmp punkt2.bmp wand1.bmp wand1.bmp hinter.bmp punkt5.bmp punkt3.bmp wand2.bmp hinter.bmp punkt1.bmp punkt4.bmp wand1.bmp hinter.bmp hinter.bmp wand1.bmp punkt4.bmp punkt1.bmp hinter.bmp wand2.bmp punkt3.bmp punkt5.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp punkt2.bmp wand2.bmp punkt5.bmp punkt5.bmp punkt4.bmp wand1.bmp hinter.bmp hinter.bmp wand1.bmp punkt4.bmp punkt5.bmp punkt5.bmp wand2.bmp punkt2.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp wand1.bmp wand1.bmp :raum9 wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp punkt5.bmp punkt5.bmp punkt5.bmp punkt5.bmp punkt5.bmp punkt5.bmp punkt5.bmp punkt5.bmp punkt5.bmp punkt5.bmp punkt5.bmp punkt5.bmp punkt5.bmp punkt5.bmp punkt5.bmp punkt5.bmp punkt5.bmp punkt5.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp robot6.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp robot7.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp code3.bmp hinter.bmp speicher.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp robot8.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp robot9.bmp hinter.bmp wand1.bmp wand1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp wand1.bmp wand1.bmp :raum10 wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp punkt2.bmp punkt2.bmp punkt2.bmp punkt2.bmp wand3.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp robot4.bmp hinter.bmp wand1.bmp hinter.bmp robot2.bmp wand3.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp robot5.bmp hinter.bmp wand1.bmp hinter.bmp robot3.bmp wand3.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp punkt2.bmp punkt2.bmp punkt2.bmp punkt2.bmp wand3.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp :raum11 wand1.bmp wand1.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp schl8.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp tuer8.bmp wand1.bmp kill.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp robot7.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand2.bmp tuer7.bmp wand2.bmp wand2.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp robot1.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp robot8.bmp hinter.bmp hinter.bmp hinter.bmp robot9.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp robot3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp robot4.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp schl1.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp tuer5.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp :raum12 wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp tuer8.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp tuer1.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp wand2.bmp tuer4.bmp wand2.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp robot5.bmp hinter.bmp hinter.bmp hinter.bmp robot6.bmp hinter.bmp hinter.bmp hinter.bmp robot7.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp diamant2.bmp hinter.bmp speicher.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp schl2.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp :raum13 wand1.bmp wand1.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp robot1.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp robot3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp robot4.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand1.bmp wand1.bmp punkt3.bmp punkt3.bmp punkt3.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp punkt3.bmp punkt3.bmp punkt3.bmp wand1.bmp wand1.bmp punkt3.bmp punkt3.bmp punkt3.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp robot2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp punkt3.bmp punkt3.bmp punkt3.bmp wand1.bmp wand1.bmp punkt3.bmp punkt3.bmp punkt3.bmp wand3.bmp punkt5.bmp punkt5.bmp punkt5.bmp punkt5.bmp punkt5.bmp punkt5.bmp punkt5.bmp punkt5.bmp punkt5.bmp punkt5.bmp wand3.bmp punkt3.bmp punkt3.bmp punkt3.bmp wand1.bmp wand1.bmp punkt3.bmp punkt3.bmp punkt3.bmp punkt4.bmp punkt4.bmp punkt4.bmp punkt4.bmp punkt4.bmp punkt4.bmp punkt4.bmp punkt4.bmp punkt4.bmp punkt4.bmp punkt4.bmp punkt4.bmp punkt3.bmp punkt3.bmp punkt3.bmp wand1.bmp wand1.bmp punkt2.bmp punkt2.bmp punkt2.bmp punkt2.bmp punkt2.bmp punkt2.bmp punkt2.bmp punkt2.bmp punkt2.bmp punkt2.bmp punkt2.bmp punkt2.bmp punkt2.bmp punkt2.bmp punkt2.bmp punkt2.bmp punkt2.bmp punkt2.bmp wand1.bmp wand1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp :raum14 wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp diamant1.bmp speicher.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp robot5.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp robot6.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp punkt2.bmp punkt2.bmp punkt3.bmp punkt3.bmp punkt4.bmp punkt4.bmp punkt5.bmp punkt5.bmp punkt4.bmp punkt4.bmp punkt3.bmp punkt3.bmp punkt2.bmp punkt2.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp leben.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp leben.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp wand1.bmp wand1.bmp :raum15 wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp speicher.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp robot8.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp robot9.bmp hinter.bmp hinter.bmp hinter.bmp robot1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp robot3.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp wand3.bmp hinter.bmp hinter.bmp robot2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp schl5.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp leben.bmp aetz.bmp punkt4.bmp punkt3.bmp punkt2.bmp punkt2.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp punkt5.bmp punkt5.bmp punkt5.bmp punkt5.bmp punkt5.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp :raum16 wand1.bmp wand1.bmp tuer5.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp robot4.bmp wand2.bmp punkt1.bmp punkt1.bmp speicher.bmp punkt1.bmp wand2.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp punkt3.bmp punkt3.bmp punkt3.bmp punkt3.bmp wand2.bmp punkt2.bmp punkt2.bmp punkt2.bmp punkt2.bmp punkt2.bmp punkt2.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp punkt4.bmp punkt4.bmp punkt4.bmp punkt4.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp tuer6.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp tuer9.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp tuer4.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp tuer6.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp tuer9.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp tuer4.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp punkt4.bmp punkt4.bmp punkt4.bmp punkt4.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp punkt3.bmp punkt3.bmp punkt3.bmp punkt3.bmp wand2.bmp punkt2.bmp punkt2.bmp punkt2.bmp punkt2.bmp punkt2.bmp punkt2.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp punkt1.bmp punkt1.bmp speicher.bmp punkt1.bmp wand2.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp :raum17 wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp punkt5.bmp punkt5.bmp punkt5.bmp punkt5.bmp wand2.bmp punkt4.bmp punkt4.bmp punkt4.bmp punkt4.bmp punkt4.bmp punkt4.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp punkt2.bmp punkt2.bmp punkt2.bmp punkt2.bmp wand2.bmp punkt3.bmp punkt3.bmp punkt3.bmp punkt3.bmp punkt3.bmp punkt3.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp tuer4.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp tuer2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp tuer7.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp tuer1.bmp tuer4.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp tuer2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp tuer7.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp tuer1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp punkt2.bmp punkt2.bmp punkt2.bmp punkt2.bmp wand2.bmp punkt3.bmp punkt3.bmp punkt3.bmp punkt3.bmp punkt3.bmp punkt3.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp robot5.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp punkt5.bmp punkt5.bmp punkt5.bmp punkt5.bmp wand2.bmp punkt4.bmp punkt4.bmp punkt4.bmp punkt4.bmp punkt4.bmp punkt4.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp :raum18 wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp punkt3.bmp punkt5.bmp punkt5.bmp punkt5.bmp wand2.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp punkt4.bmp punkt3.bmp punkt1.bmp punkt1.bmp wand2.bmp punkt2.bmp punkt2.bmp punkt2.bmp punkt2.bmp punkt2.bmp punkt2.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp punkt2.bmp punkt2.bmp punkt3.bmp punkt3.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp tuer1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp tuer3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp tuer6.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp tuer1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp tuer3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp tuer6.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp punkt2.bmp punkt2.bmp punkt3.bmp punkt3.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp punkt4.bmp punkt3.bmp punkt1.bmp punkt1.bmp wand2.bmp punkt2.bmp punkt2.bmp punkt2.bmp punkt2.bmp punkt2.bmp punkt2.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp robot6.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp punkt3.bmp punkt5.bmp punkt5.bmp punkt5.bmp wand2.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp punkt1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp :raum19 wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp robot3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp robot4.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp robot9.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp robot6.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp robot7.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp kill.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp kill.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp wand2.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp robot7.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp robot8.bmp hinter.bmp hinter.bmp wand2.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp robot1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp robot2.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp robot5.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp :raum20 wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp robot9.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand3.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp wand1.bmp wand1.bmp konig.bmp hinter.bmp wand1.bmp wand1.bmp wand3.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand3.bmp hinter.bmp robot1.bmp wand3.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand3.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp robot8.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand3.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp hinter.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp wand1.bmp
34bcf8eabab8ef8bdaec378a55386b0f9fdc8b66
726961a3412b6d2fda7c781172773be5e27ac97a
/jflap-grades/tests/q04b.tst
69c4fb3b4bf72973fa23081ef14e1089b4f0bf2c
[]
no_license
ailton07/jflap-grades-19-2
0546deb482e7f8e003591351191fa649d62fd405
ff58118d31aa30a0f56cae8e5f0186d44c1b72a8
refs/heads/master
2020-09-16T12:49:31.560841
2019-11-25T01:03:19
2019-11-25T01:03:19
223,774,968
0
0
null
null
null
null
UTF-8
Scilab
false
false
85
tst
q04b.tst
0 0.20 ababababab 1 aababbab 1 abbabbabaa 1 ab 1 abababbab 0 abb 0 aabaa 0 bbababb 0
7a15e3db4a6c07efbeba905ee1c407150f46c571
449d555969bfd7befe906877abab098c6e63a0e8
/389/CH9/EX9.11/Example9_11.sce
486a3afb7497ee92c26d8d6ce1e1a8a80c45a803
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
5,138
sce
Example9_11.sce
clear; clc; // Illustration 9.11 // Page: 423 printf('Illustration 9.11 - Page: 423\n\n'); // solution //****Data****// // a:ethanol b:water zF = 0.3; xa = 0.3;// [mole fraction of ethanol] Temp = 78.2;// [OC] Ao = 0.0462;// [Area of perforations,square m] t = 0.450;// [m] //******// Ma = 46.05;// [kg/kmol] Mb = 18.02;// [kg/kmol] xb = 1-xa;// [mole fraction of water] ma = 0.3*Ma/((0.3*Ma)+(xb*Mb));// [mass fraction of ethanol] mb = 1-ma;// [mass fraction of water] // Feed: F1 = 910;// [kg/h] Xa = F1*ma/Ma;// [moles of ethanol] Xb = F1*mb/Mb;// [moles of water] F = Xa+Xb;// [Total moles] // Distillate: xD = 0.80;// [mole fraction of ethanol] // If essentially all the ethanol is removed from the residue: D = Xa/xD;// [kmol/h] MavD = (xD*Ma)+((1-xD)*Mb);// [kg/kmol] D1 = D*MavD;// [kg/h] Density_G = (MavD/22.41)*(273/(273+Temp));// [kg/cubic meter] Density_L = 744.9;// [kg/cubic meter] sigma = 0.021;// [N/m] // From Table 6.2,Pg 169: alpha = (0.0744*t)+0.01173; beeta = (0.0304*t)+0.015; At = %pi*(0.760^2)/4;// [Tower cross sectional Area, square m] WByT = 530/760;// [Table 6.1, Pg 162] Ad = 0.0808*At;// [Downspout area,square m] Aa = At-(2*Ad);// [Active area,square m] // abcissa = (L/G)*(density_G/Density_L)^0.5 // Assume: abcissa = 0.1; // From Eqn.6.30: Cf = (alpha*log10(1/abcissa)+beeta)*(sigma/0.020)^0.2; // From Eqn. 6.29: Vf = Cf*((Density_L-Density_G)/Density_G)^(1/2);// [m/s] An = At-Ad;// [square m] R = 3;// [Reflux Ratio] G = D*(R+1); G1 = (G*22.41/3600)*((273+Temp)/273);// [cubic meter/s] V = G1/An;// [Vapour velocity,m/s] percent = (V/Vf)*100; // Vapour velocity is 58 percent of flooding velocity (amply safe) L = R*D;// [kmol/h] L1 = L*MavD;// [kg/h] abcissa = (L1/(G1*3600*Density_G))*(Density_G/Density_L)^0.5; // Since the value of abcissa is less than0.1, the calculaed value of Cf is correct. // Since the feed is at the buubble point. q = 1; // From Eqn. 9.126: L_bar = L+(q*F);// [kmol/h] // From Eqn. 9.127: G_bar = G+F*(q-1);// [kmol/h] // The enthalpy of saturated steam,referred to 0 OC,69 kN/square m: HGNpPlus1 = 2699;// [kN m/kg] // This will be the enthalpy as it enters the tower if expanded adiabatically to the tower pressure // The enthalpy of steam at 1 std. atm: HGsat = 2676;// [kN m/kg] lambda = 2257;// [kN m/kg] // From Eqn. 9.140: deff('[y] = f63(GNpPlus1_bar)','y = G_bar-(GNpPlus1_bar*(1+((HGNpPlus1-HGsat)*Mb/(lambda*Mb))))'); GNpPlus1_bar = fsolve(7,f63); // From Eqn. 9.141: LNp_bar = L_bar-(G_bar-GNpPlus1_bar); // Tray Efficiencies: // Consider the situation: x = 0.5; y_star = 0.962; Temp = 79.8;// [OC] // This is in the enriching section. Density_L = 791;// [kg/cubic meter] Density_G = 1.253;// [kg/cubic meter] // From equilibrium data: m = 0.42; A = L/(m*G); // From chapter 2: ScG = 0.930; Dl = 2.065*10^(-9);// [square m/s] // For L = 38.73 kmol/h q = 4.36*10^(-4);// [cubic meter/s] // For G = 51.64 kmol/h Va = 1.046;// [m/s] // From tray dimensions: z = 0.647;// [m] Z = 0.542;// [m] hW = 0.06;// [m] // From Eqn. 6.61: NtG = (0.776+(4.57*hW)-(0.238*Va*Density_G^0.5)+(104.6*q/Z))/(ScG^0.5); // From Eqn. 6.38 hL = 6.10*10^(-3)+(0.725*hW)-(0.238*hW*Va*(Density_G)^0.5)+(1.225*q/z);// [m] // From Eqn. 6.64: thetha_L = hL*z*Z/q;// [s] // From Eqn. 6.62: NtL = 40000*(Dl^0.5)*((0.213*Va*Density_G^0.5)+0.15)*thetha_L; // From Eqn. 6.52: NtoG = 1/((1/NtG)+(1/(A*NtL))); // From Eqn. 6.51: EoG = 1-exp(-NtoG); // From Eqn. 6.63: DE = ((3.93*10^(-3))+(0.0171*Va)+(3.67*q/Z)+(0.1800*hW))^2; // From Eqn. 6.59: Pe = Z^2/(DE*thetha_L); // From Eqn. 6.58: eta = (Pe/2)*((1+(4*m*G1*EoG/(L1*Pe)))^0.5-1); // From Eqn. 6.57: EMG = EoG*(((1-exp(-(eta+Pe)))/((eta+Pe)*(1+(eta+Pe)/eta)))+((exp(eta)-1)/(eta*(1+(eta/(eta+Pe)))))); // Entrainment is neglible: // Similarly for other x // Value = [x Entrainment] Value = [0 0.48;0.1 .543;0.3 0.74;0.5 EMG;0.7 0.72]; // Tray Calculation: op_intercept = xD/(R+1); // From Fig. 9.48: // The exhausting section operating line, on this scale plot, for all practical purposes passes through the origin. // The broken curve is located so that, at each concentration, vertical distances corresponding to lines BC and AC are in the ratio of EMG. // This curve is used instead of equilibrium trays to locate the ideal trays. // The feed tray is thirteenth. x14 = 0.0150; alpha = 8.95; EMG = 0.48; A_bar = L_bar/(alpha*G_bar); // From Eqn. 8.16: Eo = log(1+(EMG*((1/A_bar)-1)))/log(1/A_bar); // The 6 real trays corresponds to: NRp = 6*Eo; xW = 0.015/((exp(NRp*log(1/A_bar))-A_bar)/(1-A_bar));// [mole fraction ethanol] // This corresponds to ethanol loss of 0.5 kg/day. printf("The Reflux ratio of %d will cause the ethanol loss of 0.5 kg/day\n",R); printf("Larger reflux ratios would reduce this, but the cost of additional steam will probaby make them not worthwile.\n"); printf("Smaller values of R, with corresponding reduced steam cost and larger ethanol loss, should be considered, but care must be taken to ensure vapour velocities above the weeping velocities.");
2f9ad7d839519c3fe1e15c5082d6557848e6e8a9
449d555969bfd7befe906877abab098c6e63a0e8
/2561/CH14/EX14.5/Ex14_5.sce
a4c7213cc1a50d79043fada535826db4836b45ff
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
405
sce
Ex14_5.sce
//Ex14_5 clc n=12 disp("n= "+string(n))// Number of bits VFS=50 disp("VFS= "+string(VFS)+" volts") // Maximum value of analog input voltage S=VFS/(2^n) disp("S=VFS/(2^n)= "+string(S)+" volts") // Maximum quantization error Resolution=(100/2^(n))//Formulae disp("Resolution=(100/2^(n))= -"+string(Resolution)+" percent, +"+string(Resolution)+" percent")// Since Resolution is (+)as well as (-)
9724955b2f71a10625c87ae9718c43c4e8b575cd
931df7de6dffa2b03ac9771d79e06d88c24ab4ff
/Slide&Bounce Tracking.sce
4506b8cb3e1df270bc1273c1655c4c116048cf8a
[]
no_license
MBHuman/Scenarios
be1a722825b3b960014b07cda2f12fa4f75c7fc8
1db6bfdec8cc42164ca9ff57dd9d3c82cfaf2137
refs/heads/master
2023-01-14T02:10:25.103083
2020-11-21T16:47:14
2020-11-21T16:47:14
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
73,265
sce
Slide&Bounce Tracking.sce
Name=Slide&Bounce Tracking PlayerCharacters=Ascended Tracking BotCharacters=ROT.rot IsChallenge=true Timelimit=60.0 PlayerProfile=Ascended Tracking AddedBots=ROT.rot;ROT.rot PlayerMaxLives=0 BotMaxLives=10;10 PlayerTeam=1 BotTeams=2;2 MapName=1A.map MapScale=3.0 BlockProjectilePredictors=true BlockCheats=true InvinciblePlayer=false InvincibleBots=false Timescale=1.0 BlockHealthbars=false TimeRefilledByKill=0.0 ScoreToWin=1000.0 ScorePerDamage=1.0 ScorePerKill=10.0 ScorePerMidairDirect=0.0 ScorePerAnyDirect=0.0 ScorePerTime=10.0 ScoreLossPerDamageTaken=0.0 ScoreLossPerDeath=0.0 ScoreLossPerMidairDirected=0.0 ScoreLossPerAnyDirected=0.0 ScoreMultAccuracy=false ScoreMultDamageEfficiency=false ScoreMultKillEfficiency=false GameTag=Fortnite, Valorant,Apex,Hyper Scape,OW,Tracking, Reflex WeaponHeroTag=Tracking DifficultyTag=2 AuthorsTag=Lac BlockHitMarkers=false BlockHitSounds=false BlockMissSounds=true BlockFCT=true Description=EZ GameVersion=2.0.1.2 ScorePerDistance=0.0 MBSEnable=false MBSTime1=0.25 MBSTime2=0.5 MBSTime3=0.75 MBSTime1Mult=1.0 MBSTime2Mult=2.0 MBSTime3Mult=3.0 MBSFBInstead=false MBSRequireEnemyAlive=false LockFOVRange=true LockedFOVMin=60.0 LockedFOVMax=120.0 LockedFOVScale=Clamped Horizontal [Aim Profile] Name=At Feet MinReactionTime=0.3 MaxReactionTime=0.4 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=15.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=40.0 ShootFOV=15.0 VerticalAimOffset=-200.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 AimingStyle=Original ScanSpeedMultiplier=1.0 MaxSeekPitch=30.0 MaxSeekYaw=30.0 AimingSpeed=5.0 MinShootDelay=0.3 MaxShootDelay=0.6 [Aim Profile] Name=Low Skill At Feet MinReactionTime=0.35 MaxReactionTime=0.45 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=20.0 TrackSpeed=3.0 TrackError=5.0 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=60.0 ShootFOV=25.0 VerticalAimOffset=-200.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 AimingStyle=Original ScanSpeedMultiplier=1.0 MaxSeekPitch=30.0 MaxSeekYaw=30.0 AimingSpeed=5.0 MinShootDelay=0.3 MaxShootDelay=0.6 [Aim Profile] Name=Low Skill MinReactionTime=0.35 MaxReactionTime=0.45 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=20.0 TrackSpeed=3.0 TrackError=5.0 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=60.0 ShootFOV=25.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 AimingStyle=Original ScanSpeedMultiplier=1.0 MaxSeekPitch=30.0 MaxSeekYaw=30.0 AimingSpeed=5.0 MinShootDelay=0.3 MaxShootDelay=0.6 [Aim Profile] Name=Default MinReactionTime=0.3 MaxReactionTime=0.4 MinSelfMovementCorrectionTime=0.001 MaxSelfMovementCorrectionTime=0.05 FlickFOV=30.0 FlickSpeed=1.5 FlickError=15.0 TrackSpeed=3.5 TrackError=3.5 MaxTurnAngleFromPadCenter=75.0 MinRecenterTime=0.3 MaxRecenterTime=0.5 OptimalAimFOV=30.0 OuterAimPenalty=1.0 MaxError=40.0 ShootFOV=15.0 VerticalAimOffset=0.0 MaxTolerableSpread=5.0 MinTolerableSpread=1.0 TolerableSpreadDist=2000.0 MaxSpreadDistFactor=2.0 AimingStyle=Original ScanSpeedMultiplier=1.0 MaxSeekPitch=30.0 MaxSeekYaw=30.0 AimingSpeed=5.0 MinShootDelay=0.3 MaxShootDelay=0.6 [Bot Profile] Name=Long Strafe Bot DodgeProfileNames=Long Strafes DodgeProfileWeights=0.1 DodgeProfileMaxChangeTime=1.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;2.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=Long Strafer SeeThroughWalls=false NoDodging=false NoAiming=true AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Bot Profile] Name=Long02 DodgeProfileNames=Long Strafes DodgeProfileWeights=0.1 DodgeProfileMaxChangeTime=1.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;2.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=Long Strafer02 SeeThroughWalls=false NoDodging=false NoAiming=true AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Bot Profile] Name=Long03 DodgeProfileNames=Long Strafes DodgeProfileWeights=0.1 DodgeProfileMaxChangeTime=1.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;2.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=Long Strafer03 SeeThroughWalls=false NoDodging=false NoAiming=true AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Bot Profile] Name=Long04 DodgeProfileNames=Long Strafes DodgeProfileWeights=0.1 DodgeProfileMaxChangeTime=1.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;2.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=Long Strafer04 SeeThroughWalls=false NoDodging=false NoAiming=true AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Bot Profile] Name=Long05 DodgeProfileNames=Long Strafes DodgeProfileWeights=0.1 DodgeProfileMaxChangeTime=1.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;2.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=Long Strafer05 SeeThroughWalls=false NoDodging=false NoAiming=true AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Bot Profile] Name=Long06 DodgeProfileNames=Long Strafes DodgeProfileWeights=0.1 DodgeProfileMaxChangeTime=1.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;2.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=Long Strafer06 SeeThroughWalls=false NoDodging=false NoAiming=true AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Bot Profile] Name=Long07 DodgeProfileNames=Long Strafes DodgeProfileWeights=0.1 DodgeProfileMaxChangeTime=1.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;2.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=Long Strafer07 SeeThroughWalls=false NoDodging=false NoAiming=true AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Bot Profile] Name=Long08 DodgeProfileNames=Long Strafes DodgeProfileWeights=0.1 DodgeProfileMaxChangeTime=1.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;2.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=Long Strafer08 SeeThroughWalls=false NoDodging=false NoAiming=true AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Bot Profile] Name=Long09 DodgeProfileNames=Long Strafes DodgeProfileWeights=0.1 DodgeProfileMaxChangeTime=1.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;2.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=Long Strafer09 SeeThroughWalls=false NoDodging=false NoAiming=true AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Bot Profile] Name=Long10 DodgeProfileNames=Long Strafes DodgeProfileWeights=0.1 DodgeProfileMaxChangeTime=1.0 DodgeProfileMinChangeTime=1.0 WeaponProfileWeights=1.0;1.0;2.0;1.0;1.0;1.0;1.0;1.0 AimingProfileNames=At Feet;Low Skill At Feet;Low Skill;Default;Default;Default;Default;Default WeaponSwitchTime=3.0 UseWeapons=true CharacterProfile=Long Strafer10 SeeThroughWalls=false NoDodging=false NoAiming=true AbilityUseTimer=0.1 UseAbilityFrequency=1.0 UseAbilityFreqMinTime=0.3 UseAbilityFreqMaxTime=0.6 ShowLaser=false LaserRGB=X=1.000 Y=0.300 Z=0.000 LaserAlpha=1.0 [Bot Rotation Profile] Name=ROT ProfileNames=Long Strafe Bot;Long02;Long03;Long04;Long05;Long06;Long07;Long08;Long09;Long10 ProfileWeights=1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0;1.0 Randomized=false [Character Profile] Name=Ascended Tracking MaxHealth=100.0 WeaponProfileNames=Hands;;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=5.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=500.000 HeadshotOnly=false DamageKnockbackFactor=4.0 MovementType=Base MaxSpeed=3000.0 MaxCrouchSpeed=500.0 Acceleration=0.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=0.0 JumpVelocity=3000.0 Gravity=7.5 AirControl=0.25 CanCrouch=false CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cuboid MainBBHeight=270.0 MainBBRadius=60.0 MainBBHasHead=true MainBBHeadRadius=30.0 MainBBHeadOffset=0.0 MainBBHide=true ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.0 ProjBBHasHead=false ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=0.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.5 AllowBufferedJumps=true BounceOffWalls=false LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=0.0 VerticalSpawnOffset=-100.0 TerminalVelocity=0.0 CharacterModel=Endo CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Character Profile] Name=Long Strafer MaxHealth=35.0 WeaponProfileNames=BB 4;;;;;;; MinRespawnDelay=0.6 MaxRespawnDelay=0.6 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=80.000 HeadshotOnly=false DamageKnockbackFactor=4.0 MovementType=Base MaxSpeed=2250.0 MaxCrouchSpeed=500.0 Acceleration=12000.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=5.0 JumpVelocity=3850.0 Gravity=5.0 AirControl=0.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cuboid MainBBHeight=270.0 MainBBRadius=60.0 MainBBHasHead=true MainBBHeadRadius=30.0 MainBBHeadOffset=0.0 MainBBHide=true ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.0 ProjBBHasHead=false ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=1.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=true LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=Endo CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Character Profile] Name=Long Strafer02 MaxHealth=35.0 WeaponProfileNames=BB 4;;;;;;; MinRespawnDelay=0.6 MaxRespawnDelay=0.6 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=80.000 HeadshotOnly=false DamageKnockbackFactor=4.0 MovementType=Base MaxSpeed=2350.0 MaxCrouchSpeed=500.0 Acceleration=12000.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=5.0 JumpVelocity=3850.0 Gravity=6.0 AirControl=0.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cuboid MainBBHeight=270.0 MainBBRadius=60.0 MainBBHasHead=true MainBBHeadRadius=30.0 MainBBHeadOffset=0.0 MainBBHide=true ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.0 ProjBBHasHead=false ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=1.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=true LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=Endo CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Character Profile] Name=Long Strafer03 MaxHealth=35.0 WeaponProfileNames=BB 4;;;;;;; MinRespawnDelay=0.6 MaxRespawnDelay=0.6 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=80.000 HeadshotOnly=false DamageKnockbackFactor=4.0 MovementType=Base MaxSpeed=2450.0 MaxCrouchSpeed=500.0 Acceleration=12000.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=5.0 JumpVelocity=3850.0 Gravity=7.0 AirControl=0.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cuboid MainBBHeight=270.0 MainBBRadius=60.0 MainBBHasHead=true MainBBHeadRadius=30.0 MainBBHeadOffset=0.0 MainBBHide=true ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.0 ProjBBHasHead=false ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=1.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=true LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=Endo CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Character Profile] Name=Long Strafer04 MaxHealth=35.0 WeaponProfileNames=BB 4;;;;;;; MinRespawnDelay=0.6 MaxRespawnDelay=0.6 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=80.000 HeadshotOnly=false DamageKnockbackFactor=4.0 MovementType=Base MaxSpeed=2550.0 MaxCrouchSpeed=500.0 Acceleration=12000.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=5.0 JumpVelocity=3850.0 Gravity=8.0 AirControl=0.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cuboid MainBBHeight=270.0 MainBBRadius=60.0 MainBBHasHead=true MainBBHeadRadius=30.0 MainBBHeadOffset=0.0 MainBBHide=true ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.0 ProjBBHasHead=false ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=1.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=true LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=Endo CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Character Profile] Name=Long Strafer05 MaxHealth=35.0 WeaponProfileNames=BB 4;;;;;;; MinRespawnDelay=0.8 MaxRespawnDelay=0.8 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=80.000 HeadshotOnly=false DamageKnockbackFactor=4.0 MovementType=Base MaxSpeed=2650.0 MaxCrouchSpeed=500.0 Acceleration=12000.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=5.0 JumpVelocity=3850.0 Gravity=9.0 AirControl=0.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cuboid MainBBHeight=270.0 MainBBRadius=60.0 MainBBHasHead=true MainBBHeadRadius=30.0 MainBBHeadOffset=0.0 MainBBHide=true ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.0 ProjBBHasHead=false ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=1.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=true LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=Endo CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Character Profile] Name=Long Strafer06 MaxHealth=35.0 WeaponProfileNames=BB 4;;;;;;; MinRespawnDelay=0.8 MaxRespawnDelay=0.8 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=80.000 HeadshotOnly=false DamageKnockbackFactor=4.0 MovementType=Base MaxSpeed=2750.0 MaxCrouchSpeed=500.0 Acceleration=12000.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=5.0 JumpVelocity=3850.0 Gravity=10.0 AirControl=0.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cuboid MainBBHeight=270.0 MainBBRadius=60.0 MainBBHasHead=true MainBBHeadRadius=30.0 MainBBHeadOffset=0.0 MainBBHide=true ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.0 ProjBBHasHead=false ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=1.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=true LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=Endo CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Character Profile] Name=Long Strafer07 MaxHealth=35.0 WeaponProfileNames=BB 4;;;;;;; MinRespawnDelay=0.9 MaxRespawnDelay=0.9 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=80.000 HeadshotOnly=false DamageKnockbackFactor=4.0 MovementType=Base MaxSpeed=2850.0 MaxCrouchSpeed=500.0 Acceleration=12000.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=5.0 JumpVelocity=3850.0 Gravity=11.0 AirControl=0.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cuboid MainBBHeight=270.0 MainBBRadius=60.0 MainBBHasHead=true MainBBHeadRadius=30.0 MainBBHeadOffset=0.0 MainBBHide=true ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.0 ProjBBHasHead=false ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=1.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=true LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=Endo CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Character Profile] Name=Long Strafer08 MaxHealth=35.0 WeaponProfileNames=BB 4;;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=1.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=80.000 HeadshotOnly=false DamageKnockbackFactor=4.0 MovementType=Base MaxSpeed=2950.0 MaxCrouchSpeed=500.0 Acceleration=12000.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=5.0 JumpVelocity=3850.0 Gravity=12.0 AirControl=0.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cuboid MainBBHeight=270.0 MainBBRadius=60.0 MainBBHasHead=true MainBBHeadRadius=30.0 MainBBHeadOffset=0.0 MainBBHide=true ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.0 ProjBBHasHead=false ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=1.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=true LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=Endo CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Character Profile] Name=Long Strafer09 MaxHealth=35.0 WeaponProfileNames=BB 4;;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=1.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=80.000 HeadshotOnly=false DamageKnockbackFactor=4.0 MovementType=Base MaxSpeed=3050.0 MaxCrouchSpeed=500.0 Acceleration=12000.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=5.0 JumpVelocity=3850.0 Gravity=13.0 AirControl=0.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cuboid MainBBHeight=270.0 MainBBRadius=60.0 MainBBHasHead=true MainBBHeadRadius=30.0 MainBBHeadOffset=0.0 MainBBHide=true ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.0 ProjBBHasHead=false ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=1.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=true LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=Endo CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Character Profile] Name=Long Strafer10 MaxHealth=35.0 WeaponProfileNames=BB 4;;;;;;; MinRespawnDelay=1.0 MaxRespawnDelay=1.0 StepUpHeight=75.0 CrouchHeightModifier=0.5 CrouchAnimationSpeed=2.0 CameraOffset=X=0.000 Y=0.000 Z=80.000 HeadshotOnly=false DamageKnockbackFactor=4.0 MovementType=Base MaxSpeed=3150.0 MaxCrouchSpeed=500.0 Acceleration=12000.0 AirAcceleration=16000.0 Friction=0.0 BrakingFrictionFactor=5.0 JumpVelocity=3850.0 Gravity=14.0 AirControl=0.0 CanCrouch=false CanPogoJump=false CanCrouchInAir=true CanJumpFromCrouch=false EnemyBodyColor=X=0.771 Y=0.000 Z=0.000 EnemyHeadColor=X=1.000 Y=1.000 Z=1.000 TeamBodyColor=X=1.000 Y=0.888 Z=0.000 TeamHeadColor=X=1.000 Y=1.000 Z=1.000 BlockSelfDamage=false InvinciblePlayer=false InvincibleBots=false BlockTeamDamage=false AirJumpCount=0 AirJumpVelocity=0.0 MainBBType=Cuboid MainBBHeight=270.0 MainBBRadius=60.0 MainBBHasHead=true MainBBHeadRadius=30.0 MainBBHeadOffset=0.0 MainBBHide=true ProjBBType=Cylindrical ProjBBHeight=230.0 ProjBBRadius=55.0 ProjBBHasHead=false ProjBBHeadRadius=45.0 ProjBBHeadOffset=0.0 ProjBBHide=true HasJetpack=false JetpackActivationDelay=0.2 JetpackFullFuelTime=4.0 JetpackFuelIncPerSec=1.0 JetpackFuelRegensInAir=false JetpackThrust=6000.0 JetpackMaxZVelocity=400.0 JetpackAirControlWithThrust=0.25 AbilityProfileNames=;;; HideWeapon=false AerialFriction=1.0 StrafeSpeedMult=1.0 BackSpeedMult=1.0 RespawnInvulnTime=0.0 BlockedSpawnRadius=0.0 BlockSpawnFOV=0.0 BlockSpawnDistance=0.0 RespawnAnimationDuration=0.0 AllowBufferedJumps=true BounceOffWalls=true LeanAngle=0.0 LeanDisplacement=0.0 AirJumpExtraControl=0.0 ForwardSpeedBias=1.0 HealthRegainedonkill=0.0 HealthRegenPerSec=0.0 HealthRegenDelay=0.0 JumpSpeedPenaltyDuration=0.0 JumpSpeedPenaltyPercent=0.0 ThirdPersonCamera=false TPSArmLength=300.0 TPSOffset=X=0.000 Y=150.000 Z=150.000 BrakingDeceleration=2048.0 VerticalSpawnOffset=0.0 TerminalVelocity=0.0 CharacterModel=Endo CharacterSkin=Default SpawnXOffset=0.0 SpawnYOffset=0.0 InvertBlockedSpawn=false ViewBobTime=0.0 ViewBobAngleAdjustment=0.0 ViewBobCameraZOffset=0.0 ViewBobAffectsShots=false IsFlyer=false FlightObeysPitch=false FlightVelocityUp=800.0 FlightVelocityDown=800.0 [Dodge Profile] Name=Long Strafes MaxTargetDistance=0.0 MinTargetDistance=0.0 ToggleLeftRight=false ToggleForwardBack=false MinLRTimeChange=0.1 MaxLRTimeChange=0.1 MinFBTimeChange=0.2 MaxFBTimeChange=0.5 DamageReactionChangesDirection=false DamageReactionChanceToIgnore=0.5 DamageReactionMinimumDelay=0.125 DamageReactionMaximumDelay=0.25 DamageReactionCooldown=1.0 DamageReactionThreshold=50.0 DamageReactionResetTimer=0.5 JumpFrequency=0.9 CrouchInAirFrequency=0.0 CrouchOnGroundFrequency=0.0 TargetStrafeOverride=Ignore TargetStrafeMinDelay=0.125 TargetStrafeMaxDelay=0.25 MinProfileChangeTime=0.0 MaxProfileChangeTime=0.0 MinCrouchTime=0.3 MaxCrouchTime=0.6 MinJumpTime=0.001 MaxJumpTime=0.001 LeftStrafeTimeMult=0.1 RightStrafeTimeMult=1.0 StrafeSwapMinPause=0.0 StrafeSwapMaxPause=0.0 BlockedMovementPercent=0.5 BlockedMovementReactionMin=0.125 BlockedMovementReactionMax=0.2 WaypointLogic=Ignore WaypointTurnRate=200.0 MinTimeBeforeShot=0.15 MaxTimeBeforeShot=0.25 IgnoreShotChance=0.0 ForwardTimeMult=1.0 BackTimeMult=1.0 DamageReactionChangesFB=false [Weapon Profile] Name=Hands Type=Hitscan ShotsPerClick=1 DamagePerShot=1.0 KnockbackFactor=0.0 TimeBetweenShots=0.02 Pierces=false Category=FullyAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=2000.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=2000.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=5.0 MaxHitscanRange=100000.0 GravityScale=1.0 HeadshotCapable=true HeadshotMultiplier=2.0 MagazineMax=120 AmmoPerShot=1 ReloadTimeFromEmpty=1.0 ReloadTimeFromPartial=1.0 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=0.0 DelayBeforeShot=0.0 ProjectileGraphic=Ball VisualLifetime=10.0 BounceOffWorld=false BounceFactor=0.5 BounceCount=0 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=1.0 CanAimDownSight=true ADSZoomDelay=0.1 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=0.0 RecoilNegatable=false DecalType=0 DecalSize=0.1 DelayAfterShooting=0.0 BeamTracksCrosshair=true AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=0.0 FlatKnockbackVertical=0.0 HitscanRadius=0.0 HitscanVisualRadius=10.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=0.0 AimPunchResetTime=0.05 AimPunchCooldown=0.5 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=0.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=100 CancelReloadOnKill=false FlatKnockbackHorizontalMin=0.0 FlatKnockbackVerticalMin=0.0 ADSScope=No Scope ADSFOVOverride=70.0 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 WeaponModel=Healing Baller WeaponAnimation=Primary UseIncReload=false IncReloadStartupTime=0.0 IncReloadLoopTime=0.0 IncReloadAmmoPerLoop=1 IncReloadEndTime=0.0 IncReloadCancelWithShoot=true WeaponSkin=Default ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000 SpreadDecayDelay=0.0 ReloadBeforeRecovery=true 3rdPersonWeaponModel=Pistol 3rdPersonWeaponSkin=Default ParticleMuzzleFlash=None ParticleWallImpact=None ParticleBodyImpact=Beam ParticleProjectileTrail=None ParticleHitscanTrace=Tracer ParticleMuzzleFlashScale=0.5 ParticleWallImpactScale=1.0 ParticleBodyImpactScale=1.0 ParticleProjectileTrailScale=1.0 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=100.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,5.0 SpreadSCA=1.0,1.0,-1.0,5.0 SpreadMSA=1.0,1.0,-1.0,5.0 SpreadMCA=1.0,1.0,-1.0,5.0 SpreadSSH=0.0,0.1,0.0,0.0 SpreadSCH=1.0,1.0,-1.0,5.0 SpreadMSH=0.0,0.1,0.0,0.0 SpreadMCH=1.0,1.0,-1.0,5.0 MaxRecoilUp=0.0 MinRecoilUp=0.0 MinRecoilHoriz=0.0 MaxRecoilHoriz=0.0 FirstShotRecoilMult=0.0 RecoilAutoReset=true TimeToRecoilPeak=0.1 TimeToRecoilReset=0.1 AAMode=0 AAPreferClosestPlayer=true AAAlpha=1.0 AAMaxSpeed=360.0 AADeadZone=0.0 AAFOV=360.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Weapon Profile] Name=BB 4 Type=Projectile ShotsPerClick=1 DamagePerShot=1.0 KnockbackFactor=30.0 TimeBetweenShots=2.0 Pierces=true Category=FullyAuto BurstShotCount=1 TimeBetweenBursts=0.5 ChargeStartDamage=10.0 ChargeStartVelocity=X=500.000 Y=0.000 Z=0.000 ChargeTimeToAutoRelease=2.0 ChargeTimeToCap=1.0 ChargeMoveSpeedModifier=1.0 MuzzleVelocityMin=X=800.000 Y=0.000 Z=0.000 MuzzleVelocityMax=X=500.000 Y=0.000 Z=0.000 InheritOwnerVelocity=0.0 OriginOffset=X=0.000 Y=0.000 Z=0.000 MaxTravelTime=10.0 MaxHitscanRange=100000.0 GravityScale=0.2 HeadshotCapable=false HeadshotMultiplier=10.0 MagazineMax=5 AmmoPerShot=1 ReloadTimeFromEmpty=5.0 ReloadTimeFromPartial=5.0 DamageFalloffStartDistance=100000.0 DamageFalloffStopDistance=100000.0 DamageAtMaxRange=50.0 DelayBeforeShot=0.0 ProjectileGraphic=Ball VisualLifetime=0.3 BounceOffWorld=false BounceFactor=1.5 BounceCount=2 HomingProjectileAcceleration=0.0 ProjectileEnemyHitRadius=0.7 CanAimDownSight=true ADSZoomDelay=0.1 ADSZoomSensFactor=0.7 ADSMoveFactor=1.0 ADSStartDelay=0.0 ShootSoundCooldown=0.08 HitSoundCooldown=0.08 HitscanVisualOffset=X=0.000 Y=0.000 Z=0.000 ADSBlocksShooting=false ShootingBlocksADS=false KnockbackFactorAir=30.0 RecoilNegatable=false DecalType=0 DecalSize=0.1 DelayAfterShooting=0.0 BeamTracksCrosshair=false AlsoShoot= ADSShoot= StunDuration=0.0 CircularSpread=true SpreadStationaryVelocity=0.0 PassiveCharging=false BurstFullyAuto=true FlatKnockbackHorizontal=1111.0 FlatKnockbackVertical=777.0 HitscanRadius=30.0 HitscanVisualRadius=7.0 TaggingDuration=0.0 TaggingMaxFactor=1.0 TaggingHitFactor=1.0 RecoilCrouchScale=1.0 RecoilADSScale=1.0 PSRCrouchScale=1.0 PSRADSScale=1.0 ProjectileAcceleration=0.0 AccelIncludeVertical=false AimPunchAmount=25.0 AimPunchResetTime=0.05 AimPunchCooldown=0.1 AimPunchHeadshotOnly=false AimPunchCosmeticOnly=false MinimumDecelVelocity=5.0 PSRManualNegation=false PSRAutoReset=true AimPunchUpTime=0.05 AmmoReloadedOnKill=0 CancelReloadOnKill=false FlatKnockbackHorizontalMin=1111.0 FlatKnockbackVerticalMin=777.0 ADSScope=No Scope ADSFOVOverride=70.0 ADSFOVScale=Clamped Horizontal ADSAllowUserOverrideFOV=true IsBurstWeapon=false ForceFirstPersonInADS=true ZoomBlockedInAir=false ADSCameraOffsetX=0.0 ADSCameraOffsetY=0.0 ADSCameraOffsetZ=0.0 QuickSwitchTime=0.1 WeaponModel=Stud Gun WeaponAnimation=Primary UseIncReload=false IncReloadStartupTime=0.0 IncReloadLoopTime=0.0 IncReloadAmmoPerLoop=1 IncReloadEndTime=0.0 IncReloadCancelWithShoot=true WeaponSkin=Default ProjectileVisualOffset=X=0.000 Y=0.000 Z=0.000 SpreadDecayDelay=0.0 ReloadBeforeRecovery=true 3rdPersonWeaponModel=Minigun 3rdPersonWeaponSkin=Default ParticleMuzzleFlash=None ParticleWallImpact=None ParticleBodyImpact=None ParticleProjectileTrail=Stud Gun ParticleHitscanTrace=Bullet ParticleMuzzleFlashScale=1.0 ParticleWallImpactScale=1.0 ParticleBodyImpactScale=1.0 ParticleProjectileTrailScale=2.6 Explosive=false Radius=500.0 DamageAtCenter=100.0 DamageAtEdge=100.0 SelfDamageMultiplier=0.5 ExplodesOnContactWithEnemy=false DelayAfterEnemyContact=0.0 ExplodesOnContactWithWorld=false DelayAfterWorldContact=0.0 ExplodesOnNextAttack=false DelayAfterSpawn=0.0 BlockedByWorld=false SpreadSSA=1.0,1.0,-1.0,5.0 SpreadSCA=1.0,1.0,-1.0,5.0 SpreadMSA=1.0,1.0,-1.0,5.0 SpreadMCA=1.0,1.0,-1.0,5.0 SpreadSSH=0.0,0.1,0.0,0.0 SpreadSCH=1.0,1.0,-1.0,5.0 SpreadMSH=0.0,0.1,0.0,0.0 SpreadMCH=1.0,1.0,-1.0,5.0 MaxRecoilUp=3.0 MinRecoilUp=1.0 MinRecoilHoriz=0.5 MaxRecoilHoriz=1.0 FirstShotRecoilMult=1.0 RecoilAutoReset=true TimeToRecoilPeak=0.03 TimeToRecoilReset=0.55 AAMode=0 AAPreferClosestPlayer=true AAAlpha=1.0 AAMaxSpeed=360.0 AADeadZone=0.0 AAFOV=360.0 AANeedsLOS=true TrackHorizontal=true TrackVertical=true AABlocksMouse=false AAOffTimer=0.0 AABackOnTimer=0.0 TriggerBotEnabled=false TriggerBotDelay=0.0 TriggerBotFOV=1.0 StickyLock=false HeadLock=false VerticalOffset=0.0 DisableLockOnKill=false UsePerShotRecoil=false PSRLoopStartIndex=0 PSRViewRecoilTracking=0.45 PSRCapUp=9.0 PSRCapRight=4.0 PSRCapLeft=4.0 PSRTimeToPeak=0.175 PSRResetDegreesPerSec=40.0 UsePerBulletSpread=false PBS0=0.0,0.0 [Map Data] reflex map version 8 global entity type WorldSpawn String32 targetGameOverCamera end Float sky.timeOfDay 13.000000 ColourXRGB32 sky.sunColor ffffde8c Float sky.sunIntensitySize 64.000000 Float sky.sunSharpness 128.000000 Bool8 sky.sunEnabled 0 ColourXRGB32 sky.horizonColor fffff4b5 Float sky.horizonIntensity 0.250000 Float sky.horizonHaloExponentSunIntensity 0.300000 ColourXRGB32 sky.cloudsColor ffffffff Float sky.cloudsCoverage 0.500000 Float sky.cloudsCoverageMultiplier 24.000000 Float sky.cloudsRoughness 0.400000 UInt8 playersMin 1 UInt8 playersMax 16 Bool8 modeFFA 0 brush vertices -3275.000000 -800.000000 1775.000000 -3275.000977 -800.000000 699.999756 -3325.000488 -800.000000 699.999512 -3325.000488 -800.000000 1775.000000 -3275.000000 -850.000000 1775.000000 -3275.000977 -850.000000 699.999756 -3325.000488 -850.000000 699.999512 -3325.000488 -850.000000 1775.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_weaponclip brush vertices -3325.000000 -800.000000 1825.000000 -3324.999268 -800.000000 2900.000732 -3274.999512 -800.000000 2900.001221 -3274.999512 -800.000000 1825.000244 -3325.000000 -850.000000 1825.000000 -3324.999268 -850.000000 2900.000732 -3274.999512 -850.000000 2900.001221 -3274.999512 -850.000000 1825.000244 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_weaponclip brush vertices -3325.000000 -800.000000 1825.000000 -2100.000000 -800.000000 1825.000000 -2100.000000 -800.000000 1775.000000 -3325.000000 -800.000000 1775.000000 -3325.000000 -850.000000 1825.000000 -2100.000000 -850.000000 1825.000000 -2100.000000 -850.000000 1775.000000 -3325.000000 -850.000000 1775.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_weaponclip brush vertices -3275.000000 -800.000000 2900.000000 -2100.000000 -800.000000 2900.000000 -2100.000000 -800.000000 1825.000000 -3275.000000 -800.000000 1825.000000 -3275.000000 -850.000000 2900.000000 -2100.000000 -850.000000 2900.000000 -2100.000000 -850.000000 1825.000000 -3275.000000 -850.000000 1825.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -3275.000000 -800.000000 1775.000000 -2100.000000 -800.000000 1775.000000 -2100.000000 -800.000000 700.000000 -3275.000000 -800.000000 700.000000 -3275.000000 -850.000000 1775.000000 -2100.000000 -850.000000 1775.000000 -2100.000000 -850.000000 700.000000 -3275.000000 -850.000000 700.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -3275.000000 350.000000 2900.000000 -3250.000000 350.000000 2900.000000 -3250.000000 350.000000 700.000000 -3275.000000 350.000000 700.000000 -3275.000000 -800.000000 2900.000000 -3250.000000 -800.000000 2900.000000 -3250.000000 -800.000000 700.000000 -3275.000000 -800.000000 700.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_clip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_clip brush vertices -2100.000000 350.000000 2900.000000 -2050.000000 350.000000 2900.000000 -2050.000000 350.000000 700.000000 -2100.000000 350.000000 700.000000 -2100.000000 -850.000000 2900.000000 -2050.000000 -850.000000 2900.000000 -2050.000000 -850.000000 700.000000 -2100.000000 -850.000000 700.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -3375.000000 350.000000 2900.000000 -3325.000000 350.000000 2900.000000 -3325.000000 350.000000 700.000000 -3375.000000 350.000000 700.000000 -3375.000000 -850.000000 2900.000000 -3325.000000 -850.000000 2900.000000 -3325.000000 -850.000000 700.000000 -3375.000000 -850.000000 700.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -2100.000000 350.000000 2950.000000 -2099.999756 350.000000 2900.000000 -3350.000000 350.000000 2900.000000 -3350.000000 350.000000 2950.000000 -2100.000000 -850.000000 2950.000000 -2099.999756 -850.000000 2900.000000 -3350.000000 -850.000000 2900.000000 -3350.000000 -850.000000 2950.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -3350.000000 -850.000000 2950.000000 -2050.000000 -850.000000 2950.000000 -2050.000000 -850.000000 700.000000 -3350.000000 -850.000000 700.000000 -3350.000000 -900.000000 2950.000000 -2050.000000 -900.000000 2950.000000 -2050.000000 -900.000000 700.000000 -3350.000000 -900.000000 700.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -2100.000000 350.000000 700.000000 -2099.999756 350.000000 650.000000 -3350.000000 350.000000 650.000000 -3350.000000 350.000000 700.000000 -2100.000000 -850.000000 700.000000 -2099.999756 -850.000000 650.000000 -3350.000000 -850.000000 650.000000 -3350.000000 -850.000000 700.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -3325.000000 -650.000000 1825.000000 -3275.000000 -650.000000 1825.000000 -3275.000000 -650.000000 1775.000000 -3325.000000 -650.000000 1775.000000 -3325.000000 -800.000000 1825.000000 -3275.000000 -800.000000 1825.000000 -3275.000000 -800.000000 1775.000000 -3325.000000 -800.000000 1775.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 internal/editor/textures/editor_weaponclip 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 internal/editor/textures/editor_weaponclip brush vertices -3334.000000 -468.000000 1086.000000 -2088.000000 -468.000000 1086.000000 -2088.000000 96.000000 546.000000 -3334.000000 84.000000 546.000000 -3334.000000 96.000000 546.000000 -2088.000000 -492.000000 1086.000000 -2088.000000 84.000000 546.000000 -3334.000000 -492.000000 1086.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 common/materials/misc/ice 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 common/materials/misc/ice 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 common/materials/misc/ice 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 common/materials/misc/ice 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 common/materials/misc/ice 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 common/materials/misc/ice brush vertices -3468.000000 -360.000000 2616.000000 -3456.000000 -360.000000 2616.000000 -3456.000000 -360.000000 2580.000000 -3468.000000 -360.000000 2580.000000 -3468.000000 -372.000000 2616.000000 -3456.000000 -372.000000 2616.000000 -3456.000000 -372.000000 2580.000000 -3468.000000 -372.000000 2580.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 brush vertices -2086.000000 -468.000000 2536.000000 -3344.000244 -468.000000 2535.999756 -3344.000000 96.000000 3075.999512 -2086.000000 84.000000 3076.000000 -2086.000000 96.000000 3076.000000 -3344.000244 -492.000000 2535.999756 -3344.000000 84.000000 3075.999512 -2086.000000 -492.000000 2536.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 4 0x00000000 common/materials/misc/ice 0.000000 0.000000 1.000000 1.000000 0.000000 3 4 2 6 0x00000000 common/materials/misc/ice 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 common/materials/misc/ice 0.000000 0.000000 1.000000 1.000000 0.000000 0 4 3 7 0x00000000 common/materials/misc/ice 0.000000 0.000000 1.000000 1.000000 0.000000 5 1 0 7 0x00000000 common/materials/misc/ice 0.000000 0.000000 1.000000 1.000000 0.000000 3 6 5 7 0x00000000 common/materials/misc/ice brush vertices -3400.000000 400.000000 2950.000000 -2050.000000 400.000000 2950.000000 -2050.000000 400.000000 650.000000 -3400.000000 400.000000 650.000000 -3400.000000 350.000000 2950.000000 -2050.000000 350.000000 2950.000000 -2050.000000 350.000000 650.000000 -3400.000000 350.000000 650.000000 faces 0.000000 0.000000 1.000000 1.000000 270.000000 0 1 2 3 0x00000000 common/materials/synthetic/rubber 0.000000 0.000000 1.000000 1.000000 270.000000 6 5 4 7 0x00000000 common/materials/synthetic/rubber 0.000000 0.000000 1.000000 1.000000 270.000000 2 1 5 6 0x00000000 common/materials/synthetic/rubber 0.000000 0.000000 1.000000 1.000000 270.000000 0 3 7 4 0x00000000 common/materials/synthetic/rubber 0.000000 0.000000 1.000000 1.000000 270.000000 3 2 6 7 0x00000000 common/materials/synthetic/rubber 0.000000 0.000000 1.000000 1.000000 270.000000 1 0 4 5 0x00000000 common/materials/synthetic/rubber brush vertices -3342.000000 -492.000000 1086.000000 -2088.000000 -492.000000 1086.000000 -2088.000000 -492.000000 1080.000000 -3342.000000 -492.000000 1080.000000 -3342.000000 -804.000000 1086.000000 -2088.000000 -804.000000 1086.000000 -2088.000000 -804.000000 1080.000000 -3342.000000 -804.000000 1080.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 common/materials/synthetic/rubber 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 common/materials/synthetic/rubber 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 common/materials/synthetic/rubber 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 common/materials/synthetic/rubber 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 common/materials/synthetic/rubber 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 common/materials/synthetic/rubber brush vertices -3354.000000 -486.000000 2544.000000 -2100.000000 -486.000000 2544.000000 -2100.000000 -486.000000 2538.000000 -3354.000000 -486.000000 2538.000000 -3354.000000 -798.000000 2544.000000 -2100.000000 -798.000000 2544.000000 -2100.000000 -798.000000 2538.000000 -3354.000000 -798.000000 2538.000000 faces 0.000000 0.000000 1.000000 1.000000 0.000000 0 1 2 3 0x00000000 common/materials/synthetic/rubber 0.000000 0.000000 1.000000 1.000000 0.000000 6 5 4 7 0x00000000 common/materials/synthetic/rubber 0.000000 0.000000 1.000000 1.000000 0.000000 2 1 5 6 0x00000000 common/materials/synthetic/rubber 0.000000 0.000000 1.000000 1.000000 0.000000 0 3 7 4 0x00000000 common/materials/synthetic/rubber 0.000000 0.000000 1.000000 1.000000 0.000000 3 2 6 7 0x00000000 common/materials/synthetic/rubber 0.000000 0.000000 1.000000 1.000000 0.000000 1 0 4 5 0x00000000 common/materials/synthetic/rubber entity type CameraPath UInt32 entityIdAttachedTo 132 UInt8 posLerp 2 UInt8 angleLerp 2 entity type PlayerSpawn Vector3 position -3300.000000 -650.000000 1800.000000 Vector3 angles 90.000000 0.000000 0.000000 Bool8 teamB 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -3100.000000 -100.000000 2850.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -3050.000000 -100.000000 2850.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2850.000000 -100.000000 2850.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -3000.000000 -100.000000 2850.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2950.000000 -100.000000 2850.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2900.000000 -100.000000 2850.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2650.000000 -100.000000 2850.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2800.000000 -100.000000 2850.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2750.000000 -100.000000 2850.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2700.000000 -100.000000 2850.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2450.000000 -100.000000 2850.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2600.000000 -100.000000 2850.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2550.000000 -100.000000 2850.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2500.000000 -100.000000 2850.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2250.000000 -100.000000 2850.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2400.000000 -100.000000 2850.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2350.000000 -100.000000 2850.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2300.000000 -100.000000 2850.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2200.000000 -100.000000 2850.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2150.000000 -100.000000 2850.000000 Vector3 angles 180.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -3100.000000 -100.000000 750.000000 Vector3 angles 360.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -3000.000000 -100.000000 750.000000 Vector3 angles 360.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -3049.999512 -100.000000 750.000244 Vector3 angles 360.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2949.999512 -100.000000 750.000244 Vector3 angles 360.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2900.000000 -100.000000 750.000000 Vector3 angles 360.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2800.000000 -100.000000 750.000000 Vector3 angles 360.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2849.999512 -100.000000 750.000000 Vector3 angles 360.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2750.000000 -100.000000 750.000000 Vector3 angles 360.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2700.000000 -100.000000 750.000244 Vector3 angles 360.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2650.000000 -100.000000 750.000000 Vector3 angles 360.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2600.000000 -100.000000 750.000000 Vector3 angles 360.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2549.999512 -100.000000 750.000244 Vector3 angles 360.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2500.000000 -100.000000 750.000244 Vector3 angles 360.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2449.999512 -100.000000 750.000244 Vector3 angles 360.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2400.000000 -100.000000 749.999756 Vector3 angles 360.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2349.999512 -100.000000 750.000244 Vector3 angles 360.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2300.000488 -100.000000 749.999756 Vector3 angles 360.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2250.000488 -100.000000 750.000244 Vector3 angles 360.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2200.000000 -100.000000 750.000000 Vector3 angles 360.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0 entity type PlayerSpawn Vector3 position -2149.999756 -100.000000 749.999756 Vector3 angles 360.000000 0.000000 0.000000 Bool8 teamA 0 Bool8 initialSpawn 0 Bool8 modeCTF 0 Bool8 modeFFA 0 Bool8 modeTDM 0 Bool8 mode1v1 0 Bool8 modeRace 0 Bool8 mode2v2 0
a845eea24de5aec3f02d3c22bc5a3b83c79801be
449d555969bfd7befe906877abab098c6e63a0e8
/24/CH17/EX17.7/Example17_7.sce
3cafb6b5113da10bc8f8e352076adfad0c2472d7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
533
sce
Example17_7.sce
//Given that L = 1.2 //in meter u = 1.6*10^-3 //in kg/m f = 120 //in Hz g = 9.8 //in m/s^2 //Sample Problem 17-7a printf("**Sample Problem 17-7a**\n") n = 4 //T = m*g //v = sqrt(m*g/u) //f = n*v/(2*L) m = (2*L*f)^2*u/(g*n^2) printf("The value of m should be %fkg\n", m) //Sample Problem 17-7b printf("\n**Sample Problem 17-7b**\n") M = 1 //in kg n = sqrt((2*L*f)^2*u/(g*M)) if abs(n - round(n)) < 0.01 then printf("The allowed wave mode is %d", n) else printf("No wave mode will be allowed") end
a04c5d732f00d27ef96bcee2b4eff1da225e890e
449d555969bfd7befe906877abab098c6e63a0e8
/3760/CH4/EX4.61/Ex4_61.sce
407a2e27123f9d9bf6193b830a6a6b809098fcab
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
2,059
sce
Ex4_61.sce
clc; n=800; // speed at which magnetization curve is given // case a v=600; // dc voltage source ra=0.3; // armature resistance rf=0.25; // field resistance T=300; // given torque VT=[ 200 375 443 485 510 518]; // terminal voltage IF=[ 15 30 45 60 75 90 ]; // field current EA1=VT+IF*ra; // generated EMF EA2=v-IF*(ra+rf); // generated EMF for v=600 V N2=n*(EA2./EA1); // speed for v= 600 V TE=(EA2.*IF.*EA1*60)./(2*%pi*n*EA2); //torque subplot(221); plot(TE,N2); xlabel('Torque(Nm)'); ylabel('speed(rpm)'); title('speed-torque'); subplot(222); plot(TE,IF); xlabel('Torque(Nm)'); ylabel('current(A)'); title('current-torque'); disp('from curves, for a torque of 300 Nm, speed is 940 rpm and current is 52.5 A'); disp('case b'); rd=0.25; // diverter resistance put in parallel with series combination of armature and field resistance ia1=30; ia2=60; // armature currents if1=ia1*(rd/(rd+rf)); // field current corresponding to ia1 Ea1=204.5; // given counter EMF for field current Ea2=v-ia1*(ra+((rd*rf)/(rd+rf))); // counter EMF for voltage supply of 600 V n2=n*(Ea2/Ea1); printf('Speed at %f A armature current is %f rpm\n',ia1,n2); T=(Ea1*60*ia1)/(2*%pi*n); printf('Torque at %f A armature current is %f Nm\n',ia1,T); if1=ia2*(rd/(rd+rf)); // field current corresponding to ia1 Ea1=384; // given counter EMF for field current Ea2=v-ia2*(ra+((rd*rf)/(rd+rf))); // counter EMF for voltage supply of 600 V n2=n*(Ea2/Ea1); printf('Speed at %f A armature current is %f rpm\n',ia2,n2); T=(Ea1*60*ia2)/(2*%pi*n); printf('Torque at %f A armature current is %f Nm\n',ia2,T); disp('case c'); ia3=75; // armature current t=0.8; // tapping percentage of field winding as a fration of full series turn ifl=t*ia3; // corresponding field current Ea=503; // given counter EMF for field current Ea2=v-ia3*(ra+t*rf); // counter EMF for voltage supply of 600 V n2=n*(Ea2/Ea); printf('Speed at %f A armature current is %f rpm\n',ia3,n2); T=(Ea*60*ia3)/(2*%pi*n); printf('Torque at %f A armature current is %f Nm\n',ia3,T);
d03e47a664447c998ee395fcf346b9a1bad72860
c5a5b51d0d9d4bb57cc4508c2ffc453ccf47aeba
/finddelay/finddelay.sci
5ba1543bd73e5fdd190a9737b17cf5dd169c8826
[]
no_license
PolaPriyanka/ScilabCommunication
2adca45f772b2ca6a602e10e4801576eeb0da33d
5b5c704e591f20be6944800a1b4b25cf06f56592
refs/heads/master
2021-01-01T18:22:48.761766
2015-12-16T07:26:29
2015-12-16T07:26:29
42,721,104
1
0
null
null
null
null
UTF-8
Scilab
false
false
5,709
sci
finddelay.sci
function d = finddelay(x,y,varargin) // FINDDELAY returns the estimated delay between two input signals using crosscorrelation. // If signals are periodic, delay with least absolute value is returned. // D = FINDDELAY(X,Y), returns estimated Delay D between X // and Y. D is positive implies Y is delayed with respect to X and vice versa. // If X, Y are matrices, then D is a row vector corresponding to delay between columns of X and Y // D = FINDDELAY(...,MAXLAG), uses MAXLAG as the maximum correlation // window size used to find the estimated delay(s) between X and Y: // // > If MAXLAG is an integer-valued scalar, and X and Y are row or column // vectors or matrices, the vector D of estimated delays is found by // cross-correlating (the columns of) X and Y over a range of lags // -MAXLAG:MAXLAG. // > If MAXLAG is an integer-valued row or column vector, and one input is vector // and another be matirx (let X is a row or column vector , // and Y is a matrix) then the vector D of estimated delays is found by // cross-correlating X and column J of Y over a range of lags // -MAXLAG(J):MAXLAG(J), for J=1:Number of columns of Y. // > If MAXLAG is an integer-valued row or column vector, and X and Y are // both matrices. then vector D of estimated delays is found by // cross-correlating corresponding columns of X and Y over a range of lags // -MAXLAG(J):MAXLAG(J). // // By default, MAXLAG is equal to MAX(LX,LY)-1 for vectors, // Written by Pola Lakshmi Priyanka, FOSSEE, IIT Bombay// // Check number of input arguments [out_a,inp_a]=argn(0) if inp_a<=1 | inp_a>3 then error('comm:finddelay: Invalid number of input arguments') end if out_a>1 then error('comm:finddelay: Invalid number of output arguments') end //Error Checking of input arguments if (~or(type(x)==[1 5 8]) | (isempty(x) ) | (ndims(x)>2) | ~or(type(y)==[1 5 8]) | (isempty(y) ) | (ndims(y)>2)) error('comm:finddelay:Input arguments must be numeric'); end if isvector(x) x = x'; end if isvector(y) y = y'; end [row_x,col_x] = size(x); [row_y,col_y] = size(y); x = double(x); y = double(y); // Check if matrices are of compatible if ~isvector(x) & ~isvector(y) if col_x~=col_y error('comm:finddelay:When both inputs are matrices, they must have the same number of columns.') end end // Check for maxlag if inp_a==3 if ( ndims(varargin(1))>2 | ~isreal(varargin(1)) | isempty(varargin(1)) | or(isnan(varargin(1))) | or(isinf(varargin(1))) | varargin(1) ~= ceil(varargin(1))), error('comm:finddelay:Input argument 3 should be a finite integer vector') end if ( (isvector(x)) & (isvector(y)) & (length(varargin(1))>1) ) error('comm:finddelay: If x and y are both vectors, maxlag should be a scalar') elseif ( (isvector(y)) & (length(varargin(1))>1) & (length(varargin(1))~=col_x) ), error('comm:finddelay: If maxlag is a row/column vector, it should be of same length as the number of columns of X or Y'); elseif ( (isvector(x)) & (length(varargin(1))>1) & (length(varargin(1))~=col_y) ), error('comm:finddelay: If maxlag is a row/column vector, it should be of same length as the number of columns of X or Y'); elseif ( (length(varargin(1))>1) & (length(varargin(1))~=col_x) & (length(varargin(1))~=col_y) ), error('comm:finddelay: If X and Y are matrices, MAXLAG should be the same length as the number of columns of X and Y.'); else if isempty(varargin(1)) maxlag = max(row_x,row_y)-1; //default value else maxlag = double(abs(varargin(1))); end end else maxlag = max(row_x,row_y)-1; end max_col=max(col_x,col_y); if (length(maxlag)==1) maxlag = repmat(maxlag,1,max_col); end if col_x<max_col x = repmat(x,1,max_col); elseif col_y<max_col y = repmat(y,1,max_col); end // Initialise cross-correlation matrix . maxlag_max = max(maxlag); c_normalized = zeros(2*maxlag_max+1,max_col); index_max = zeros(1,max_col); max_c = zeros(1,max_col); // Compute cross-correlation matrix: sq_x = abs(x).^2 sq_y = abs(y).^2 cxx0 = sum(sq_x,"r"); cyy0 = sum(sq_y,"r"); for i = 1:max_col if ( (cxx0(i)==0) | (cyy0(i)==0) ) c_normalized(:,i) = zeros(2*maxlag_max+1,1); else c_normalized(maxlag_max-maxlag(i)+1:maxlag_max-maxlag(i)+2*maxlag(i)+1,i) ... = abs(xcorr(x(:,i),y(:,i),maxlag(i)))/sqrt(cxx0(i)*cyy0(i)); end end // Find lowest positive or zero indices of lags (negative delays) giving the // largest absolute values of normalized cross-correlations. [max_pos,index_max_pos] = max(c_normalized(maxlag_max+1:$,:),"r"); // Find lowest negative indices of lags (positive delays) giving the largest // absolute values of normalized cross-correlations. A=c_normalized(1:maxlag_max,:) [max_neg,index_max_neg] = max(A($:-1:1,:),"r"); if isempty(max_neg) index_max = maxlag_max + index_max_pos; else for i=1:max_col if max_pos(i)>max_neg(i) index_max(i) = maxlag_max + index_max_pos(i); max_c(i) = max_pos(i); elseif max_pos(i)<max_neg(i) index_max(i) = maxlag_max + 1 - index_max_neg(i); max_c(i) = max_neg(i); elseif max_pos(i)==max_neg(i) if index_max_pos(i)<=index_max_neg(i) index_max(i) = maxlag_max + index_max_pos(i); max_c(i) = max_pos(i); else index_max(i) = maxlag_max + 1 - index_max_neg(i); max_c(i) = max_neg(i); end end end end // Subtract delays. d = (maxlag_max + 1) - index_max; endfunction
179260ef024bf1d881579364001c8f522e1baccf
449d555969bfd7befe906877abab098c6e63a0e8
/599/CH5/EX5.9/example5_9.sce
382d17f4541abfe60eb65c3d229f9177bc2f96a4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,827
sce
example5_9.sce
// Calculation of relative humidity ,humid volume enthalpy and heat required if 100m^3 of this air is heated to 110 degree clear; clc; printf("\t Example 5.9\n"); //part(i) y_bar=.03; // humidity inkg water /kg dry air pt=760; //total pressure in pascal pa2=118; //final pressure y=y_bar/(18/28.84); //humidity kmol water vapour/kmol dry air pa=(y*pt)/(y+1); //partial pressure rh=pa/pa2; //relative humidity sh=pa2/(pt-pa2); //saturated humidity ph=(y/sh)*100; //percentage humidity printf("\n percentage humidity is :%f",ph); ///part(ii) Ma=18; //molecular weight Mb=28.84; //molecular weight Tg=55; //temperature of mixture pt=1.013*10^5; //total pressure in pascal VH=8315*[(1/Mb)+(y_bar/Ma)]*[(Tg+273)/pt]; //humid volume in m^3mixture/kg of dry air printf("\n we get VH humid volume as :%f m^3/kg dry air",VH); //part(iii) Ca=1005; Cb=1884; Cs=Ca+Cb*y_bar; //humid heat in j/kg dry air degree celcius printf("\n we get humid heat as \t :%f j/kg dry air degree celcius ",Cs); d=2502300; //latent heat in j/kg H=Cs*(Tg-0)+y_bar*d; //enthalpy for refrence temperature of 0 degree printf("\n we get H enthalpy as \t :%f j/kg",H); //part(iv) v=100; //volume of air mass=v/VH; //mass of dry air Tg=110; //temperature of mixture d=2502300; //latent heat in j H_final=Cs*(Tg-0)+y_bar*d; //enthalpy for refrence temperature of 0 degree H_added=(H_final-H)*102.25; //HEAT added in kj printf("\n we get heat added as \t :%f kj",H_added/1000); //end
d1b649f2af3b35362abe3eb12d983bab23231c3c
1b969fbb81566edd3ef2887c98b61d98b380afd4
/Rez/bivariate-lcmsr-post_mi/bfas_ea_usi_d/~BivLCM-SR-bfas_ea_usi_d-PLin-VLin.tst
528ccf9048e597b4ba1c94828300a55960a519b2
[]
no_license
psdlab/life-in-time-values-and-personality
35fbf5bbe4edd54b429a934caf289fbb0edfefee
7f6f8e9a6c24f29faa02ee9baffbe8ae556e227e
refs/heads/master
2020-03-24T22:08:27.964205
2019-03-04T17:03:26
2019-03-04T17:03:26
143,070,821
1
0
null
null
null
null
UTF-8
Scilab
false
false
11,974
tst
~BivLCM-SR-bfas_ea_usi_d-PLin-VLin.tst
THE OPTIMIZATION ALGORITHM HAS CHANGED TO THE EM ALGORITHM. ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 1 2 3 4 5 ________ ________ ________ ________ ________ 1 0.409711D+00 2 -0.594347D-02 0.297473D-02 3 0.247548D-01 -0.805409D-03 0.318763D+00 4 -0.593366D-03 0.152900D-03 -0.191904D-02 0.287037D-02 5 0.744558D-03 -0.142393D-04 -0.959797D-03 0.149141D-04 0.436006D-02 6 -0.805890D-03 0.518344D-04 -0.223165D-03 0.538024D-04 0.316808D-03 7 -0.341878D-03 0.503768D-04 0.234343D-03 0.198873D-03 -0.495497D-04 8 0.149997D-02 0.562172D-04 -0.199724D-03 -0.243974D-04 -0.905586D-04 9 -0.435399D+00 0.660574D-02 -0.214588D+00 -0.993184D-02 0.206870D+00 10 -0.962435D-01 -0.810902D-02 -0.380047D-01 0.526108D-02 0.231291D+00 11 -0.258927D-01 0.425777D-02 -0.336513D-01 -0.130753D-01 0.203576D-01 12 0.717739D+00 -0.673976D-01 0.473125D+00 -0.186945D-01 0.635190D-01 13 0.534217D-01 0.162283D-02 0.451133D-01 0.131030D-01 0.120230D-01 14 0.202322D+00 0.143262D-01 0.465971D+00 0.295328D-01 -0.153664D-01 15 -0.374847D+01 0.201023D-02 -0.764776D+00 0.308603D-02 -0.192633D+00 16 0.112505D-02 -0.121844D-01 0.103782D-02 -0.157499D-02 0.180894D-02 17 0.363606D-02 -0.885508D-05 0.196741D-02 -0.438164D-04 -0.108710D-02 18 -0.923781D+00 0.791826D-02 -0.883130D+00 -0.498306D-01 0.421740D-01 19 0.550340D-01 -0.625217D-02 0.159127D+00 -0.504816D-02 -0.154720D-01 20 -0.111083D+01 0.239153D-01 -0.225017D+00 0.271868D-01 -0.402270D-01 21 -0.647255D-01 0.338085D-02 -0.244385D+00 0.733681D-02 0.153545D-01 22 0.287573D-02 -0.292626D-04 0.663580D-02 -0.250069D-03 -0.891172D-04 23 -0.342600D-01 0.376211D-03 0.201071D-01 0.322643D-02 0.116368D-02 24 0.541786D-02 -0.426471D-03 0.289948D-02 0.348160D-03 -0.248430D-03 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 6 7 8 9 10 ________ ________ ________ ________ ________ 6 0.762539D-03 7 0.699312D-03 0.269324D-02 8 -0.261691D-04 -0.474825D-04 0.216159D-02 9 0.266696D-02 -0.771995D-02 -0.193123D-01 0.602007D+02 10 0.234091D-01 0.511402D-02 -0.665643D-02 0.116421D+02 0.244857D+02 11 0.464312D-01 0.391097D-01 0.750679D-02 0.903753D+00 0.484764D+01 12 0.580136D-02 0.268850D-01 0.187774D+00 0.514468D+01 0.453200D+01 13 0.460331D-01 0.806801D-01 0.143745D-01 0.486117D+00 0.235075D+00 14 0.116151D-01 0.430296D-02 0.167236D+00 -0.473501D+01 -0.570690D+00 15 0.224791D-01 0.513283D-01 0.400312D-01 -0.170064D+02 -0.162179D+02 16 0.933341D-03 0.248879D-02 -0.278532D-02 0.100089D+01 0.236107D+00 17 -0.384263D-03 -0.439379D-03 -0.117065D-03 -0.178301D+00 -0.706376D-01 18 -0.289566D-01 -0.854691D-01 0.485052D-01 0.658921D+01 -0.358127D+00 19 -0.784155D-02 0.431427D-02 -0.726589D-03 -0.242522D+01 -0.670814D+00 20 0.178715D-01 0.405674D-01 -0.219611D+00 -0.194303D+01 0.788923D+00 21 0.692080D-02 -0.595300D-02 0.112777D-02 0.279514D+01 0.860101D+00 22 -0.326933D-03 -0.357198D-03 -0.180002D-03 -0.326948D-01 -0.302381D-02 23 -0.409184D-03 -0.145151D-02 -0.841999D-03 0.162446D+00 0.694464D-01 24 -0.792986D-04 0.750080D-04 -0.183068D-03 -0.101368D-01 -0.271729D-01 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 11 12 13 14 15 ________ ________ ________ ________ ________ 11 0.468382D+02 12 0.506212D+01 0.165199D+03 13 -0.914719D+00 0.318573D+01 0.113485D+02 14 0.660205D+00 0.138974D+02 -0.714372D+00 0.625289D+02 15 0.906300D+01 0.151253D+02 0.203417D+01 0.276288D+01 0.465574D+03 16 0.350384D+00 0.401782D-01 0.655795D-01 -0.235861D+00 0.207392D+01 17 -0.877832D-01 -0.131762D+00 -0.445087D-01 0.686590D-02 -0.194814D+01 18 -0.149369D+02 0.300428D+01 -0.184126D+01 0.169540D+01 0.394939D+02 19 0.237462D+01 0.529257D+00 -0.103373D+01 0.550317D-01 0.294671D+01 20 0.411275D+01 -0.743502D+02 0.436854D+00 -0.345719D+02 0.207890D+02 21 -0.207842D+01 -0.364854D+00 0.909399D+00 0.289533D-01 -0.198033D+01 22 -0.895559D-02 -0.296713D-02 -0.339797D-01 0.304880D-02 -0.190176D+00 23 0.586147D-01 0.129579D+00 -0.662282D-01 -0.129318D+00 -0.148326D+00 24 -0.464285D-01 0.183564D-01 0.419843D-02 0.123205D-01 -0.144173D+00 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 16 17 18 19 20 ________ ________ ________ ________ ________ 16 0.752895D+00 17 -0.583795D-01 0.226654D-01 18 0.445760D+00 -0.167967D+00 0.223235D+03 19 0.274310D+00 -0.181100D-01 -0.395335D+01 0.500838D+01 20 0.123905D+00 -0.892841D-01 -0.173052D+02 0.255886D+01 0.312616D+03 21 -0.128355D-01 -0.903465D-02 0.643232D+01 -0.460332D+01 -0.432103D+01 22 -0.139435D-01 0.300402D-02 -0.104019D+01 0.195029D-01 0.142307D+00 23 0.475079D-01 -0.176290D-02 -0.970575D+00 -0.617985D-01 0.282058D+01 24 -0.131912D-02 0.205780D-02 0.162705D+00 -0.161481D-01 -0.141616D+01 ESTIMATED COVARIANCE MATRIX FOR PARAMETER ESTIMATES 21 22 23 24 ________ ________ ________ ________ 21 0.564702D+01 22 -0.697170D-01 0.121395D-01 23 0.840743D-01 0.130274D-03 0.382591D+00 24 0.150548D-01 -0.129163D-02 -0.352333D-01 0.144176D-01 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 1 2 3 4 5 ________ ________ ________ ________ ________ 1 1.000 2 -0.170 1.000 3 0.068 -0.026 1.000 4 -0.017 0.052 -0.063 1.000 5 0.018 -0.004 -0.026 0.004 1.000 6 -0.046 0.034 -0.014 0.036 0.174 7 -0.010 0.018 0.008 0.072 -0.014 8 0.050 0.022 -0.008 -0.010 -0.029 9 -0.088 0.016 -0.049 -0.024 0.404 10 -0.030 -0.030 -0.014 0.020 0.708 11 -0.006 0.011 -0.009 -0.036 0.045 12 0.087 -0.096 0.065 -0.027 0.075 13 0.025 0.009 0.024 0.073 0.054 14 0.040 0.033 0.104 0.070 -0.029 15 -0.271 0.002 -0.063 0.003 -0.135 16 0.002 -0.257 0.002 -0.034 0.032 17 0.038 -0.001 0.023 -0.005 -0.109 18 -0.097 0.010 -0.105 -0.062 0.043 19 0.038 -0.051 0.126 -0.042 -0.105 20 -0.098 0.025 -0.023 0.029 -0.034 21 -0.043 0.026 -0.182 0.058 0.098 22 0.041 -0.005 0.107 -0.042 -0.012 23 -0.087 0.011 0.058 0.097 0.028 24 0.070 -0.065 0.043 0.054 -0.031 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 6 7 8 9 10 ________ ________ ________ ________ ________ 6 1.000 7 0.488 1.000 8 -0.020 -0.020 1.000 9 0.012 -0.019 -0.054 1.000 10 0.171 0.020 -0.029 0.303 1.000 11 0.246 0.110 0.024 0.017 0.143 12 0.016 0.040 0.314 0.052 0.071 13 0.495 0.461 0.092 0.019 0.014 14 0.053 0.010 0.455 -0.077 -0.015 15 0.038 0.046 0.040 -0.102 -0.152 16 0.039 0.055 -0.069 0.149 0.055 17 -0.092 -0.056 -0.017 -0.153 -0.095 18 -0.070 -0.110 0.070 0.057 -0.005 19 -0.127 0.037 -0.007 -0.140 -0.061 20 0.037 0.044 -0.267 -0.014 0.009 21 0.105 -0.048 0.010 0.152 0.073 22 -0.107 -0.062 -0.035 -0.038 -0.006 23 -0.024 -0.045 -0.029 0.034 0.023 24 -0.024 0.012 -0.033 -0.011 -0.046 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 11 12 13 14 15 ________ ________ ________ ________ ________ 11 1.000 12 0.058 1.000 13 -0.040 0.074 1.000 14 0.012 0.137 -0.027 1.000 15 0.061 0.055 0.028 0.016 1.000 16 0.059 0.004 0.022 -0.034 0.111 17 -0.085 -0.068 -0.088 0.006 -0.600 18 -0.146 0.016 -0.037 0.014 0.123 19 0.155 0.018 -0.137 0.003 0.061 20 0.034 -0.327 0.007 -0.247 0.054 21 -0.128 -0.012 0.114 0.002 -0.039 22 -0.012 -0.002 -0.092 0.003 -0.080 23 0.014 0.016 -0.032 -0.026 -0.011 24 -0.056 0.012 0.010 0.013 -0.056 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 16 17 18 19 20 ________ ________ ________ ________ ________ 16 1.000 17 -0.447 1.000 18 0.034 -0.075 1.000 19 0.141 -0.054 -0.118 1.000 20 0.008 -0.034 -0.066 0.065 1.000 21 -0.006 -0.025 0.181 -0.866 -0.103 22 -0.146 0.181 -0.632 0.079 0.073 23 0.089 -0.019 -0.105 -0.045 0.258 24 -0.013 0.114 0.091 -0.060 -0.667 ESTIMATED CORRELATION MATRIX FOR PARAMETER ESTIMATES 21 22 23 24 ________ ________ ________ ________ 21 1.000 22 -0.266 1.000 23 0.057 0.002 1.000 24 0.053 -0.098 -0.474 1.000
79438890639f83c04af8b77d50ab6050819a59a5
449d555969bfd7befe906877abab098c6e63a0e8
/1073/CH5/EX5.14/5_14.sce
2ac1afc448d7999fff1b8baf6968e8a1ab15701b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
3,103
sce
5_14.sce
clc clear //Example 5.14 //Properties of crude oil: Cpc=1.986 ; //[kJ/(kg.K)] mu1=2.9*10^-3; //[N.s/sq m] k1=0.136 ; //[W/m.K] rho1=824 ; //[kg/m^3] //Properties of bottom product: Cp2=2.202 ; //[kJ/kg.K] rho2=867 ; //[kg/m^3] mu2=5.2*10^-3 ; //[N.s/sq m] k2=0.119 ; //[W/sq m.K] mc_dot=135000 ; //Basis: cruid oil flow rate in [kg/h] m_dot=106000 ; //Bottom product flow rate inn [kg/h] t1=295 ; //[K] t2=330 ; //[K] T1=420 ; //[K] T2=380 ; //[K] dT1=T1-t2 //[K] dT2=T2-t1 //[K] dTlm=(dT1-dT2)/log(dT1/dT2) //[K] Q=mc_dot*Cpc*(t2-t1) //kJ/h Q=Q*1000/3600 //[W] //Shell side calculations: Pt=25 ; //[mm] Pt=Pt/1000 ; //[m] B=0.23 ; //[m] Do=0.019 ; //[m]Outside diameter for square pitch c_dash=Pt-Do //Clearance in [m] id=0.6 ; //[m] as=id*c_dash*B/Pt // Cross flow area of shell [sq m] //since there is a Calculaiton mistake ,we take: as=0.0353; Gs=m_dot/as //Shell side mass velocity in [kg/sq m.h] Gs=Gs/3600; //[kg/sq m.s] De=4*(Pt^2-(%pi/4)*Do^2)/(%pi*Do) //[m] Nre=De*Gs/mu2 //Reynolds number Npr=Cp2*1000*mu2/k2 //Prandtl number muw=mu2 //Since mu/muw=1 Nnu=0.36*(Nre^0.55)*Npr^(1.0/3.0)*(mu2/muw)^(0.14) //Nusselt number ho=Nnu*k2/De //[W/sq m.K] //Tube side heat transfer coefficient: n=324 ; //No. of tubes n_p=324/2 ; //No.of tubes per pass t=2.1 ; //Thickness in [mm] t=t/1000 ; //[m] Di=Do-2*t //I.d of tube in [m] A=(%pi/4)*(Di^2) //Cross-sectional area of one tube in [sq m] A_p=n_p*A //Total area for flow per pass in [sq m] G=mc_dot/A_p //[kg/sq m h] G=G/3600 //[kg/sq m.s] Nre=Di*G/mu1 //Reynolods number Npr=42.35 ; //Prandtl number Nnu=0.023*(Nre^0.8)*(Npr^0.4) //Nusselt number hi=Nnu*k1/Di //[W/sq m.K] hio=hi*Di/Do //[W/sq m.K] Uo=1/(1/ho+1/hio) //[W/sq m.K] Uc=Uo L=4.88 ; //Length of tube in [m] Ao=n*%pi*Do*L //[sq m] Ud=Q/(Ao*dTlm) //[W/sq m.K] Rd=(Uc-Ud)/(Uc*Ud) //[m^2.K/W] printf("\n The calculation of line no.36 to calculated as is wrongly done in Book by printing 0.0353,,..which is wrong\n"); printf("\nRd=%f K/w,or 7.34*10^-4 which is less than the provided,so this if installed will not give required temperarues without frequent cleaning\n\n",Rd);
805a2c90381ee75d9bcef854e20dff7d2fcbb434
99b4e2e61348ee847a78faf6eee6d345fde36028
/Toolbox Test/rcosdesign/rcosdesign11.sce
07ec422b8f83be592e65e936d5a7a6ec582af8eb
[]
no_license
deecube/fosseetesting
ce66f691121021fa2f3474497397cded9d57658c
e353f1c03b0c0ef43abf44873e5e477b6adb6c7e
refs/heads/master
2021-01-20T11:34:43.535019
2016-09-27T05:12:48
2016-09-27T05:12:48
59,456,386
0
0
null
null
null
null
UTF-8
Scilab
false
false
321
sce
rcosdesign11.sce
//check o/p when i/p arg sps is of type char beta=0.3; span=3; sps='a'; h=rcosdesign(beta,span,sps); //output // !--error 10000 //input variable should be of type double //at line 10 of function checkIpValidity called by : //at line 34 of function rcosdesign called by : //h=rcosdesign(beta,span,sps); //
458d184d74d577b10ffccac6a334d983d39cde15
449d555969bfd7befe906877abab098c6e63a0e8
/1163/CH17/EX17.1/example_17_1.sce
ddd9ff8756c9b307b0779f56815f72fa1a451e99
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
346
sce
example_17_1.sce
clear; clc; disp("--------------Example 17.1---------------") frame_rate=8000; // frames per sec frame=9*(1*90); // each frame is made of 9 by (1x90) bytes bits=8; // 1byte = 8 bits STS1_data_rate=frame_rate*frame*bits; // formula printf("The STS-1 data rate is %5.3f Mbps.",STS1_data_rate*10^-6); // display result with appropriate unit
0c579cf637a10c9614a99c444723e64edd86a1d3
449d555969bfd7befe906877abab098c6e63a0e8
/2309/CH3/EX3.a.1/A_Ex3_1.sce
4d7907952a85ec49aeda60d2286ad0b5a8c65baa
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
839
sce
A_Ex3_1.sce
// Chapter 3 Additional Example 1 //============================================================================== clc; clear; //input data n1 = 1.5; // Refractive index of core NA = 0.26; // Numerical aperture d = 100*10^-6 // core diameter lamda = 10^-6; // wavelength in m // Calculations n2 = sqrt( n1^2 - NA^2); // Refractive index of cladding im = asin(NA); // Acceptance angle im_d = im*180/%pi // radian to degree conversion N = 4.9*(d*NA/lamda)^2; // maximum no of modes // Output mprintf('Refractive index of cladding n2 = %3.4f\n Acceptance angle = %3.2f degrees\n Maximum number of modes that fibre allows = %d ',n2,im_d,N); //==============================================================================
f411ad68357e2de6721d6a553fa54ff2b34fd48b
449d555969bfd7befe906877abab098c6e63a0e8
/1523/CH7/EX7.8/ex7_8.sce
fafd8cb12a63893a866064534cafab7f28528797
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
425
sce
ex7_8.sce
// Graph Theory : example 7.8 :(pg 7.19 & 7.20) //Complete Incidence Matrix Aa printf("\nAa="); disp(Aa=[1 0 -1 1;-1 1 0 0;0 -1 1 -1]); // Reduced Incidence matrix A (by eliminating last row from Aa) A=[1 0 -1 1;-1 1 0 0]; printf("\nA="); disp(A=[1 0 -1 1;-1 1 0 0]); printf("\nNumber of possible trees=|A*A^T|");//A^T=A'= transpose of A x=(A*A'); disp(x); printf("\n|A*A^T|=");//determinant of A disp(det(x));
c8a6e938642059d65f8dd2ec36da0539c4b3c9d7
58f8869b2dcd9296bbe82d9923d1d7d801937351
/2 Error Analysis/Q7.sce
630f1e65bb846b59c8c762766a014658030df1ec
[ "MIT" ]
permissive
keivalya/2ME01
f325d38ea7adace9a10bc3d83e7868d59dbc4066
3147e0d7319ddeb6e79fde5d0851dcc423a7e23d
refs/heads/master
2023-02-10T20:15:29.593282
2021-01-09T02:39:20
2021-01-09T02:39:20
282,954,965
0
0
MIT
2020-10-04T02:22:40
2020-07-27T16:33:06
Scilab
UTF-8
Scilab
false
false
706
sce
Q7.sce
//Documentation by Keivalya Pandya //sum1 -> Sum of series 1 //et1 -> True Error in series 1 //ea1 -> Approx. Error in series 1 // //sum2 -> Sum of series 2 //et2 -> True Error in series 2 //ea2 -> Approx. Error in series 2 function [sum1,et1,ea1,sum2,et2,ea2]=mine2(x,trueval) term1=1;term2=1;sum1o=term1;sum2o=term2; for i=2: 20 sum1=sum1o+(-1)^(i-1)*x^(i-1)/factorial(i-1); term2=term2+x^(i-1)/factorial(i-1); sum2=1/term2; et1=abs((trueval-sum1)/sum1); et2=abs((trueval-sum2)/sum2); ea1=abs((sum1-sum1o)/sum1); ea2=abs((sum2-sum2o)/sum2); sum1o=sum1;sum2o=sum2; end end [sum1,et1,ea1,sum2,et2,ea2] = mine2(5,6.737947*10^-3)
de5c8790f169411cadfc09ee770c3fa29fce18b8
553cd3b112df312e6cf625dd799b3b052e2d4e20
/scilab/sin_440hz/sin_8k.sci
6ac593ae127a5b1ee4350e3e90c9a04650d57261
[]
no_license
freecores/i2s_to_wb
c914b6d5c19a1e4424853a24b832b9fa571fbf07
0063db8729c491a35e5aa79994ce7fa7ce573369
refs/heads/master
2020-04-01T23:01:54.879602
2011-03-29T01:37:12
2011-03-29T01:37:12
21,917,442
1
0
null
null
null
null
UTF-8
Scilab
false
false
554
sci
sin_8k.sci
// // get one cycle of 440khz data for rom; // Fs = 8192; f = 440; samples_per_wavelength = ceil( (1/f)/(1/Fs) ); N = 0 : samples_per_wavelength; x = 2 * %pi * (f / Fs) * N; y = sin(x); // plot(x, y); y_transpose = y'; wn = y_transpose / max(abs(y_transpose)); wn = wn * ((2^32) / 2); wn = round( wn ); u=file('open','sin_8k_rom.txt','unknown') //open the result file for i = 1:(samples_per_wavelength + 1), fprintf( u, '@%8.8x\n %8.8x\n\n', i, wn(i) ), end file('close',u) //close the result file
adb515b843c8fd8632d9e3fa5f3b37619419883e
449d555969bfd7befe906877abab098c6e63a0e8
/3116/CH18/EX18.3/Ex18_3.sce
bc8c690f9473acd3d25d31c291e1ca9fd34e13ec
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
645
sce
Ex18_3.sce
//page no 692 clc // Given that Ms_Fe=5.25*10^5; //Required saturation Magnetisation in A/m b_m=9.27*10^-24; //Bohr Magneton in ampere*m^2 a=0.839*10^-9; //a is edge length in m M=5*10^5; //From previous question result printf(" Design Example 18.1\n"); y=poly([0],'y') // Defining X nb=Ms_Fe*a^3/b_m; // 'x' represent fraction of Mn++ that have substituted Fe++ n=roots(8*[5*y+4*(1-y)]-nb); //5 is Bohr magnetons per Fe++ ion //4 is Bohr magnetons per Mn++ ion printf("\n Replacing %.1f%% of Fe++ with Mn++ would produce \n the required saturation magnetisation of %.2e A/m\n",n*100,Ms_Fe);
541b87dd4a0a1201c4274efea27a2d1a5e73a44e
449d555969bfd7befe906877abab098c6e63a0e8
/1658/CH22/EX22.17/Ex22_17.sce
c6ad951f2639e0c9ae8a335ceaf145bfdbc64a79
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
292
sce
Ex22_17.sce
clc; //e.g 22.17 vin=2*10**-3; gm=5500*10**-6; R1=1*10**6; R2=1*10**6; RS=5000; RL=2000; (1/gm); AV=RS/(RS+(1/gm)); disp(AV); Ri=(R1*R2)/(R1+R2); disp('Mohm',Ri*10**-6,"Ri="); Ro=(RS/gm)/(RS+1/gm); disp('ohm',Ro*1,"Ro="); Vo=(RL/(RL+Ro))*(AV*vin); disp('mV',Vo*10**3,"Vo=");
0b05901d83d111b8907eda66f25837a830cd17d3
449d555969bfd7befe906877abab098c6e63a0e8
/848/CH3/EX3.7/Example3_7.sce
1a34c568fd69411104ac769ca6f856b64c82fff0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
435
sce
Example3_7.sce
//clear// //Caption:Program to Find out the Material Dispersion //Example3.7 //page107 clear; clc; Lamda = 800e-09;//Wavelength in meter sigma_Lamda_LED = 40e-09;//spectral width in meters pulse_spread = 4.4e-12;//pulse spread in sec/meter mat_dispersion = pulse_spread/sigma_Lamda_LED disp(mat_dispersion,'material dispersion in seconds/square meter') //Result //material dispersion in seconds/square meter 0.00011
3e7f89fe7ece2e87b26bea181dbc499cabcbf829
449d555969bfd7befe906877abab098c6e63a0e8
/1808/CH7/EX7.18/Chapter7_Exampl18.sce
1f821f3d087a79e7ef2c4fd2418b57044c3819ce
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
1,003
sce
Chapter7_Exampl18.sce
clc clear //INPUT DATA V1=100;//volue in mm^3/min t1=6;//dry bulb temperature in Degree c t11=3;//dry bulb temperature in Degree c Rc=40;//Capacity of the coil in TR mw=40;//Amount of water vapour added in kg d.a./min pva=5.68;//saturation pressure p=760;//pressure in mm of Hg Ra=287.3;//gas constant cp=1.005;//specific pressure //CALCULATIONS pv1=(pva-((p-pva)*(t1-t11)*1.8)/(2800-(1.3*(1.8*t1+32))));//Saturation pressure in mm Hg v1=Ra*(273+t1)/((p-pv1)*133.5);//volume ma=V1/v1;//Amount of air added in kg d.a./min w1=0.622*(pv1/(p-pv1));//Specific humidity in kg w.v./kg d.a w3=w1+(mw/(ma*60));//Specific humidity in kg w.v./kg d.a h1=cp*t1+w1*(2500+1.88*t1);//Enthalpy of air per kg of dry air in kJ/kg d.a. h3=h1+33.4;//Enthalpy of air per kg of dry air in kJ/kg d.a. t3=h3-(w3*2500)/1.02149;//dry bulb temperature in Degree c //OUTPUT printf('(a)Dry bulb temperature is %3.2f Degree C \n (b)From the psychrometric chart wet bulb temperature is 17.8 Degree C ',t3)
751cb4933d77d48b81f1b9ccb9e2886d628f42d9
c7ae4be7c00d277ebf8f41b417dac91c03fea434
/optimization/gradient_descent_conjugate/optim_gfo.sce
940927965074964ee4f04b4727db7a243c81baab
[]
no_license
xsher/data_science
dfa829f2cbb68822f356afcf32dbd967b63675b8
bf4e619f361d27c635a2c99e903df6b25e071f90
refs/heads/master
2020-09-09T17:59:41.318865
2019-12-03T09:26:50
2019-12-03T09:26:50
221,519,239
0
0
null
null
null
null
UTF-8
Scilab
false
false
4,993
sce
optim_gfo.sce
// load the cost functions exec('/Users/sherly/Documents/EIT-UNS/uns/S2P1/optim_fonctions.sci', -1) function [u0, couts]=pasfixe(EPSG, kmax, rho0, u0, cost) if cost == "costR" then cost_fn = costR elseif cost == "cost1" then cost_fn = cost1 elseif cost == "cost2" then cost_fn = cost2 elseif cost == "cost3" then cost_fn = cost3 elseif cost == "cost4" then cost_fn = cost4 elseif cost == "costH" then cost_fn = costH end try for k = 1:kmax [j, g] = cost_fn(u0) couts(k) = j if (norm(g) < EPSG) then disp("Achieved convergence at iteration: ") disp(k-1) break; else u1 = u0 - rho0 * g; u0 = u1; end end catch disp("Invalid cost or gradient") disp(j) disp(g) disp("Unable to reach convergence") disp(k) end if k == kmax then disp("Did not achieve convergence at max iteration") end endfunction function [u0, couts]=pasoptimal(EPSG, kmax, rho0, u0, cost) if cost == "costR" then cost_fn = costR elseif cost == "cost1" then cost_fn = cost1 elseif cost == "cost2" then cost_fn = cost2 elseif cost == "costH" then cost_fn = costH end [Jk, Gk] = cost_fn(u0) uk = u0 - rho0 * Gk [Jk, Gk] = cost_fn(uk) for k = 1:kmax [j, g] = cost_fn(u0) couts(k) = j disp("got here") if (norm(g) < EPSG) then disp("Achieved convergence at iteration: ") disp(k-1) break; else disp(k) c = j b = -(norm(g))^2 uk = u0 - rho0 * g [Jk, Gk] = cost_fn(uk) a = (Jk - b*rho0 - c) / (rho0)^2 rho0 = -b/(2*a) u1 = u0 - rho0 * g; u0 = u1; end end if k == kmax then disp("Did not achieve convergence at max iteration") end endfunction function [u0, couts]=conjuguee(EPSG, kmax, u0, cost) if cost == "cost1" then cost_fn = cost1 elseif cost == "cost2" then cost_fn = cost2 elseif cost == "cost3" then cost_fn = cost3 elseif cost == "cost4" then cost_fn = cost4 end if cost == "cost1" then Amat = Av1 elseif cost == "cost2" then Amat = Av1 elseif cost == "cost3" then Amat = Av elseif cost == "cost4" then Amat = Bv end // set d0 = G0 [j0, g0] = cost_fn(u0) d0 = g0 couts = 0 for k = 1:kmax [jk, gk] = cost_fn(u0) couts(k) = jk if (norm(gk) < EPSG) then disp("Achieved convergence at iteration: ") disp(k-1) break; else // rhok = <gk, dk> / <Adk, dk> denominator = Amat(d0)' * d0; rhok = (gk' * d0) / denominator; u1 = u0 - rhok * d0; [j1, g1] = cost_fn(u1); betak = - (g1' * Amat(d0)) / (d0' * Amat(d0)); d1 = g1 + betak * d0; u0 = u1; d0 = d1; end end // catch // disp("Invalid cost or gradient") // disp(jk) // disp(gk) // disp("Unable to reach convergence") // disp(k) // disp(couts) // end if k == kmax then disp("Did not achieve convergence at max iteration") end endfunction function [u0, couts]=conjuguee_fletcher(EPSG, kmax, rho0, u0, cost, p) if cost == "cost1" then cost_fn = cost1 elseif cost == "cost2" then cost_fn = cost2 elseif cost == "cost3" then cost_fn = cost3 elseif cost == "cost4" then cost_fn = cost4 elseif cost == "costEps" then cost_fn = costEps end eps = 10^(-p) // set d0 = G0 [j0, g0] = cost_fn(u0, eps) d0 = g0 couts = 0 try for k = 1:kmax [jk, gk] = cost_fn(u0, eps) couts(k) = jk if (norm(gk) < EPSG) then disp("Achieved convergence at iteration: ") disp(k-1) break; else u1 = u0 - rho0 * d0; [j1, g1] = cost_fn(u1, eps); betak = (g1' * g1) / (gk' * gk); d1 = g1 + betak * d0; u0 = u1; d0 = d1; end end catch disp("Invalid cost or gradient") disp(jk) disp(gk) disp("Unable to reach convergence") disp(k) disp(couts) end if k == kmax then disp("Did not achieve convergence at max iteration") end endfunction function []=plotfn(coutsGF, coutsG0) plot(coutsGF, "-r"); plot(coutsGO, "-b"); xtitle ( "Curves of convergence of cost" , "Iterations" , "Cost" ); legend ( "Cost of GF" , "Cost of GO" ); endfunction
8b89cf002e78c57ba685ea40257345788092072e
449d555969bfd7befe906877abab098c6e63a0e8
/2780/CH10/EX10.5/Ex10_5.sce
0d5a6fe82d152d5e0fd82b579fc84fa4406a7c65
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
306
sce
Ex10_5.sce
clc //to calculate number of ampere turns l=0.5 //length in m mu=6.5*10^-3 //permeability of iron in henry/m A=2*10^-4 //area of cross-section in m^-4 R=l/(mu*A) //reluctance in A-turns/weber flux=4*10^-4 //in weber mmf=flux*R disp("the number of ampere turns is mmf="+string(mmf)+"ampere-turns")